phpmyadmin/test/selenium/Database/StructureTest.php
William Desportes 8da964fa40
Move login to setUp() of parent::
Signed-off-by: William Desportes <williamdes@wdes.fr>
2026-02-24 10:26:12 +01:00

96 lines
2.7 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium\Database;
use PhpMyAdmin\Tests\Selenium\TestBase;
/**
* @coversNothing
*/
class StructureTest extends TestBase
{
/**
* Setup the browser environment to run the selenium test case
*/
protected function setUp(): void
{
parent::setUp();
$this->dbQuery(
'USE `' . $this->databaseName . '`;'
. 'CREATE TABLE `test_table` ('
. ' `id` int(11) NOT NULL AUTO_INCREMENT,'
. ' `val` int(11) NOT NULL,'
. ' PRIMARY KEY (`id`)'
. ');'
. 'CREATE TABLE `test_table2` ('
. ' `id` int(11) NOT NULL AUTO_INCREMENT,'
. ' `val` int(11) NOT NULL,'
. ' PRIMARY KEY (`id`)'
. ');'
. 'INSERT INTO `test_table` (val) VALUES (2);'
);
$this->navigateDatabase($this->databaseName);
// Let the Database page load
$this->waitAjax();
$this->expandMore();
}
/**
* Test for truncating a table
*
* @group large
*/
public function testTruncateTable(): void
{
$this->byXPath("(//a[contains(., 'Empty')])[1]")->click();
$this->waitForElement('cssSelector', 'button.submitOK')->click();
self::assertNotNull($this->waitForElement(
'xpath',
'//div[@class=\'alert alert-success\' and contains(., \'MySQL returned an empty result\')]'
));
$this->dbQuery(
'SELECT CONCAT("Count: ", COUNT(*)) as c FROM `' . $this->databaseName . '`.`test_table`',
function (): void {
self::assertTrue($this->isElementPresent('className', 'table_results'));
// [ ] | Edit | Copy | Delete | 1 | 5
self::assertEquals('Count: 0', $this->getCellByTableClass('table_results', 1, 1));
}
);
}
/**
* Tests for dropping multiple tables
*
* @group large
*/
public function testDropMultipleTables(): void
{
$this->byCssSelector("label[for='tablesForm_checkall']")->click();
$this->selectByLabel(
$this->byName('submit_mult'),
'Drop'
);
$this->waitForElement('id', 'buttonYes')
->click();
$this->waitForElement('xpath', "//*[contains(., 'No tables found in database')]");
$this->dbQuery(
'SHOW TABLES FROM `' . $this->databaseName . '`;',
function (): void {
self::assertTrue($this->isElementPresent('className', 'table_results'));
self::assertFalse($this->isElementPresent('cssSelector', '.table_results tbody tr'));
}
);
}
}