51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Tests for PhpMyAdmin\Navigation\Nodes\NodeViewContainer class
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Navigation\Nodes;
|
|
|
|
use PhpMyAdmin\Navigation\NodeFactory;
|
|
use PhpMyAdmin\Tests\AbstractTestCase;
|
|
|
|
/**
|
|
* Tests for PhpMyAdmin\Navigation\Nodes\NodeViewContainer class
|
|
*/
|
|
class NodeViewContainerTest extends AbstractTestCase
|
|
{
|
|
/**
|
|
* SetUp for test cases
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
parent::loadDefaultConfig();
|
|
$GLOBALS['server'] = 0;
|
|
$GLOBALS['cfg']['NavigationTreeEnableGrouping'] = true;
|
|
$GLOBALS['cfg']['NavigationTreeDbSeparator'] = '_';
|
|
$GLOBALS['cfg']['NavigationTreeTableSeparator'] = '__';
|
|
$GLOBALS['cfg']['NavigationTreeTableLevel'] = 1;
|
|
}
|
|
|
|
/**
|
|
* Test for __construct
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testConstructor()
|
|
{
|
|
$parent = NodeFactory::getInstance('NodeViewContainer');
|
|
$this->assertArrayHasKey(
|
|
'text',
|
|
$parent->links
|
|
);
|
|
$this->assertStringContainsString(
|
|
'index.php?route=/database/structure',
|
|
$parent->links['text']
|
|
);
|
|
$this->assertEquals('views', $parent->realName);
|
|
$this->assertStringContainsString('viewContainer', $parent->classes);
|
|
}
|
|
}
|