Initial commit
This commit is contained in:
121
#pma/test/classes/MenuTest.php
Normal file
121
#pma/test/classes/MenuTest.php
Normal file
@ -0,0 +1,121 @@
|
||||
<?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\Theme;
|
||||
|
||||
require_once 'libraries/sanitizing.lib.php';
|
||||
require_once 'libraries/database_interface.inc.php';
|
||||
require_once 'libraries/url_generating.lib.php';
|
||||
require_once 'libraries/relation.lib.php';
|
||||
require_once 'test/PMATestCase.php';
|
||||
|
||||
/**
|
||||
* Test for Menu class
|
||||
*
|
||||
* @package PhpMyAdmin-test
|
||||
*/
|
||||
class MenuTest extends PMATestCase
|
||||
{
|
||||
/**
|
||||
* 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']['Server']['verbose'] = 'verbose host';
|
||||
$_SESSION['PMA_Theme'] = new Theme();
|
||||
$GLOBALS['pmaThemePath'] = $_SESSION['PMA_Theme']->getPath();
|
||||
$GLOBALS['pmaThemeImage'] = 'theme/';
|
||||
$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()
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user