Backports #18907 to QA_5_2. This makes merging QA_5_2 into master easier. Changes done using Rector. - #18907 Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
91 lines
2.6 KiB
PHP
91 lines
2.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Selenium;
|
|
|
|
/**
|
|
* @coversNothing
|
|
*/
|
|
class CreateDropDatabaseTest extends TestBase
|
|
{
|
|
/**
|
|
* Setup the browser environment to run the selenium test case
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
/* TODO: For now this tests needs superuser for deleting database */
|
|
$this->skipIfNotSuperUser();
|
|
$this->login();
|
|
}
|
|
|
|
/**
|
|
* Creates a database and drops it
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testCreateDropDatabase(): void
|
|
{
|
|
$this->dbQuery('DROP DATABASE IF EXISTS `' . $this->databaseName . '`;');
|
|
|
|
$this->waitForElement('partialLinkText', 'Databases')->click();
|
|
$this->waitAjax();
|
|
|
|
$element = $this->waitForElement('id', 'text_create_db');
|
|
$element->clear();
|
|
$element->sendKeys($this->databaseName);
|
|
|
|
$this->byId('buttonGo')->click();
|
|
|
|
$this->waitForElement('linkText', 'Database: ' . $this->databaseName);
|
|
|
|
$this->dbQuery(
|
|
'SHOW DATABASES LIKE \'' . $this->databaseName . '\';',
|
|
function (): void {
|
|
self::assertTrue($this->isElementPresent('className', 'table_results'));
|
|
self::assertEquals($this->databaseName, $this->getCellByTableClass('table_results', 1, 1));
|
|
}
|
|
);
|
|
|
|
$this->dropDatabase();
|
|
}
|
|
|
|
/**
|
|
* Drops a database, called after testCreateDropDatabase
|
|
*/
|
|
private function dropDatabase(): void
|
|
{
|
|
$this->gotoHomepage();
|
|
|
|
$this->byPartialLinkText('Databases')->click();
|
|
$this->waitAjax();
|
|
|
|
$this->scrollToBottom();
|
|
|
|
$dbElement = $this->byCssSelector("input[name='selected_dbs[]'][value='" . $this->databaseName . "']");
|
|
$this->scrollToElement($dbElement, 0, 20);
|
|
$dbElement->click();
|
|
|
|
$multSubmit = $this->byCssSelector('#bulkActionDropButton');
|
|
$this->scrollToElement($multSubmit);
|
|
$multSubmit->click();
|
|
$this->byCssSelector('#dropDatabaseModalDropButton')->click();
|
|
|
|
$this->waitForElementNotPresent(
|
|
'cssSelector',
|
|
"input[name='selected_dbs[]'][value='" . $this->databaseName . "']"
|
|
);
|
|
|
|
$this->waitForElement('cssSelector', 'span.ajax_notification .alert-success');
|
|
|
|
$this->dbQuery(
|
|
'SHOW DATABASES LIKE \'' . $this->databaseName . '\';',
|
|
function (): void {
|
|
self::assertTrue($this->isElementPresent('className', 'table_results'));
|
|
self::assertFalse($this->isElementPresent('cssSelector', '.table_results tbody tr'));
|
|
}
|
|
);
|
|
}
|
|
}
|