245 lines
7.2 KiB
PHP
245 lines
7.2 KiB
PHP
<?php
|
|
/**
|
|
* Tests for PhpMyAdmin\Database\Designer
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Database;
|
|
|
|
use PhpMyAdmin\Database\Designer;
|
|
use PhpMyAdmin\DatabaseInterface;
|
|
use PhpMyAdmin\Relation;
|
|
use PhpMyAdmin\Template;
|
|
use PhpMyAdmin\Tests\AbstractTestCase;
|
|
use ReflectionMethod;
|
|
|
|
/**
|
|
* Tests for PhpMyAdmin\Database\Designer
|
|
*/
|
|
class DesignerTest extends AbstractTestCase
|
|
{
|
|
/** @var Designer */
|
|
private $designer;
|
|
|
|
/**
|
|
* Setup for test cases
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$GLOBALS['server'] = 1;
|
|
$GLOBALS['cfg']['ServerDefault'] = 1;
|
|
$GLOBALS['cfg']['PDFPageSizes'] = [
|
|
'A3',
|
|
'A4',
|
|
];
|
|
$GLOBALS['cfg']['PDFDefaultPageSize'] = 'A4';
|
|
$GLOBALS['cfg']['Schema']['pdf_orientation'] = 'L';
|
|
$GLOBALS['cfg']['Schema']['pdf_paper'] = 'A4';
|
|
|
|
$_SESSION = [
|
|
'relation' => [
|
|
'1' => [
|
|
'PMA_VERSION' => PMA_VERSION,
|
|
'db' => 'pmadb',
|
|
'pdf_pages' => 'pdf_pages',
|
|
'pdfwork' => true,
|
|
],
|
|
],
|
|
' PMA_token ' => 'token',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Mocks database interaction for tests.
|
|
*
|
|
* @param string $db database name
|
|
*
|
|
* @return void
|
|
*/
|
|
private function _mockDatabaseInteraction($db)
|
|
{
|
|
$dbi = $this->getMockBuilder(DatabaseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$dbi->expects($this->once())
|
|
->method('tryQuery')
|
|
->with(
|
|
'SELECT `page_nr`, `page_descr` FROM `pmadb`.`pdf_pages`'
|
|
. " WHERE db_name = '" . $db . "' ORDER BY `page_descr`",
|
|
DatabaseInterface::CONNECT_CONTROL,
|
|
DatabaseInterface::QUERY_STORE,
|
|
false
|
|
)
|
|
->will($this->returnValue('dummyRS'));
|
|
|
|
$dbi->expects($this->exactly(3))
|
|
->method('fetchAssoc')
|
|
->willReturnOnConsecutiveCalls(
|
|
[
|
|
'page_nr' => '1',
|
|
'page_descr' => 'page1',
|
|
],
|
|
[
|
|
'page_nr' => '2',
|
|
'page_descr' => 'page2',
|
|
],
|
|
false
|
|
);
|
|
|
|
$dbi->expects($this->any())
|
|
->method('escapeString')
|
|
->will($this->returnArgument(0));
|
|
|
|
$GLOBALS['dbi'] = $dbi;
|
|
}
|
|
|
|
/**
|
|
* Test for getPageIdsAndNames()
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetPageIdsAndNames()
|
|
{
|
|
$db = 'db';
|
|
$this->_mockDatabaseInteraction($db);
|
|
|
|
$template = new Template();
|
|
$this->designer = new Designer($GLOBALS['dbi'], new Relation($GLOBALS['dbi'], $template), $template);
|
|
|
|
$method = new ReflectionMethod(Designer::class, 'getPageIdsAndNames');
|
|
$method->setAccessible(true);
|
|
$result = $method->invokeArgs($this->designer, [$db]);
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'1' => 'page1',
|
|
'2' => 'page2',
|
|
],
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for getHtmlForEditOrDeletePages()
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetHtmlForEditOrDeletePages()
|
|
{
|
|
$db = 'db';
|
|
$operation = 'edit';
|
|
$this->_mockDatabaseInteraction($db);
|
|
|
|
$template = new Template();
|
|
$this->designer = new Designer($GLOBALS['dbi'], new Relation($GLOBALS['dbi'], $template), $template);
|
|
|
|
$result = $this->designer->getHtmlForEditOrDeletePages($db, $operation);
|
|
$this->assertStringContainsString(
|
|
'<input type="hidden" name="operation" value="' . $operation . '">',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString(
|
|
'<select name="selected_page" id="selected_page">',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString('<option value="0">', $result);
|
|
$this->assertStringContainsString('<option value="1">', $result);
|
|
$this->assertStringContainsString('page1', $result);
|
|
$this->assertStringContainsString('<option value="2">', $result);
|
|
$this->assertStringContainsString('page2', $result);
|
|
}
|
|
|
|
/**
|
|
* Test for getHtmlForPageSaveAs()
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetHtmlForPageSaveAs()
|
|
{
|
|
$db = 'db';
|
|
$this->_mockDatabaseInteraction($db);
|
|
|
|
$template = new Template();
|
|
$this->designer = new Designer($GLOBALS['dbi'], new Relation($GLOBALS['dbi'], $template), $template);
|
|
|
|
$result = $this->designer->getHtmlForPageSaveAs($db);
|
|
$this->assertStringContainsString(
|
|
'<input type="hidden" name="operation" value="savePage">',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString(
|
|
'<select name="selected_page" id="selected_page">',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString('<option value="0">', $result);
|
|
$this->assertStringContainsString('<option value="1">', $result);
|
|
$this->assertStringContainsString('page1', $result);
|
|
$this->assertStringContainsString('<option value="2">', $result);
|
|
$this->assertStringContainsString('page2', $result);
|
|
|
|
$this->assertStringContainsString(
|
|
'<input type="radio" name="save_page" id="savePageSameRadio" value="same" checked>',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString(
|
|
'<input type="radio" name="save_page" id="savePageNewRadio" value="new">',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString(
|
|
'<input type="text" name="selected_value" id="selected_value">',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for getHtmlForSchemaExport()
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetHtmlForSchemaExport()
|
|
{
|
|
$db = 'db';
|
|
$page = 2;
|
|
|
|
$template = new Template();
|
|
$this->designer = new Designer($GLOBALS['dbi'], new Relation($GLOBALS['dbi'], $template), $template);
|
|
|
|
$result = $this->designer->getHtmlForSchemaExport($db, $page);
|
|
// export type
|
|
$this->assertStringContainsString(
|
|
'<select id="plugins" name="export_type">',
|
|
$result
|
|
);
|
|
|
|
// hidden field
|
|
$this->assertStringContainsString(
|
|
'<input type="hidden" name="page_number" value="' . $page . '">',
|
|
$result
|
|
);
|
|
|
|
// orientation
|
|
$this->assertStringContainsString(
|
|
'<select name="pdf_orientation" id="select_pdf_orientation">',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString(
|
|
'<option value="L" selected="selected">Landscape</option>',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString('<option value="P">Portrait</option>', $result);
|
|
|
|
// paper size
|
|
$this->assertStringContainsString(
|
|
'<select name="pdf_paper" id="select_pdf_paper">',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString('<option value="A3">A3</option>', $result);
|
|
$this->assertStringContainsString(
|
|
'<option value="A4" selected="selected">A4</option>',
|
|
$result
|
|
);
|
|
}
|
|
}
|