phpmyadmin/test/selenium/XssTest.php
Maurício Meneghini Fauth 1a14b3e4d3 Remove vim modelines
These settings are no longer required as they are guaranteed through
other coding standard tools.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2019-09-02 09:43:21 -03:00

51 lines
1.0 KiB
PHP

<?php
/**
* Selenium TestCase for SQL query window related tests
*
* @package PhpMyAdmin-test
* @subpackage Selenium
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium;
/**
* XssTest class
*
* @package PhpMyAdmin-test
* @subpackage Selenium
* @group selenium
*/
class XssTest extends TestBase
{
/**
* @return void
*/
protected function setUp(): void
{
parent::setUp();
$this->maximize();
$this->login();
}
/**
* Tests the SQL query tab with a null query
*
* @return void
*
* @group large
*/
public function testQueryTabWithNullValue()
{
if ($this->isSafari()) {
$this->markTestSkipped('Alerts not supported on Safari browser.');
}
$this->waitForElement('partialLinkText', "SQL")->click();
$this->waitAjax();
$this->waitForElement('id', "queryboxf");
$this->byId("button_submit_query")->click();
$this->assertEquals("Missing value in the form!", $this->alertText());
}
}