Set namespace on DbQbe. Set namespace to 'DbSearch'. Split Advisor.class.php file. Change Advisor namespace. Rename DbQbe class and file. Set namespace on DisplayResults. Set namespace on Error. Use namespace for ErrorHandler. Add class autoloader. Change ErrorHandler filename. Remove some require. Update Config namespace path. Update PMA_Util to PMA\libraries\Util. Rename Font and File classes files. Use namespace for Footer. Set namespace in all libraries classes. Namespace OutputBuffering. Export SubPartition. Rename Partition file. Namespace PDF. Namespace RecentFavoriteTable. Replace PMA_Response by Response and PMA_Message by Message. Update uses and calls. Fix unit tests. Fix SqlParser autoload. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
138 lines
3.3 KiB
PHP
138 lines
3.3 KiB
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* Test for Menu class
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
|
|
/*
|
|
* Include to test.
|
|
*/
|
|
use PMA\libraries\Menu;
|
|
use PMA\libraries\PMA_Theme;
|
|
|
|
require_once 'libraries/sanitizing.lib.php';
|
|
require_once 'libraries/core.lib.php';
|
|
require_once 'libraries/Menu.php';
|
|
require_once 'libraries/Table.class.php';
|
|
require_once 'libraries/database_interface.inc.php';
|
|
require_once 'libraries/Tracker.class.php';
|
|
require_once 'libraries/Util.php';
|
|
require_once 'libraries/Theme.class.php';
|
|
require_once 'libraries/url_generating.lib.php';
|
|
require_once 'libraries/vendor_config.php';
|
|
require_once 'libraries/select_lang.lib.php';
|
|
require_once 'libraries/relation.lib.php';
|
|
|
|
/**
|
|
* Test for Menu class
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
class PMA_Menu_Test extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* Configures global environment.
|
|
*
|
|
* @return void
|
|
*/
|
|
function setup()
|
|
{
|
|
if (!defined('PMA_IS_WINDOWS')) {
|
|
define('PMA_IS_WINDOWS', false);
|
|
}
|
|
$GLOBALS['cfg']['Server']['DisableIS'] = false;
|
|
$GLOBALS['server'] = 0;
|
|
$GLOBALS['cfg']['ServerDefault'] = 1;
|
|
$GLOBALS['cfg']['Server']['verbose'] = 'verbose host';
|
|
$GLOBALS['cfg']['TableNavigationLinksMode'] = 'both';
|
|
$_SESSION['PMA_Theme'] = new PMA_Theme();
|
|
$GLOBALS['pmaThemePath'] = $_SESSION['PMA_Theme']->getPath();
|
|
$GLOBALS['pmaThemeImage'] = 'theme/';
|
|
$GLOBALS['cfg']['DefaultTabServer'] = 'welcome';
|
|
$GLOBALS['cfg']['DefaultTabDatabase'] = 'structure';
|
|
$GLOBALS['cfg']['DefaultTabTable'] = 'browse';
|
|
$GLOBALS['cfg']['OBGzip'] = false;
|
|
$GLOBALS['cfg']['NaturalOrder'] = true;
|
|
$GLOBALS['cfg']['TabsMode'] = 'both';
|
|
$GLOBALS['cfg']['DBG']['sql'] = false;
|
|
$GLOBALS['PMA_PHP_SELF'] = PMA_getenv('PHP_SELF');
|
|
$GLOBALS['server'] = 'server';
|
|
$GLOBALS['db'] = 'pma_test';
|
|
$GLOBALS['table'] = 'table1';
|
|
}
|
|
|
|
/**
|
|
* Server menu test
|
|
*
|
|
* @return void
|
|
*/
|
|
function testServer()
|
|
{
|
|
$menu = new Menu('server', '', '');
|
|
$this->assertContains(
|
|
'floating_menubar',
|
|
$menu->getDisplay()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Database menu test
|
|
*
|
|
* @return void
|
|
*/
|
|
function testDatabase()
|
|
{
|
|
$menu = new Menu('server', 'pma_test', '');
|
|
$this->assertContains(
|
|
'floating_menubar',
|
|
$menu->getDisplay()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Table menu test
|
|
*
|
|
* @return void
|
|
*/
|
|
function testTable()
|
|
{
|
|
$menu = new Menu('server', 'pma_test', 'table1');
|
|
$this->assertContains(
|
|
'floating_menubar',
|
|
$menu->getDisplay()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Table menu display test
|
|
*
|
|
* @return void
|
|
*/
|
|
function testTableDisplay()
|
|
{
|
|
$menu = new Menu('server', 'pma_test', '');
|
|
$this->expectOutputString(
|
|
$menu->getDisplay()
|
|
);
|
|
$menu->display();
|
|
}
|
|
|
|
|
|
/**
|
|
* Table menu setTable test
|
|
*
|
|
* @return void
|
|
*/
|
|
function testSetTable()
|
|
{
|
|
$menu = new Menu('server', 'pma_test', '');
|
|
$menu->setTable('table1');
|
|
$this->assertContains(
|
|
'table1',
|
|
$menu->getDisplay()
|
|
);
|
|
}
|
|
}
|