1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Server;
use PhpMyAdmin\Server\Select;
use PhpMyAdmin\Tests\AbstractTestCase;
use PhpMyAdmin\Util;
use function __;
/**
* @covers \PhpMyAdmin\Server\Select
*/
class SelectTest extends AbstractTestCase
{
/**
* Prepares environment for the test.
*/
protected function setUp(): void
{
parent::setUp();
//$_REQUEST
$_REQUEST['log'] = 'index1';
$_REQUEST['pos'] = 3;
//$GLOBALS
$GLOBALS['cfg']['MaxRows'] = 10;
$GLOBALS['server'] = 1;
$GLOBALS['cfg']['ServerDefault'] = 'server';
$GLOBALS['cfg']['RememberSorting'] = true;
$GLOBALS['cfg']['SQP'] = [];
$GLOBALS['cfg']['MaxCharactersInDisplayedSQL'] = 1000;
$GLOBALS['cfg']['ShowSQL'] = true;
$GLOBALS['cfg']['TableNavigationLinksMode'] = 'icons';
$GLOBALS['cfg']['LimitChars'] = 100;
$GLOBALS['table'] = 'table';
$GLOBALS['cfg']['DefaultTabServer'] = 'welcome';
$GLOBALS['cfg']['Servers'] = [
'0' => [
'host' => 'host0',
'port' => 'port0',
'only_db' => 'only_db0',
'user' => 'user0',
'auth_type' => 'config',
],
'1' => [
'host' => 'host1',
'port' => 'port1',
'only_db' => 'only_db1',
'user' => 'user1',
'auth_type' => 'config',
],
];
//$_SESSION
}
/**
* Test for Select::render
*
* @dataProvider renderDataProvider
*/
public function testRender(bool $not_only_options, bool $omit_fieldset): void
{
if ($not_only_options) {
$GLOBALS['cfg']['DisplayServersList'] = null;
}
$html = Select::render($not_only_options, $omit_fieldset);
$server = $GLOBALS['cfg']['Servers']['0'];
if ($not_only_options) {
if (! $omit_fieldset) {
$this->assertStringContainsString('</fieldset>', $html);
}
$this->assertStringContainsString(
Util::getScriptNameForOption(
$GLOBALS['cfg']['DefaultTabServer'],
'server'
),
$html
);
$this->assertStringContainsString(
__('Current server:'),
$html
);
$this->assertStringContainsString(
'(' . __('Servers') . ')',
$html
);
}
//server items
$this->assertStringContainsString($server['host'], $html);
$this->assertStringContainsString($server['port'], $html);
$this->assertStringContainsString($server['only_db'], $html);
$this->assertStringContainsString($server['user'], $html);
}
public function renderDataProvider(): array
{
return [
'only options, don\'t omit fieldset' => [
false,
false,
],
'not only options, omits fieldset' => [
true,
true,
],
'not only options, don\'t omit fieldset' => [
true,
false,
],
];
}
}
|