681 lines
19 KiB
PHP
681 lines
19 KiB
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* tests for central_columns.lib.php
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
|
|
/*
|
|
* Include to test.
|
|
*/
|
|
use PMA\libraries\Theme;
|
|
use PMA\libraries\TypesMySQL;
|
|
|
|
$GLOBALS['server'] = 1;
|
|
|
|
require_once 'libraries/database_interface.inc.php';
|
|
|
|
require_once 'libraries/relation.lib.php';
|
|
|
|
require_once 'libraries/url_generating.lib.php';
|
|
|
|
|
|
require_once 'libraries/mysql_charsets.inc.php';
|
|
require_once 'libraries/central_columns.lib.php';
|
|
|
|
/**
|
|
* tests for central_columns.lib.php
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase
|
|
{
|
|
private $_columnData = array(
|
|
array(
|
|
'col_name' => "id", "col_type" => 'integer',
|
|
'col_length' => 0, 'col_isNull' => 0,
|
|
'col_extra' => 'UNSIGNED,auto_increment',
|
|
'col_default' => 1, 'col_collation' => ''
|
|
),
|
|
array('col_name' => "col1", 'col_type' => 'varchar',
|
|
'col_length' => 100, 'col_isNull' => 1, 'col_extra' => 'BINARY',
|
|
'col_default' => 1, 'col_collation' => ''
|
|
),
|
|
array(
|
|
'col_name' => "col2", 'col_type' => 'DATETIME',
|
|
'col_length' => 0, 'col_isNull' => 1,
|
|
'col_extra' => 'on update CURRENT_TIMESTAMP',
|
|
'col_default' => 'CURRENT_TIMESTAMP', 'col_collation' => ''
|
|
)
|
|
);
|
|
|
|
private $_modifiedColumnData = array(
|
|
array(
|
|
'col_name' => "id", "col_type" => 'integer',
|
|
'col_length' => 0, 'col_isNull' => 0, 'col_extra' => 'auto_increment',
|
|
'col_default' => 1, 'col_collation' => '', 'col_attribute' => 'UNSIGNED'
|
|
),
|
|
array('col_name' => "col1", 'col_type' => 'varchar',
|
|
'col_length' => 100, 'col_isNull' => 1, 'col_extra' => '',
|
|
'col_default' => 1, 'col_collation' => '', 'col_attribute' => 'BINARY'
|
|
),
|
|
array(
|
|
'col_name' => "col2", 'col_type' => 'DATETIME',
|
|
'col_length' => 0, 'col_isNull' => 1, 'col_extra' => '',
|
|
'col_default' => 'CURRENT_TIMESTAMP', 'col_collation' => '',
|
|
'col_attribute' => 'on update CURRENT_TIMESTAMP'
|
|
)
|
|
);
|
|
|
|
/**
|
|
* prepares environment for tests
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setUp()
|
|
{
|
|
$GLOBALS['PMA_Types'] = new TypesMySQL();
|
|
$GLOBALS['cfg']['Server']['user'] = 'pma_user';
|
|
$GLOBALS['cfg']['Server']['DisableIS'] = true;
|
|
$GLOBALS['cfg']['MaxRows'] = 10;
|
|
$GLOBALS['cfg']['ServerDefault'] = "PMA_server";
|
|
$GLOBALS['cfg']['ActionLinksMode'] = 'icons';
|
|
$GLOBALS['pmaThemeImage'] = 'image';
|
|
$GLOBALS['cfg']['CharEditing'] = '';
|
|
$GLOBALS['cfg']['LimitChars'] = 50;
|
|
$GLOBALS['db'] = 'PMA_db';
|
|
$GLOBALS['table'] = 'PMA_table';
|
|
|
|
//$_SESSION
|
|
$GLOBALS['server'] = 1;
|
|
$_SESSION['PMA_Theme'] = Theme::load('./themes/pmahomme');
|
|
$_SESSION['PMA_Theme'] = new Theme();
|
|
$_SESSION['relation'][1] = array(
|
|
'PMA_VERSION' => PMA_VERSION,
|
|
'centralcolumnswork' => true,
|
|
'relwork' => 1,
|
|
'db' => 'phpmyadmin',
|
|
'relation' => 'relation',
|
|
'central_columns' => 'pma_central_columns'
|
|
);
|
|
|
|
// mock DBI
|
|
$dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$GLOBALS['dbi'] = $dbi;
|
|
|
|
// set some common expectations
|
|
$dbi->expects($this->any())
|
|
->method('selectDb')
|
|
->will($this->returnValue(true));
|
|
$dbi->expects($this->any())
|
|
->method('getColumns')
|
|
->will(
|
|
$this->returnValue(
|
|
array(
|
|
"id"=>array("Type"=>"integer", "Null"=>"NO"),
|
|
"col1"=>array("Type"=>'varchar(100)', "Null"=>"YES"),
|
|
"col2"=>array("Type"=>'DATETIME', "Null"=>"NO")
|
|
)
|
|
)
|
|
);
|
|
$dbi->expects($this->any())
|
|
->method('getColumnNames')
|
|
->will($this->returnValue(array("id", "col1", "col2")));
|
|
$dbi->expects($this->any())
|
|
->method('tryQuery')
|
|
->will($this->returnValue(true));
|
|
$dbi->expects($this->any())
|
|
->method('getTables')
|
|
->will(
|
|
$this->returnValue(array("PMA_table", "PMA_table1", "PMA_table2"))
|
|
);
|
|
$dbi->expects($this->any())->method('escapeString')
|
|
->will($this->returnArgument(0));
|
|
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_centralColumnsGetParams
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMACentralColumnsGetParams()
|
|
{
|
|
$this->assertSame(
|
|
array(
|
|
'user' => 'pma_user',
|
|
'db' => 'phpmyadmin',
|
|
'table' => 'pma_central_columns'
|
|
),
|
|
PMA_centralColumnsGetParams()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getColumnsList
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetColumnsList()
|
|
{
|
|
$GLOBALS['dbi']->expects($this->exactly(2))
|
|
->method('fetchResult')
|
|
->willReturnOnConsecutiveCalls(
|
|
$this->_columnData,
|
|
array_slice($this->_columnData, 1, 2)
|
|
);
|
|
|
|
$this->assertEquals(
|
|
$this->_modifiedColumnData,
|
|
PMA_getColumnsList('phpmyadmin')
|
|
);
|
|
$this->assertEquals(
|
|
array_slice($this->_modifiedColumnData, 1, 2),
|
|
PMA_getColumnsList('phpmyadmin', 1, 2)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getCentralColumnsCount
|
|
*
|
|
* @return void
|
|
*/
|
|
function testPMAGetCentralColumnsCount()
|
|
{
|
|
$GLOBALS['dbi']->expects($this->once())
|
|
->method('fetchResult')
|
|
->with(
|
|
"SELECT count(db_name) FROM `pma_central_columns` "
|
|
. "WHERE db_name = 'phpmyadmin';",
|
|
null, null, $GLOBALS['controllink']
|
|
)
|
|
->will(
|
|
$this->returnValue(array(3))
|
|
);
|
|
|
|
$this->assertEquals(
|
|
3,
|
|
PMA_getCentralColumnsCount('phpmyadmin')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_syncUniqueColumns
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMASyncUniqueColumns()
|
|
{
|
|
$_REQUEST['db'] = 'PMA_db';
|
|
$_REQUEST['table'] = 'PMA_table';
|
|
|
|
$this->assertTrue(
|
|
PMA_syncUniqueColumns(array('PMA_table'))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_deleteColumnsFromList
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMADeleteColumnsFromList()
|
|
{
|
|
$_REQUEST['db'] = 'PMA_db';
|
|
$_REQUEST['table'] = 'PMA_table';
|
|
|
|
// when column exists in the central column list
|
|
$GLOBALS['dbi']->expects($this->at(4))
|
|
->method('fetchResult')
|
|
->with(
|
|
"SELECT col_name FROM `pma_central_columns` "
|
|
. "WHERE db_name = 'PMA_db' AND col_name IN ('col1');",
|
|
null, null, $GLOBALS['controllink']
|
|
)
|
|
->will(
|
|
$this->returnValue(array('col1'))
|
|
);
|
|
|
|
$GLOBALS['dbi']->expects($this->at(7))
|
|
->method('tryQuery')
|
|
->with(
|
|
"DELETE FROM `pma_central_columns` "
|
|
. "WHERE db_name = 'PMA_db' AND col_name IN ('col1');",
|
|
$GLOBALS['controllink']
|
|
)
|
|
->will(
|
|
$this->returnValue(array('col1'))
|
|
);
|
|
|
|
$this->assertTrue(
|
|
PMA_deleteColumnsFromList(array("col1"), false)
|
|
);
|
|
|
|
// when column does not exist in the central column list
|
|
$this->assertInstanceOf(
|
|
'PMA\libraries\Message', PMA_deleteColumnsFromList(array('column1'), false)
|
|
);
|
|
|
|
$this->assertInstanceOf(
|
|
'PMA\libraries\Message', PMA_deleteColumnsFromList(array('PMA_table'))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_makeConsistentWithList
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAMakeConsistentWithList()
|
|
{
|
|
$GLOBALS['dbi']->expects($this->any())
|
|
->method('fetchResult')
|
|
->will(
|
|
$this->returnValue($this->_columnData)
|
|
);
|
|
$GLOBALS['dbi']->expects($this->any())
|
|
->method('fetchValue')
|
|
->will(
|
|
$this->returnValue('PMA_table=CREATE table `PMA_table` (id integer)')
|
|
);
|
|
$this->assertTrue(
|
|
PMA_makeConsistentWithList("phpmyadmin", array('PMA_table'))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getCentralColumnsFromTable
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetCentralColumnsFromTable()
|
|
{
|
|
$db = 'PMA_db';
|
|
$table = 'PMA_table';
|
|
|
|
$GLOBALS['dbi']->expects($this->once())
|
|
->method('fetchResult')
|
|
->with(
|
|
"SELECT col_name FROM `pma_central_columns` "
|
|
. "WHERE db_name = 'PMA_db' AND col_name IN ('id','col1','col2');",
|
|
null, null, $GLOBALS['controllink']
|
|
)
|
|
->will(
|
|
$this->returnValue(array('id','col1'))
|
|
);
|
|
$this->assertEquals(
|
|
array("id", "col1"),
|
|
PMA_getCentralColumnsFromTable($db, $table)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getCentralColumnsFromTable with $allFields = true
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetCentralColumnsFromTableWithAllFields()
|
|
{
|
|
$db = 'PMA_db';
|
|
$table = 'PMA_table';
|
|
|
|
$GLOBALS['dbi']->expects($this->once())
|
|
->method('fetchResult')
|
|
->with(
|
|
"SELECT * FROM `pma_central_columns` "
|
|
. "WHERE db_name = 'PMA_db' AND col_name IN ('id','col1','col2');",
|
|
null, null, $GLOBALS['controllink']
|
|
)
|
|
->will(
|
|
$this->returnValue(array_slice($this->_columnData, 0, 2))
|
|
);
|
|
$this->assertEquals(
|
|
array_slice($this->_modifiedColumnData, 0, 2),
|
|
PMA_getCentralColumnsFromTable($db, $table, true)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_updateOneColumn
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAUpdateOneColumn()
|
|
{
|
|
$this->assertTrue(
|
|
PMA_updateOneColumn(
|
|
"phpmyadmin", "", "", "", "", "", "", "", "", ""
|
|
)
|
|
);
|
|
$this->assertTrue(
|
|
PMA_updateOneColumn(
|
|
"phpmyadmin", "col1", "", "", "", "", "", "", "", ""
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_updateMultipleColumn
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAUpdateMultipleColumn()
|
|
{
|
|
$_POST['db'] = 'phpmyadmin';
|
|
$_POST['orig_col_name'] = array("col1","col2");
|
|
$_POST['field_name'] = array("col1","col2");
|
|
$_POST['field_default_type'] = array("","");
|
|
$_POST['col_extra'] = array("","");
|
|
$_POST['field_length'] = array("","");
|
|
$_POST['field_attribute'] = array("","");
|
|
$_POST['field_type'] = array("","");
|
|
$_POST['field_collation'] = array("","");
|
|
$this->assertTrue(
|
|
PMA_updateMultipleColumn()
|
|
);
|
|
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getHTMLforEditingPage
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetHTMLforEditingPage()
|
|
{
|
|
$GLOBALS['dbi']->expects($this->any())
|
|
->method('fetchResult')
|
|
->with(
|
|
"SELECT * FROM `pma_central_columns` "
|
|
. "WHERE db_name = 'phpmyadmin' AND col_name IN ('col1','col2');",
|
|
null, null, $GLOBALS['controllink']
|
|
)
|
|
->will(
|
|
$this->returnValue($this->_columnData)
|
|
);
|
|
$result = PMA_getHTMLforEditingPage(
|
|
array("col1", "col2"), 'phpmyadmin'
|
|
);
|
|
$this->assertContains(
|
|
'<form',
|
|
$result
|
|
);
|
|
$header_cells = array(
|
|
__('Name'), __('Type'), __('Length/Values'), __('Default'),
|
|
__('Collation'), __('Attributes'), __('Null'), __('A_I')
|
|
);
|
|
$this->assertContains(
|
|
PMA_getCentralColumnsEditTableHeader($header_cells), $result
|
|
);
|
|
$list_detail_cols = PMA_findExistingColNames(
|
|
'phpmyadmin', "'col1','col2'", true
|
|
);
|
|
$this->assertContains(
|
|
PMA_getHTMLforCentralColumnsEditTableRow(
|
|
$list_detail_cols[0], false, 0
|
|
), $result
|
|
);
|
|
$this->assertContains(
|
|
PMA_getCentralColumnsEditTableFooter(), $result
|
|
);
|
|
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getHTMLforTableNavigation
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetHTMLforTableNavigation()
|
|
{
|
|
$result = PMA_getHTMLforTableNavigation(0, 0, 'phpmyadmin');
|
|
$this->assertContains(
|
|
'<table',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
__('Search this table'),
|
|
$result
|
|
);
|
|
$result_1 = PMA_getHTMLforTableNavigation(25, 10, 'phpmyadmin');
|
|
$this->assertContains(
|
|
'<form action="db_central_columns.php" method="post">'
|
|
. PMA_URL_getHiddenInputs(
|
|
'phpmyadmin'
|
|
),
|
|
$result_1
|
|
);
|
|
$this->assertContains(
|
|
'<input type="submit" name="navig"'
|
|
. ' class="ajax" '
|
|
. 'value="<" />',
|
|
$result_1
|
|
);
|
|
$this->assertContains(
|
|
PMA\libraries\Util::pageselector(
|
|
'pos', 10, 2, 3
|
|
),
|
|
$result_1
|
|
);
|
|
$this->assertContains(
|
|
'<input type="submit" name="navig"'
|
|
. ' class="ajax" '
|
|
. 'value=">" />',
|
|
$result_1
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getCentralColumnsTableHeader
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetCentralColumnsTableHeader()
|
|
{
|
|
$this->assertContains(
|
|
'<thead',
|
|
PMA_getCentralColumnsTableHeader(
|
|
'column_heading', __('Click to sort'), 2
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getCentralColumnsListRaw
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetCentralColumnsListRaw()
|
|
{
|
|
$GLOBALS['dbi']->expects($this->once())
|
|
->method('fetchResult')
|
|
->with(
|
|
"SELECT * FROM `pma_central_columns` "
|
|
. "WHERE db_name = 'phpmyadmin';",
|
|
null, null, $GLOBALS['controllink']
|
|
)
|
|
->will(
|
|
$this->returnValue($this->_columnData)
|
|
);
|
|
$this->assertEquals(
|
|
json_encode($this->_modifiedColumnData),
|
|
PMA_getCentralColumnsListRaw('phpmyadmin', '')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getCentralColumnsListRaw with a table name
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetCentralColumnsListRawWithTable()
|
|
{
|
|
$GLOBALS['dbi']->expects($this->once())
|
|
->method('fetchResult')
|
|
->with(
|
|
"SELECT * FROM `pma_central_columns` "
|
|
. "WHERE db_name = 'phpmyadmin' AND col_name "
|
|
. "NOT IN ('id','col1','col2');",
|
|
null, null, $GLOBALS['controllink']
|
|
)
|
|
->will(
|
|
$this->returnValue($this->_columnData)
|
|
);
|
|
$this->assertEquals(
|
|
json_encode($this->_modifiedColumnData),
|
|
PMA_getCentralColumnsListRaw('phpmyadmin', 'table1')
|
|
);
|
|
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getHTMLforAddNewColumn
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetHTMLforAddNewColumn()
|
|
{
|
|
$result = PMA_getHTMLforAddNewColumn('phpmyadmin');
|
|
$this->assertContains(
|
|
'<form',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'<table',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
__('Add new column'),
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
PMA_URL_getHiddenInputs('phpmyadmin'),
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_configErrorMessage
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAConfigErrorMessage()
|
|
{
|
|
$this->assertInstanceOf(
|
|
'PMA\libraries\Message',
|
|
PMA_configErrorMessage()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_findExistingColNames
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAFindExistingColNames()
|
|
{
|
|
$GLOBALS['dbi']->expects($this->once())
|
|
->method('fetchResult')
|
|
->with(
|
|
"SELECT * FROM `pma_central_columns` WHERE db_name = 'phpmyadmin'"
|
|
. " AND col_name IN ('col1');",
|
|
null, null, $GLOBALS['controllink']
|
|
)
|
|
->will(
|
|
$this->returnValue(array_slice($this->_columnData, 1, 1))
|
|
);
|
|
$this->assertEquals(
|
|
array_slice($this->_modifiedColumnData, 1, 1),
|
|
PMA_findExistingColNames('phpmyadmin', "'col1'", true)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getHTMLforTableDropdown
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetHTMLforTableDropdown()
|
|
{
|
|
$db = 'PMA_db';
|
|
$result = PMA_getHTMLforTableDropdown($db);
|
|
$this->assertContains(
|
|
'<select name="table-select" id="table-select"',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'<option value="PMA_table"',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getHTMLforColumnDropdown
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetHTMLforColumnDropdown()
|
|
{
|
|
$db = 'PMA_db';
|
|
$selected_tbl = 'PMA_table';
|
|
$result = PMA_getHTMLforColumnDropdown($db, $selected_tbl);
|
|
$this->assertEquals(
|
|
'<option value="id">id</option><option value="col1">col1</option>'
|
|
. '<option value="col2">col2</option>',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getHTMLforAddCentralColumn
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetHTMLforAddCentralColumn()
|
|
{
|
|
$result = PMA_getHTMLforAddCentralColumn(20, 0, 'phpmyadmin');
|
|
$this->assertContains(
|
|
'<table',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'<form',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
PMA_URL_getHiddenInputs('phpmyadmin')
|
|
. '<input type="hidden" name="add_column" value="add">'
|
|
. '<input type="hidden" name="pos" value="0" />'
|
|
. '<input type="hidden" name="total_rows" value="20"/>',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for PMA_getCentralColumnsTableFooter
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPMAGetCentralColumnsTableFooter()
|
|
{
|
|
$pmaThemeImage = "pmaThemeImage";
|
|
$text_dir = "text_dir";
|
|
if (!defined("PMA_USR_BROWSER_AGENT")) {
|
|
define("PMA_USR_BROWSER_AGENT", "other");
|
|
}
|
|
$result = PMA_getCentralColumnsTableFooter($pmaThemeImage, $text_dir);
|
|
$this->assertContains(
|
|
'<input type="checkbox" id="tableslistcontainer_checkall" class="checkall_box"',
|
|
$result
|
|
);
|
|
$this->assertContains("With selected:", $result);
|
|
$this->assertContains(
|
|
'<button class="mult_submit change_central_columns"',
|
|
$result
|
|
);
|
|
}
|
|
}
|