phpmyadmin/test/selenium/NormalizationTest.php
Maurício Meneghini Fauth 206199105e Remove useless return type annotations
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-01-23 13:03:29 -03:00

170 lines
4.7 KiB
PHP

<?php
/**
* Selenium TestCase for normalization
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium;
/**
* PMA_SeleniumNormalizationTest class
*
* @group selenium
*/
class NormalizationTest extends TestBase
{
/**
* Setup the browser environment to run the selenium test case
*/
protected function setUp(): void
{
parent::setUp();
$this->dbQuery(
'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
*
* @return void
*
* @group large
*/
public function testNormalizationTo1NF()
{
$this->assertTrue(
$this->isElementPresent('cssSelector', 'fieldset')
);
$this->assertEquals(
'First step of normalization (1NF)',
$this->byCssSelector('label[for=normalizeTo_1nf]')->getText()
);
$this->assertTrue(
$this->isElementPresent(
'cssSelector',
'input[id=normalizeTo_1nf][type=radio]:checked'
)
);
$this->byCssSelector('input[name=submit_normalize]')->click();
$this->waitForElement('id', 'mainContent');
$this->_test1NFSteps();
}
/**
* assertions in 1NF steps 1.1, 1.2, 1.3
*
* @return void
*/
private function _test1NFSteps()
{
$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()
);
}
}