phpmyadmin/test/classes/Navigation/NavigationTreeTest.php
Maurício Meneghini Fauth 44fe103b9c
Remove @access annotations
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-12-22 11:43:45 -03:00

80 lines
2.0 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Navigation;
use PhpMyAdmin\Navigation\NavigationTree;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\AbstractTestCase;
/**
* @covers \PhpMyAdmin\Navigation\NavigationTree
*/
class NavigationTreeTest extends AbstractTestCase
{
/** @var NavigationTree */
protected $object;
/**
* Sets up the fixture.
*/
protected function setUp(): void
{
parent::setUp();
parent::setLanguage();
parent::setGlobalConfig();
parent::setTheme();
$GLOBALS['server'] = 1;
$GLOBALS['cfg']['Server']['host'] = 'localhost';
$GLOBALS['cfg']['Server']['user'] = 'user';
$GLOBALS['cfg']['Server']['pmadb'] = '';
$GLOBALS['cfg']['Server']['DisableIS'] = false;
$GLOBALS['cfg']['NavigationTreeEnableGrouping'] = true;
$GLOBALS['cfg']['ShowDatabasesNavigationAsTree'] = true;
$GLOBALS['db'] = 'db';
$GLOBALS['table'] = '';
$GLOBALS['PMA_PHP_SELF'] = '';
$this->object = new NavigationTree(new Template(), $GLOBALS['dbi']);
}
/**
* Tears down the fixture.
*/
protected function tearDown(): void
{
parent::tearDown();
unset($this->object);
}
/**
* Very basic rendering test.
*/
public function testRenderState(): void
{
$result = $this->object->renderState();
$this->assertStringContainsString('pma_quick_warp', $result);
}
/**
* Very basic path rendering test.
*/
public function testRenderPath(): void
{
$result = $this->object->renderPath();
$this->assertIsString($result);
$this->assertStringContainsString('list_container', $result);
}
/**
* Very basic select rendering test.
*/
public function testRenderDbSelect(): void
{
$result = $this->object->renderDbSelect();
$this->assertStringContainsString('pma_navigation_select_database', $result);
}
}