-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathNormalizationTest.php
More file actions
98 lines (88 loc) · 3.79 KB
/
NormalizationTest.php
File metadata and controls
98 lines (88 loc) · 3.79 KB
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
<?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
{
self::assertTrue($this->isElementPresent('cssSelector', 'fieldset'));
self::assertEquals(
'First step of normalization (1NF)',
$this->byCssSelector('label[for=normalizeToRadio1]')->getText()
);
self::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
{
self::assertEquals(
'First step of normalization (1NF)',
$this->byCssSelector('#page_content h3')->getText()
);
self::assertTrue($this->isElementPresent('cssSelector', '#mainContent h4'));
self::assertTrue($this->isElementPresent('cssSelector', '#mainContent #newCols'));
self::assertTrue($this->isElementPresent('cssSelector', '.tblFooters'));
self::assertTrue($this->isElementPresent('cssSelector', '#selectNonAtomicCol option[value=val2]'));
self::assertFalse($this->isElementPresent('cssSelector', '#selectNonAtomicCol option[value=val]'));
self::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();
self::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')]");
self::assertTrue($this->isElementPresent('cssSelector', '#mainContent #extra'));
self::assertTrue($this->isElementPresent('cssSelector', '#extra input[value=val2][type=checkbox]'));
self::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')]");
self::assertStringContainsString(
"The first step of normalization is complete for table 'test_table'.",
$this->byCssSelector('#mainContent h4')->getText()
);
}
}