| Server IP : 3.96.16.70 / Your IP : 216.73.216.15 Web Server : Apache System : Linux ip-172-31-26-103.ca-central-1.compute.internal 6.1.163-186.299.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Feb 24 16:35:42 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/prod1.wondermakr.com/phpmyadmin/test/selenium/ |
Upload File : |
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium;
/**
* @coversNothing
*/
class ImportTest extends TestBase
{
/**
* setUp function
*/
protected function setUp(): void
{
parent::setUp();
$this->login();
}
/**
* Test for server level import
*
* @group large
*/
public function testServerImport(): void
{
$this->doImport('server');
$this->dbQuery(
'SHOW DATABASES LIKE \'test_import%\'',
function (): void {
self::assertEquals('test_import1', $this->getCellByTableClass('table_results', 1, 1));
self::assertEquals('test_import2', $this->getCellByTableClass('table_results', 2, 1));
}
);
// clear db
$this->dbQuery('DROP DATABASE test_import1;DROP DATABASE test_import2;');
}
/**
* Test for db level import
*
* @group large
*/
public function testDbImport(): void
{
$this->dbQuery('CREATE DATABASE IF NOT EXISTS `' . $this->databaseName . '`');
$this->navigateDatabase($this->databaseName);
$this->doImport('db');
$this->dbQuery(
'USE `' . $this->databaseName . '`;'
. 'SHOW TABLES FROM `' . $this->databaseName . '`',
function (): void {
self::assertTrue($this->isElementPresent('className', 'table_results'));
self::assertEquals('test_table', $this->getCellByTableClass('table_results', 1, 1));
}
);
}
/**
* Test for table level import
*
* @group large
*/
public function testTableImport(): void
{
// setup the db
$this->dbQuery(
'CREATE DATABASE IF NOT EXISTS `' . $this->databaseName . '`;'
. 'USE `' . $this->databaseName . '`;'
. 'CREATE TABLE IF NOT EXISTS `test_table` (`val` int(11) NOT NULL);'
);
$this->navigateTable('test_table');
$this->doImport('table');
$this->dbQuery(
'SELECT * FROM `' . $this->databaseName . '`.test_table',
function (): void {
self::assertTrue($this->isElementPresent('className', 'table_results'));
self::assertEquals('8', $this->getCellByTableClass('table_results', 1, 1));
self::assertEquals('9', $this->getCellByTableClass('table_results', 2, 1));
}
);
}
/**
* Function that goes to the import page, uploads a file and submit form
*
* @param string $type level: server, db or import
*/
private function doImport(string $type): void
{
$this->waitForElement('partialLinkText', 'Import')->click();
$this->waitAjax();
$this->waitForElement('id', 'localFileTab')->click();
$this->waitForElement('id', 'input_import_file');
$this->selectByValue($this->byName('local_import_file'), $type . '_import.sql');
$this->scrollToBottom();
$this->waitUntilElementIsVisible('id', 'sql_options', 30);
$this->scrollToBottom();
$this->waitUntilElementIsVisible('id', 'buttonGo', 30);
$this->byId('buttonGo')->click();
$this->waitUntilElementIsVisible(
'xpath',
"//div[@class='alert alert-success' and contains(., 'Import has been successfully')]",
30
);
}
}