phpmyadmin/tests/selenium/XssTest.php
Maurício Meneghini Fauth 1d1c55e250
Move test directory to tests
- Related to #18512

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-11-30 10:47:42 -03:00

43 lines
981 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium;
use PHPUnit\Framework\Attributes\CoversNothing;
use PHPUnit\Framework\Attributes\Group;
#[CoversNothing]
class XssTest extends TestBase
{
/**
* Create a test database for this test class
*/
protected static bool $createDatabase = false;
protected function setUp(): void
{
parent::setUp();
$this->login();
}
/**
* Tests the SQL query tab with a null query
*/
#[Group('large')]
public function testQueryTabWithNullValue(): void
{
if ($this->isSafari()) {
$this->markTestSkipped('Alerts not supported on Safari browser.');
}
$this->waitForElement('partialLinkText', 'SQL')->click();
$this->waitAjax();
$this->waitForElement('id', 'querybox');
$this->byId('button_submit_query')->click();
$this->assertEquals('Missing value in the form!', $this->alertText());
}
}