phpmyadmin/test/selenium/NormalizationTest.php
Maurício Meneghini Fauth f00d70cccb
Remove useless whitespaces
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-09-15 17:05:40 -03:00

148 lines
4.5 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium;
/**
* @coversNothing
*/
class NormalizationTest 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,'
. ' `val2` varchar(64) NOT NULL,'
. 'PRIMARY KEY(id)'
. ');'
);
$this->login();
$this->navigateTable('test_table');
$this->waitForElement('xpath', "(//a[contains(., 'Structure')])")->click();
$this->waitAjax();
$this->waitForElement('id', 'tablestructure');
$this->byPartialLinkText('Normalize')->click();
$this->waitForElement('id', 'normalizeTable');
}
/**
* Test for normalization to 1NF
*
* @group large
*/
public function testNormalizationTo1NF(): void
{
$this->assertTrue(
$this->isElementPresent('cssSelector', 'fieldset')
);
$this->assertEquals(
'First step of normalization (1NF)',
$this->byCssSelector('label[for=normalizeToRadio1]')->getText()
);
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'input[id=normalizeToRadio1][type=radio]:checked'
)
);
$this->byCssSelector('input[name=submit_normalize]')->click();
$this->waitForElement('id', 'mainContent');
$this->assert1NFSteps();
}
/**
* assertions in 1NF steps 1.1, 1.2, 1.3
*/
private function assert1NFSteps(): void
{
$this->assertEquals(
'First step of normalization (1NF)',
$this->byCssSelector('#page_content h3')->getText()
);
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'#mainContent h4'
)
);
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'#mainContent #newCols'
)
);
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'.tblFooters'
)
);
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'#selectNonAtomicCol option[value=val2]'
)
);
$this->assertFalse(
$this->isElementPresent(
'cssSelector',
'#selectNonAtomicCol option[value=val]'
)
);
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'#selectNonAtomicCol option[value=no_such_col]'
)
);
$this->selectByValue(
$this->byId('selectNonAtomicCol'),
'no_such_col'
);
$this->waitForElement('xpath', "//legend[contains(., 'Step 1.2 Have a primary key')]");
$text = $this->byCssSelector('#mainContent h4')->getText();
$this->assertStringContainsString('Primary key already exists.', $text);
$this->waitForElement('xpath', "//legend[contains(., 'Step 1.3 Move repeating groups')]");
$this->byCssSelector('input[value="No repeating group"]')->click();
$this->waitForElement('xpath', "//legend[contains(., 'Step 1.4 Remove redundant columns')]");
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'#mainContent #extra'
)
);
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'#extra input[value=val2][type=checkbox]'
)
);
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'#extra input[value=id][type=checkbox]'
)
);
$this->byCssSelector('#extra input[value=val][type=checkbox]')->click();
$this->byCssSelector('#removeRedundant')->click();
$this->waitForElement('xpath', "//legend[contains(., 'End of step')]");
$this->assertStringContainsString(
"The first step of normalization is complete for table 'test_table'.",
$this->byCssSelector('#mainContent h4')->getText()
);
}
}