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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium;
/**
* @coversNothing
*/
#[\PHPUnit\Framework\Attributes\CoversNothing]
class ExportTest 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`)'
. ');'
. 'INSERT INTO `test_table` (val) VALUES (2);'
);
$this->login();
}
/**
* Test for server level export
*
* @param string $plugin Export format
* @param array $expected Array of expected strings
*
* @dataProvider exportDataProvider
* @group large
*/
#[\PHPUnit\Framework\Attributes\Group('large-group')]
public function testServerExport(string $plugin, array $expected): void
{
$text = $this->doExport('server', $plugin);
foreach ($expected as $str) {
self::assertStringContainsString($str, $text);
}
}
/**
* Test for db level export
*
* @param string $plugin Export format
* @param array $expected Array of expected strings
*
* @dataProvider exportDataProvider
* @group large
*/
#[\PHPUnit\Framework\Attributes\Group('large-group')]
public function testDbExport(string $plugin, array $expected): void
{
$this->navigateDatabase($this->databaseName);
$text = $this->doExport('db', $plugin);
foreach ($expected as $str) {
self::assertStringContainsString($str, $text);
}
}
/**
* Test for table level export
*
* @param string $plugin Export format
* @param array $expected Array of expected strings
*
* @dataProvider exportDataProvider
* @group large
*/
#[\PHPUnit\Framework\Attributes\Group('large-group')]
public function testTableExport(string $plugin, array $expected): void
{
$this->dbQuery('INSERT INTO `' . $this->databaseName . '`.`test_table` (val) VALUES (3);');
$this->navigateTable('test_table');
$text = $this->doExport('table', $plugin);
foreach ($expected as $str) {
self::assertStringContainsString($str, $text);
}
}
/**
* Data provider for testServerExport
*/
public static function exportDataProvider(): array
{
return [
[
'CSV',
['"1","2"'],
],
[
'SQL',
[
'CREATE TABLE IF NOT EXISTS `test_table`',
'INSERT INTO `test_table` (`id`, `val`) VALUES',
'(1, 2)',
],
],
[
'JSON',
['{"id":"1","val":"2"}'],
],
];
}
/**
* Function that goes to the import page, uploads a file and submit form
*
* @param string $type level: server, db or import
* @param string $plugin format: csv, json, etc
*
* @return string export string
*/
private function doExport(string $type, string $plugin): string
{
$this->expandMore();
$this->waitForElement('partialLinkText', 'Export')->click();
$this->waitAjax();
$this->waitForElement('id', 'quick_or_custom');
$this->byCssSelector('label[for=radio_custom_export]')->click();
$this->selectByLabel($this->byId('plugins'), $plugin);
if ($type === 'server') {
$this->scrollIntoView('databases_and_tables', 200);
$this->byId('db_unselect_all')->click();
$this->byCssSelector('option[value="' . $this->databaseName . '"]')->click();
}
if ($type === 'table') {
$this->scrollIntoView('radio_allrows_0');
$this->byCssSelector('label[for=radio_allrows_0]')->click();
$this->scrollIntoView('limit_to');
$this->byName('limit_to')->clear();
$this->byName('limit_to')->sendKeys('1');
}
$this->scrollIntoView('radio_view_as_text');
$this->byCssSelector('label[for=radio_view_as_text]')->click();
if ($plugin === 'SQL') {
if ($type !== 'db') {
$this->scrollIntoView('radio_sql_structure_or_data_structure_and_data');
$this->byCssSelector('label[for=radio_sql_structure_or_data_structure_and_data]')->click();
}
$this->scrollIntoView('checkbox_sql_if_not_exists');
$ele = $this->byId('checkbox_sql_if_not_exists');
if (! $ele->isSelected()) {
$this->byCssSelector('label[for=checkbox_sql_if_not_exists]')->click();
}
}
$this->scrollToBottom();
$this->byId('buttonGo')->click();
$this->waitAjax();
return $this->waitForElement('id', 'textSQLDUMP')->getText();
}
}
|