Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/classes/Controllers/NormalizationControllerTest.php')
-rw-r--r--test/classes/Controllers/NormalizationControllerTest.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/classes/Controllers/NormalizationControllerTest.php b/test/classes/Controllers/NormalizationControllerTest.php
index e608c822dc..e884b255f7 100644
--- a/test/classes/Controllers/NormalizationControllerTest.php
+++ b/test/classes/Controllers/NormalizationControllerTest.php
@@ -16,7 +16,6 @@ use PhpMyAdmin\Tests\Stubs\ResponseRenderer;
use PhpMyAdmin\Transformations;
use function in_array;
-use function json_encode;
/**
* @covers \PhpMyAdmin\Controllers\NormalizationController
@@ -46,44 +45,6 @@ class NormalizationControllerTest extends AbstractTestCase
$GLOBALS['table'] = 'test_tbl';
}
- public function testCreateNewTables3NF(): void
- {
- $_POST['createNewTables3NF'] = 1;
- $_POST['newTables'] = json_encode([
- 'test_tbl' => [
- 'event' => [
- 'pk' => 'eventID',
- 'nonpk' => 'Start_time, DateOfEvent, NumberOfGuests, NameOfVenue, LocationOfVenue',
- ],
- 'table2' => [
- 'pk' => 'Start_time',
- 'nonpk' => 'TypeOfEvent, period',
- ],
- ],
- ]);
-
- $GLOBALS['goto'] = 'index.php?route=/sql';
- $GLOBALS['containerBuilder']->setParameter('db', $GLOBALS['db']);
- $GLOBALS['containerBuilder']->setParameter('table', $GLOBALS['table']);
- /** @var NormalizationController $normalizationController */
- $normalizationController = $GLOBALS['containerBuilder']->get(NormalizationController::class);
- $this->dummyDbi->addSelectDb('my_db');
- $normalizationController($this->createStub(ServerRequest::class));
- $this->dummyDbi->assertAllSelectsConsumed();
-
- $this->assertResponseWasSuccessfull();
-
- $this->assertSame(
- [
- 'legendText' => 'End of step',
- 'headText' => '<h3>The third step of normalization is complete.</h3>',
- 'queryError' => false,
- 'extra' => '',
- ],
- $this->getResponseJsonResult()
- );
- }
-
public function testNormalization(): void
{
$GLOBALS['db'] = 'test_db';