98 lines
2.5 KiB
PHP
98 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Plugins\Import;
|
|
|
|
use PhpMyAdmin\DatabaseInterface;
|
|
use PhpMyAdmin\File;
|
|
use PhpMyAdmin\Plugins\Import\ImportSql;
|
|
use PhpMyAdmin\Tests\AbstractTestCase;
|
|
|
|
class ImportSqlTest extends AbstractTestCase
|
|
{
|
|
/** @var ImportSql */
|
|
protected $object;
|
|
|
|
/**
|
|
* Sets up the fixture, for example, opens a network connection.
|
|
* This method is called before a test is executed.
|
|
*
|
|
* @access protected
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$GLOBALS['server'] = 0;
|
|
|
|
$this->object = new ImportSql();
|
|
|
|
//setting
|
|
$GLOBALS['finished'] = false;
|
|
$GLOBALS['read_limit'] = 100000000;
|
|
$GLOBALS['offset'] = 0;
|
|
$GLOBALS['cfg']['Server']['DisableIS'] = false;
|
|
|
|
$GLOBALS['import_file'] = 'test/test_data/pma_bookmark.sql';
|
|
$GLOBALS['import_text'] = 'ImportSql_Test';
|
|
$GLOBALS['compression'] = 'none';
|
|
$GLOBALS['read_multiply'] = 10;
|
|
$GLOBALS['import_type'] = 'Xml';
|
|
}
|
|
|
|
/**
|
|
* Tears down the fixture, for example, closes a network connection.
|
|
* This method is called after a test is executed.
|
|
*
|
|
* @access protected
|
|
*/
|
|
protected function tearDown(): void
|
|
{
|
|
parent::tearDown();
|
|
unset($this->object);
|
|
}
|
|
|
|
/**
|
|
* Test for doImport
|
|
*
|
|
* @group medium
|
|
*/
|
|
public function testDoImport(): void
|
|
{
|
|
//$sql_query_disabled will show the import SQL detail
|
|
global $sql_query, $sql_query_disabled;
|
|
$sql_query_disabled = false;
|
|
|
|
//Mock DBI
|
|
$dbi = $this->getMockBuilder(DatabaseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$GLOBALS['dbi'] = $dbi;
|
|
|
|
$importHandle = new File($GLOBALS['import_file']);
|
|
$importHandle->open();
|
|
|
|
//Test function called
|
|
$this->object->doImport($importHandle);
|
|
|
|
//asset that all sql are executed
|
|
$this->assertStringContainsString(
|
|
'SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"',
|
|
$sql_query
|
|
);
|
|
$this->assertStringContainsString(
|
|
'CREATE TABLE IF NOT EXISTS `pma_bookmark`',
|
|
$sql_query
|
|
);
|
|
$this->assertStringContainsString(
|
|
'INSERT INTO `pma_bookmark` (`id`, `dbase`, `user`, `label`, `query`) '
|
|
. 'VALUES',
|
|
$sql_query
|
|
);
|
|
|
|
$this->assertTrue(
|
|
$GLOBALS['finished']
|
|
);
|
|
}
|
|
}
|