phpmyadmin/test/classes/Navigation/Nodes/NodeViewContainerTest.php
William Desportes 49a6d6e8d0
Use AbstractTestCase instead of PmaTestCase for all tests not needing mockResponse
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-22 01:45:50 +02:00

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);
}
}