1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium\Database;
use PhpMyAdmin\Tests\Selenium\TestBase;
/**
* @coversNothing
*/
#[\PHPUnit\Framework\Attributes\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->login();
$this->navigateDatabase($this->databaseName);
// Let the Database page load
$this->waitAjax();
$this->expandMore();
}
/**
* Test for truncating a table
*
* @group large
*/
#[\PHPUnit\Framework\Attributes\Group('large-group')]
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
*/
#[\PHPUnit\Framework\Attributes\Group('large-group')]
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'));
}
);
}
}
|