These settings are no longer required as they are guaranteed through other coding standard tools. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
117 lines
2.7 KiB
PHP
117 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Tests for methods in URL class
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests;
|
|
|
|
use PhpMyAdmin\Url;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Tests for methods in URL class
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
class UrlTest extends TestCase
|
|
{
|
|
/**
|
|
* Sets up the fixture, for example, opens a network connection.
|
|
* This method is called before a test is executed.
|
|
*
|
|
* @access protected
|
|
* @return void
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
unset($_COOKIE['pma_lang']);
|
|
}
|
|
|
|
/**
|
|
* Test for Url::getCommon for DB only
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testDbOnly()
|
|
{
|
|
$GLOBALS['server'] = 'x';
|
|
$GLOBALS['cfg']['ServerDefault'] = 'y';
|
|
|
|
$separator = Url::getArgSeparator();
|
|
$expected = 'server=x' . htmlentities($separator) . 'lang=en' ;
|
|
|
|
$expected = '?db=db'
|
|
. htmlentities($separator) . $expected;
|
|
|
|
$this->assertEquals($expected, Url::getCommon(['db' => 'db']));
|
|
}
|
|
|
|
/**
|
|
* Test for Url::getCommon with new style
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testNewStyle()
|
|
{
|
|
$GLOBALS['server'] = 'x';
|
|
$GLOBALS['cfg']['ServerDefault'] = 'y';
|
|
|
|
$separator = Url::getArgSeparator();
|
|
$expected = 'server=x' . htmlentities($separator) . 'lang=en' ;
|
|
|
|
$expected = '?db=db'
|
|
. htmlentities($separator) . 'table=table'
|
|
. htmlentities($separator) . $expected;
|
|
$params = [
|
|
'db' => 'db',
|
|
'table' => 'table',
|
|
];
|
|
$this->assertEquals($expected, Url::getCommon($params));
|
|
}
|
|
|
|
/**
|
|
* Test for Url::getCommon with alternate divider
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testWithAlternateDivider()
|
|
{
|
|
$GLOBALS['server'] = 'x';
|
|
$GLOBALS['cfg']['ServerDefault'] = 'y';
|
|
|
|
$separator = Url::getArgSeparator();
|
|
$expected = 'server=x' . $separator . 'lang=en' ;
|
|
|
|
$expected = '#ABC#db=db' . $separator . 'table=table' . $separator
|
|
. $expected;
|
|
$this->assertEquals(
|
|
$expected,
|
|
Url::getCommonRaw(
|
|
[
|
|
'db' => 'db',
|
|
'table' => 'table',
|
|
],
|
|
'#ABC#'
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for Url::getCommon
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testDefault()
|
|
{
|
|
$GLOBALS['server'] = 'x';
|
|
$GLOBALS['cfg']['ServerDefault'] = 'y';
|
|
|
|
$separator = Url::getArgSeparator();
|
|
$expected = '?server=x' . htmlentities($separator) . 'lang=en' ;
|
|
$this->assertEquals($expected, Url::getCommon());
|
|
}
|
|
}
|