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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\ConfigStorage\Relation;
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\Message;
use PhpMyAdmin\Normalization;
use PhpMyAdmin\Template;
use PhpMyAdmin\Transformations;
use PhpMyAdmin\Types;
use PhpMyAdmin\Url;
use stdClass;
use function __;
use function _pgettext;
use function json_encode;
/**
* @covers \PhpMyAdmin\Normalization
*/
class NormalizationTest extends AbstractTestCase
{
/** @var Normalization */
private $normalization;
/**
* prepares environment for tests
*/
protected function setUp(): void
{
parent::setUp();
$GLOBALS['cfg']['LimitChars'] = 50;
$GLOBALS['cfg']['ServerDefault'] = 'PMA_server';
$GLOBALS['cfg']['ShowHint'] = true;
$GLOBALS['cfg']['CharEditing'] = '';
$GLOBALS['cfg']['ActionLinksMode'] = 'icons';
$GLOBALS['db'] = 'PMA_db';
$GLOBALS['table'] = 'PMA_table';
$GLOBALS['server'] = 1;
$GLOBALS['cfg']['Server']['DisableIS'] = false;
$_POST['change_column'] = null;
//$_SESSION
//mock DBI
$dbi = $this->getMockBuilder(DatabaseInterface::class)
->disableOriginalConstructor()
->getMock();
$dbi->types = new Types($dbi);
$GLOBALS['dbi'] = $dbi;
// set expectations
$dbi->expects($this->any())
->method('selectDb')
->will($this->returnValue(true));
$dbi->expects($this->any())
->method('getColumns')
->will(
$this->returnValue(
[
'id' => ['Type' => 'integer'],
'col1' => ['Type' => 'varchar(100)'],
'col2' => ['Type' => 'DATETIME'],
]
)
);
$dbi->expects($this->any())
->method('getColumnNames')
->will($this->returnValue(['id', 'col1', 'col2']));
$map = [
[
'PMA_db',
'PMA_table1',
DatabaseInterface::CONNECT_USER,
[],
],
[
'PMA_db',
'PMA_table',
DatabaseInterface::CONNECT_USER,
[
[
'Key_name' => 'PRIMARY',
'Column_name' => 'id',
],
],
],
[
'PMA_db',
'PMA_table2',
DatabaseInterface::CONNECT_USER,
[
[
'Key_name' => 'PRIMARY',
'Column_name' => 'id',
],
[
'Key_name' => 'PRIMARY',
'Column_name' => 'col1',
],
],
],
];
$dbi->expects($this->any())
->method('getTableIndexes')
->will($this->returnValueMap($map));
$dbi->expects($this->any())
->method('tryQuery')
->will($this->returnValue(true));
$dbi->expects($this->any())
->method('fetchResult')
->will($this->returnValue([0]));
$this->normalization = new Normalization($dbi, new Relation($dbi), new Transformations(), new Template());
}
/**
* Test for getHtmlForColumnsList
*/
public function testGetHtmlForColumnsList(): void
{
$db = 'PMA_db';
$table = 'PMA_table';
$this->assertStringContainsString(
'<option value="id">id [ integer ]</option>',
$this->normalization->getHtmlForColumnsList($table, $db)
);
$this->assertEquals(
'<input type="checkbox" value="col1">col1 [ varchar(100) ]<br>',
$this->normalization->getHtmlForColumnsList($table, $db, 'String', 'checkbox')
);
}
/**
* Test for getHtmlForCreateNewColumn
*/
public function testGetHtmlForCreateNewColumn(): void
{
$GLOBALS['cfg']['BrowseMIME'] = true;
$GLOBALS['cfg']['MaxRows'] = 25;
$GLOBALS['col_priv'] = false;
$GLOBALS['cfg']['Server']['DisableIS'] = false;
$GLOBALS['dbi'] = $this->dbi;
$db = 'testdb';
$table = 'mytable';
$numFields = 1;
$normalization = new Normalization(
$this->dbi,
new Relation($this->dbi),
new Transformations(),
new Template()
);
$result = $normalization->getHtmlForCreateNewColumn($numFields, $db, $table);
$this->assertStringContainsString('<table id="table_columns"', $result);
}
/**
* Test for getHtmlFor1NFStep1
*/
public function testGetHtmlFor1NFStep1(): void
{
$db = 'PMA_db';
$table = 'PMA_table';
$normalizedTo = '1nf';
$result = $this->normalization->getHtmlFor1NFStep1($db, $table, $normalizedTo);
$this->assertStringContainsString(
"<h3 class='text-center'>"
. __('First step of normalization (1NF)') . '</h3>',
$result
);
$this->assertStringContainsString("<div id='mainContent'", $result);
$this->assertStringContainsString('<legend>' . __('Step 1.'), $result);
$this->assertStringContainsString('<h4', $result);
$this->assertStringContainsString('<p', $result);
$this->assertStringContainsString("<select id='selectNonAtomicCol'", $result);
$this->assertStringContainsString(
$this->normalization->getHtmlForColumnsList(
$db,
$table,
_pgettext('string types', 'String')
),
$result
);
}
/**
* Test for getHtmlContentsFor1NFStep2
*/
public function testGetHtmlContentsFor1NFStep2(): void
{
$db = 'PMA_db';
$table = 'PMA_table1';
$result = $this->normalization->getHtmlContentsFor1NFStep2($db, $table);
$this->assertIsArray($result);
$this->assertArrayHasKey('legendText', $result);
$this->assertArrayHasKey('headText', $result);
$this->assertArrayHasKey('subText', $result);
$this->assertArrayHasKey('hasPrimaryKey', $result);
$this->assertArrayHasKey('extra', $result);
$this->assertStringContainsString('<a href="#" id="createPrimaryKey">', $result['subText']);
$this->assertStringContainsString('<a href="#" id="addNewPrimary">', $result['extra']);
$this->assertEquals('0', $result['hasPrimaryKey']);
$this->assertStringContainsString(__('Step 1.') . 2, $result['legendText']);
$result1 = $this->normalization->getHtmlContentsFor1NFStep2($db, 'PMA_table');
$this->assertEquals('1', $result1['hasPrimaryKey']);
}
/**
* Test for getHtmlContentsFor1NFStep4
*/
public function testGetHtmlContentsFor1NFStep4(): void
{
$db = 'PMA_db';
$table = 'PMA_table';
$result = $this->normalization->getHtmlContentsFor1NFStep4($db, $table);
$this->assertIsArray($result);
$this->assertArrayHasKey('legendText', $result);
$this->assertArrayHasKey('headText', $result);
$this->assertArrayHasKey('subText', $result);
$this->assertArrayHasKey('extra', $result);
$this->assertStringContainsString(__('Step 1.') . 4, $result['legendText']);
$this->assertStringContainsString(
$this->normalization->getHtmlForColumnsList($db, $table, 'all', 'checkbox'),
$result['extra']
);
$this->assertStringContainsString(
'<input class="btn btn-secondary" type="submit" id="removeRedundant"',
$result['extra']
);
}
/**
* Test for getHtmlContentsFor1NFStep3
*/
public function testGetHtmlContentsFor1NFStep3(): void
{
$db = 'PMA_db';
$table = 'PMA_table';
$result = $this->normalization->getHtmlContentsFor1NFStep3($db, $table);
$this->assertIsArray($result);
$this->assertArrayHasKey('legendText', $result);
$this->assertArrayHasKey('headText', $result);
$this->assertArrayHasKey('subText', $result);
$this->assertArrayHasKey('extra', $result);
$this->assertArrayHasKey('primary_key', $result);
$this->assertStringContainsString(__('Step 1.') . 3, $result['legendText']);
$this->assertStringContainsString(
$this->normalization->getHtmlForColumnsList($db, $table, 'all', 'checkbox'),
$result['extra']
);
$this->assertStringContainsString(
'<input class="btn btn-secondary" type="submit" id="moveRepeatingGroup"',
$result['extra']
);
$this->assertEquals(json_encode(['id']), $result['primary_key']);
}
/**
* Test for getHtmlFor2NFstep1
*/
public function testGetHtmlFor2NFstep1(): void
{
$db = 'PMA_db';
$table = 'PMA_table';
$result = $this->normalization->getHtmlFor2NFstep1($db, $table);
$this->assertIsArray($result);
$this->assertArrayHasKey('legendText', $result);
$this->assertArrayHasKey('headText', $result);
$this->assertArrayHasKey('subText', $result);
$this->assertArrayHasKey('extra', $result);
$this->assertArrayHasKey('primary_key', $result);
$this->assertStringContainsString(__('Step 2.') . 1, $result['legendText']);
$this->assertEquals('id', $result['primary_key']);
$result1 = $this->normalization->getHtmlFor2NFstep1($db, 'PMA_table2');
$this->assertEquals('id, col1', $result1['primary_key']);
$this->assertStringContainsString('<a href="#" id="showPossiblePd"', $result1['headText']);
$this->assertStringContainsString('<input type="checkbox" name="pd" value="id"', $result1['extra']);
}
/**
* Test for getHtmlForNewTables2NF
*/
public function testGetHtmlForNewTables2NF(): void
{
$table = 'PMA_table';
$partialDependencies = ['col1' => ['col2']];
$result = $this->normalization->getHtmlForNewTables2NF($partialDependencies, $table);
$this->assertStringContainsString('<input type="text" name="col1"', $result);
}
/**
* Test for createNewTablesFor2NF
*/
public function testCreateNewTablesFor2NF(): void
{
$table = 'PMA_table';
$db = 'PMA_db';
$tablesName = new stdClass();
$tablesName->id = 'PMA_table';
$tablesName->col1 = 'PMA_table1';
$partialDependencies = ['id' => ['col2']];
$result = $this->normalization->createNewTablesFor2NF($partialDependencies, $tablesName, $table, $db);
$this->assertIsArray($result);
$this->assertArrayHasKey('legendText', $result);
$this->assertArrayHasKey('headText', $result);
$this->assertArrayHasKey('queryError', $result);
$partialDependencies = [
'id' => ['col2'],
'col1' => ['col2'],
];
$result1 = $this->normalization->createNewTablesFor2NF($partialDependencies, $tablesName, $table, $db);
$this->assertArrayHasKey('extra', $result1);
$this->assertEquals(__('End of step'), $result1['legendText']);
$this->assertEquals('', $result1['extra']);
}
/**
* Test for getHtmlForNewTables3NF
*/
public function testGetHtmlForNewTables3NF(): void
{
$tables = ['PMA_table' => ['col1']];
$db = 'PMA_db';
$dependencies = new stdClass();
$dependencies->col1 = ['col2'];
$result = $this->normalization->getHtmlForNewTables3NF($dependencies, $tables, $db);
$this->assertEquals(
[
'html' => '',
'success' => true,
'newTables' => [],
],
$result
);
$tables = [
'PMA_table' => [
'col1',
'PMA_table',
],
];
// phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps
$dependencies->PMA_table = [
'col4',
'col5',
];
$result1 = $this->normalization->getHtmlForNewTables3NF($dependencies, $tables, $db);
$this->assertIsArray($result1);
$this->assertStringContainsString('<input type="text" name="PMA_table"', $result1['html']);
$this->assertEquals(
[
'PMA_table' => [
'PMA_table' => [
'pk' => 'col1',
'nonpk' => 'col2',
],
'table2' => [
'pk' => 'id',
'nonpk' => 'col4, col5',
],
],
],
$result1['newTables']
);
}
/**
* Test for createNewTablesFor3NF
*/
public function testCreateNewTablesFor3NF(): void
{
$db = 'PMA_db';
$newTables = [
'PMA_table' => [
'PMA_table' => [
'pk' => 'id',
'nonpk' => 'col1, col2',
],
'table1' => [
'pk' => 'col2',
'nonpk' => 'col3, col4',
],
],
];
$result = $this->normalization->createNewTablesFor3NF($newTables, $db);
$this->assertIsArray($result);
$this->assertArrayHasKey('legendText', $result);
$this->assertArrayHasKey('headText', $result);
$this->assertArrayHasKey('queryError', $result);
$newTables1 = [];
$result1 = $this->normalization->createNewTablesFor3NF($newTables1, $db);
$this->assertArrayHasKey('queryError', $result1);
$this->assertEquals(__('End of step'), $result1['legendText']);
$this->assertFalse($result1['queryError']);
}
/**
* Test for moveRepeatingGroup
*/
public function testMoveRepeatingGroup(): void
{
$repeatingColumns = 'col1, col2';
$primaryColumns = 'id,col1';
$newTable = 'PMA_newTable';
$newColumn = 'PMA_newCol';
$table = 'PMA_table';
$db = 'PMA_db';
$result = $this->normalization->moveRepeatingGroup(
$repeatingColumns,
$primaryColumns,
$newTable,
$newColumn,
$table,
$db
);
$this->assertIsArray($result);
$this->assertArrayHasKey('queryError', $result);
$this->assertArrayHasKey('message', $result);
$this->assertInstanceOf(Message::class, $result['message']);
}
/**
* Test for getHtmlFor3NFstep1
*/
public function testGetHtmlFor3NFstep1(): void
{
$db = 'PMA_db';
$tables = ['PMA_table'];
$result = $this->normalization->getHtmlFor3NFstep1($db, $tables);
$this->assertIsArray($result);
$this->assertArrayHasKey('legendText', $result);
$this->assertArrayHasKey('headText', $result);
$this->assertArrayHasKey('subText', $result);
$this->assertArrayHasKey('extra', $result);
$this->assertStringContainsString(__('Step 3.') . 1, $result['legendText']);
$this->assertStringContainsString('<form', $result['extra']);
$this->assertStringContainsString('<input type="checkbox" name="pd" value="col1"', $result['extra']);
$result1 = $this->normalization->getHtmlFor3NFstep1($db, ['PMA_table2']);
$this->assertEquals('', $result1['subText']);
}
/**
* Test for getHtmlForNormalizeTable
*/
public function testgetHtmlForNormalizeTable(): void
{
$result = $this->normalization->getHtmlForNormalizeTable();
$this->assertStringContainsString(
'<form method="post" action="' . Url::getFromRoute('/normalization')
. '" name="normalize" id="normalizeTable"',
$result
);
$this->assertStringContainsString('<input type="hidden" name="step1" value="1">', $result);
$this->assertStringContainsString('type="radio" name="normalizeTo"', $result);
$this->assertStringContainsString('id="normalizeToRadio1" value="1nf" checked>', $result);
$this->assertStringContainsString('id="normalizeToRadio2" value="2nf">', $result);
$this->assertStringContainsString('id="normalizeToRadio3" value="3nf">', $result);
}
/**
* Test for findPartialDependencies
*/
public function testFindPartialDependencies(): void
{
$table = 'PMA_table2';
$db = 'PMA_db';
$result = $this->normalization->findPartialDependencies($table, $db);
$this->assertStringContainsString('<div class="dependencies_box"', $result);
$this->assertStringContainsString(__('No partial dependencies found!'), $result);
}
/**
* Test for getAllCombinationPartialKeys
*/
public function testGetAllCombinationPartialKeys(): void
{
$primaryKey = [
'id',
'col1',
'col2',
];
$result = $this->callFunction(
$this->normalization,
Normalization::class,
'getAllCombinationPartialKeys',
[$primaryKey]
);
$this->assertEquals(
[
'',
'id',
'col1',
'col1,id',
'col2',
'col2,id',
'col2,col1',
],
$result
);
}
}
|