3034 lines
78 KiB
PHP
3034 lines
78 KiB
PHP
<?php
|
||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||
/**
|
||
* Test for PhpMyAdmin\Util class
|
||
*
|
||
* @package PhpMyAdmin-test
|
||
*/
|
||
declare(strict_types=1);
|
||
|
||
namespace PhpMyAdmin\Tests;
|
||
|
||
use PhpMyAdmin\Config;
|
||
use PhpMyAdmin\Core;
|
||
use PhpMyAdmin\DatabaseInterface;
|
||
use PhpMyAdmin\MoTranslator\Loader;
|
||
use PhpMyAdmin\SqlParser\Context;
|
||
use PhpMyAdmin\SqlParser\Token;
|
||
use PhpMyAdmin\Tests\PmaTestCase;
|
||
use PhpMyAdmin\Util;
|
||
|
||
/**
|
||
* Test for PhpMyAdmin\Util class
|
||
*
|
||
* @package PhpMyAdmin-test
|
||
*/
|
||
class UtilTest extends PmaTestCase
|
||
{
|
||
/**
|
||
* Test for createGISData
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testCreateGISDataOldMysql(): void
|
||
{
|
||
$this->assertEquals(
|
||
"abc",
|
||
Util::createGISData("abc", 50500)
|
||
);
|
||
$this->assertEquals(
|
||
"GeomFromText('POINT()',10)",
|
||
Util::createGISData("'POINT()',10", 50500)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for createGISData
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testCreateGISDataNewMysql(): void
|
||
{
|
||
$this->assertEquals(
|
||
"abc",
|
||
Util::createGISData("abc", 50600)
|
||
);
|
||
$this->assertEquals(
|
||
"ST_GeomFromText('POINT()',10)",
|
||
Util::createGISData("'POINT()',10", 50600)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getGISFunctions
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testGetGISFunctions(): void
|
||
{
|
||
$funcs = Util::getGISFunctions();
|
||
$this->assertArrayHasKey(
|
||
'Dimension',
|
||
$funcs
|
||
);
|
||
$this->assertArrayHasKey(
|
||
'GeometryType',
|
||
$funcs
|
||
);
|
||
$this->assertArrayHasKey(
|
||
'MBRDisjoint',
|
||
$funcs
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Page Selector
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testPageSelector()
|
||
{
|
||
$this->assertStringContainsString(
|
||
'<select class="pageselector ajax" name="pma" >',
|
||
Util::pageselector("pma", 3)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for isForeignKeyCheck
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testIsForeignKeyCheck()
|
||
{
|
||
$GLOBALS['server'] = 1;
|
||
|
||
$GLOBALS['cfg']['DefaultForeignKeyChecks'] = 'enable';
|
||
$this->assertEquals(
|
||
true,
|
||
Util::isForeignKeyCheck()
|
||
);
|
||
|
||
$GLOBALS['cfg']['DefaultForeignKeyChecks'] = 'disable';
|
||
$this->assertEquals(
|
||
false,
|
||
Util::isForeignKeyCheck()
|
||
);
|
||
|
||
$GLOBALS['cfg']['DefaultForeignKeyChecks'] = 'default';
|
||
$this->assertEquals(
|
||
true,
|
||
Util::isForeignKeyCheck()
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getCharsetQueryPart
|
||
*
|
||
* @param string $collation Collation
|
||
* @param string $expected Expected Charset Query
|
||
*
|
||
* @return void
|
||
* @test
|
||
* @dataProvider charsetQueryData
|
||
*/
|
||
public function testGenerateCharsetQueryPart($collation, $expected): void
|
||
{
|
||
$this->assertEquals(
|
||
$expected,
|
||
Util::getCharsetQueryPart($collation)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Data Provider for testgetCharsetQueryPart
|
||
*
|
||
* @return array test data
|
||
*/
|
||
public function charsetQueryData()
|
||
{
|
||
return [
|
||
[
|
||
"a_b_c_d",
|
||
" CHARSET=a COLLATE a_b_c_d",
|
||
],
|
||
[
|
||
"a_",
|
||
" CHARSET=a COLLATE a_",
|
||
],
|
||
[
|
||
"a",
|
||
" CHARSET=a",
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for random generation
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testGenerateRandom()
|
||
{
|
||
$this->assertEquals(32, strlen(Util::generateRandom(32)));
|
||
$this->assertEquals(16, strlen(Util::generateRandom(16)));
|
||
}
|
||
|
||
/**
|
||
* Test for PhpMyAdmin\Util::getBrowseUploadFileBlock
|
||
*
|
||
* @param int $size Size
|
||
* @param string $unit Unit
|
||
* @param string $res Result
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getBrowseUploadFileBlock
|
||
* @dataProvider providerGetBrowseUploadFileBlock
|
||
*/
|
||
public function testGetBrowseUploadFileBlock($size, $unit, $res): void
|
||
{
|
||
$GLOBALS['is_upload'] = false;
|
||
$this->assertEquals(
|
||
Util::getBrowseUploadFileBlock($size),
|
||
'<label for="input_import_file">' . __("Browse your computer:")
|
||
. '</label>'
|
||
. '<div id="upload_form_status" class="hide"></div>'
|
||
. '<div id="upload_form_status_info" class="hide"></div>'
|
||
. '<input type="file" name="import_file" id="input_import_file">'
|
||
. "(" . __('Max: ') . $res . $unit . ')' . "\n"
|
||
. '<input type="hidden" name="MAX_FILE_SIZE" value="'
|
||
. $size . '">' . "\n"
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Data provider for testGetBrowseUploadFileBlock
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerGetBrowseUploadFileBlock()
|
||
{
|
||
return [
|
||
[
|
||
10,
|
||
__('B'),
|
||
"10",
|
||
],
|
||
[
|
||
100,
|
||
__('B'),
|
||
"100",
|
||
],
|
||
[
|
||
1024,
|
||
__('B'),
|
||
"1,024",
|
||
],
|
||
[
|
||
102400,
|
||
__('KiB'),
|
||
"100",
|
||
],
|
||
[
|
||
10240000,
|
||
__('MiB'),
|
||
"10",
|
||
],
|
||
[
|
||
2147483648,
|
||
__('MiB'),
|
||
"2,048",
|
||
],
|
||
[
|
||
21474836480,
|
||
__('GiB'),
|
||
"20",
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for PhpMyAdmin\Util::buildActionTitles
|
||
*
|
||
* @covers \PhpMyAdmin\Util::buildActionTitles
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testBuildActionTitles()
|
||
{
|
||
$GLOBALS['cfg'] = ['ActionLinksMode' => 'both'];
|
||
|
||
$titles = [];
|
||
$titles['Browse'] = Util::getIcon('b_browse', __('Browse'));
|
||
$titles['NoBrowse'] = Util::getIcon('bd_browse', __('Browse'));
|
||
$titles['Search'] = Util::getIcon('b_select', __('Search'));
|
||
$titles['NoSearch'] = Util::getIcon('bd_select', __('Search'));
|
||
$titles['Insert'] = Util::getIcon('b_insrow', __('Insert'));
|
||
$titles['NoInsert'] = Util::getIcon('bd_insrow', __('Insert'));
|
||
$titles['Structure'] = Util::getIcon('b_props', __('Structure'));
|
||
$titles['Drop'] = Util::getIcon('b_drop', __('Drop'));
|
||
$titles['NoDrop'] = Util::getIcon('bd_drop', __('Drop'));
|
||
$titles['Empty'] = Util::getIcon('b_empty', __('Empty'));
|
||
$titles['NoEmpty'] = Util::getIcon('bd_empty', __('Empty'));
|
||
$titles['Edit'] = Util::getIcon('b_edit', __('Edit'));
|
||
$titles['NoEdit'] = Util::getIcon('bd_edit', __('Edit'));
|
||
$titles['Export'] = Util::getIcon('b_export', __('Export'));
|
||
$titles['NoExport'] = Util::getIcon('bd_export', __('Export'));
|
||
$titles['Execute'] = Util::getIcon('b_nextpage', __('Execute'));
|
||
$titles['NoExecute'] = Util::getIcon('bd_nextpage', __('Execute'));
|
||
$titles['Favorite'] = Util::getIcon('b_favorite', '');
|
||
$titles['NoFavorite'] = Util::getIcon('b_no_favorite', '');
|
||
|
||
$this->assertEquals($titles, Util::buildActionTitles());
|
||
}
|
||
|
||
/**
|
||
* Test if cached data is available after set
|
||
*
|
||
* @covers \PhpMyAdmin\Util::cacheExists
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testCacheExists()
|
||
{
|
||
$GLOBALS['server'] = 'server';
|
||
Util::cacheSet('test_data', 5);
|
||
Util::cacheSet('test_data_2', 5);
|
||
|
||
$this->assertTrue(Util::cacheExists('test_data'));
|
||
$this->assertTrue(Util::cacheExists('test_data_2'));
|
||
$this->assertFalse(Util::cacheExists('fake_data_2'));
|
||
}
|
||
|
||
/**
|
||
* Test if PhpMyAdmin\Util::cacheGet does not return data for non existing cache entries
|
||
*
|
||
* @covers \PhpMyAdmin\Util::cacheGet
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testCacheGet()
|
||
{
|
||
$GLOBALS['server'] = 'server';
|
||
Util::cacheSet('test_data', 5);
|
||
Util::cacheSet('test_data_2', 5);
|
||
|
||
$this->assertNotNull(Util::cacheGet('test_data'));
|
||
$this->assertNotNull(Util::cacheGet('test_data_2'));
|
||
$this->assertNull(Util::cacheGet('fake_data_2'));
|
||
}
|
||
|
||
/**
|
||
* Test retrieval of cached data
|
||
*
|
||
* @covers \PhpMyAdmin\Util::cacheSet
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testCacheSetGet()
|
||
{
|
||
$GLOBALS['server'] = 'server';
|
||
Util::cacheSet('test_data', 25);
|
||
|
||
Util::cacheSet('test_data', 5);
|
||
$this->assertEquals(5, $_SESSION['cache']['server_server']['test_data']);
|
||
Util::cacheSet('test_data_3', 3);
|
||
$this->assertEquals(3, $_SESSION['cache']['server_server']['test_data_3']);
|
||
}
|
||
|
||
/**
|
||
* Test clearing cached values
|
||
*
|
||
* @covers \PhpMyAdmin\Util::cacheUnset
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testCacheUnSet()
|
||
{
|
||
$GLOBALS['server'] = 'server';
|
||
Util::cacheSet('test_data', 25);
|
||
Util::cacheSet('test_data_2', 25);
|
||
|
||
Util::cacheUnset('test_data');
|
||
$this->assertArrayNotHasKey(
|
||
'test_data',
|
||
$_SESSION['cache']['server_server']
|
||
);
|
||
Util::cacheUnset('test_data_2');
|
||
$this->assertArrayNotHasKey(
|
||
'test_data_2',
|
||
$_SESSION['cache']['server_server']
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test clearing user cache
|
||
*
|
||
* @covers \PhpMyAdmin\Util::clearUserCache
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testClearUserCache()
|
||
{
|
||
$GLOBALS['server'] = 'server';
|
||
Util::cacheSet('is_superuser', 'yes');
|
||
$this->assertEquals(
|
||
'yes',
|
||
$_SESSION['cache']['server_server']['is_superuser']
|
||
);
|
||
|
||
Util::clearUserCache();
|
||
$this->assertArrayNotHasKey(
|
||
'is_superuser',
|
||
$_SESSION['cache']['server_server']
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::checkParameters
|
||
*
|
||
* @covers \PhpMyAdmin\Util::checkParameters
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testCheckParameterMissing()
|
||
{
|
||
$GLOBALS['PMA_Config'] = new Config();
|
||
$GLOBALS['text_dir'] = 'ltr';
|
||
$GLOBALS['PMA_PHP_SELF'] = Core::getenv('PHP_SELF');
|
||
$GLOBALS['pmaThemePath'] = $GLOBALS['PMA_Theme']->getPath();
|
||
$GLOBALS['db'] = 'db';
|
||
$GLOBALS['table'] = 'table';
|
||
$GLOBALS['server'] = 1;
|
||
$GLOBALS['cfg']['ServerDefault'] = 1;
|
||
$GLOBALS['cfg']['AllowThirdPartyFraming'] = false;
|
||
|
||
$this->expectOutputRegex("/Missing parameter: field/");
|
||
|
||
Util::checkParameters(
|
||
[
|
||
'db',
|
||
'table',
|
||
'field',
|
||
]
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::checkParameters
|
||
*
|
||
* @covers \PhpMyAdmin\Util::checkParameters
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testCheckParameter()
|
||
{
|
||
$GLOBALS['PMA_Config'] = new Config();
|
||
$GLOBALS['cfg'] = ['ServerDefault' => 1];
|
||
$GLOBALS['text_dir'] = 'ltr';
|
||
$GLOBALS['PMA_PHP_SELF'] = Core::getenv('PHP_SELF');
|
||
$GLOBALS['pmaThemePath'] = $GLOBALS['PMA_Theme']->getPath();
|
||
$GLOBALS['db'] = "dbDatabase";
|
||
$GLOBALS['table'] = "tblTable";
|
||
$GLOBALS['field'] = "test_field";
|
||
$GLOBALS['sql_query'] = "SELECT * FROM tblTable;";
|
||
|
||
$this->expectOutputString("");
|
||
Util::checkParameters(
|
||
[
|
||
'db',
|
||
'table',
|
||
'field',
|
||
'sql_query',
|
||
]
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::convertBitDefaultValue
|
||
*
|
||
* @param string $bit Value
|
||
* @param string $val Expected value
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::convertBitDefaultValue
|
||
* @dataProvider providerConvertBitDefaultValue
|
||
*/
|
||
public function testConvertBitDefaultValue($bit, $val): void
|
||
{
|
||
$this->assertEquals(
|
||
$val,
|
||
Util::convertBitDefaultValue($bit)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Provider for testConvertBitDefaultValue
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerConvertBitDefaultValue()
|
||
{
|
||
return [
|
||
[
|
||
null,
|
||
'',
|
||
],
|
||
[
|
||
"b'",
|
||
"",
|
||
],
|
||
[
|
||
"b'01'",
|
||
"01",
|
||
],
|
||
[
|
||
"b'010111010'",
|
||
"010111010",
|
||
],
|
||
"database name starting with b" => [
|
||
"big database",
|
||
"big database",
|
||
],
|
||
"database name containing b'" => [
|
||
"a b'ig database",
|
||
"a b'ig database",
|
||
],
|
||
"database name in single quotes" => [
|
||
"'a*database*name'",
|
||
"'a*database*name'",
|
||
],
|
||
"database name with multiple b'" => [
|
||
"b'ens datab'ase'",
|
||
"b'ens datab'ase'",
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* data provider for testEscapeMysqlWildcards and testUnescapeMysqlWildcards
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerUnEscapeMysqlWildcards()
|
||
{
|
||
return [
|
||
[
|
||
'\_test',
|
||
'_test',
|
||
],
|
||
[
|
||
'\_\\',
|
||
'_\\',
|
||
],
|
||
[
|
||
'\\_\%',
|
||
'_%',
|
||
],
|
||
[
|
||
'\\\_',
|
||
'\_',
|
||
],
|
||
[
|
||
'\\\_\\\%',
|
||
'\_\%',
|
||
],
|
||
[
|
||
'\_\\%\_\_\%',
|
||
'_%__%',
|
||
],
|
||
[
|
||
'\%\_',
|
||
'%_',
|
||
],
|
||
[
|
||
'\\\%\\\_',
|
||
'\%\_',
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* PhpMyAdmin\Util::escapeMysqlWildcards tests
|
||
*
|
||
* @param string $a Expected value
|
||
* @param string $b String to escape
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::escapeMysqlWildcards
|
||
* @dataProvider providerUnEscapeMysqlWildcards
|
||
*/
|
||
public function testEscapeMysqlWildcards($a, $b): void
|
||
{
|
||
$this->assertEquals(
|
||
$a,
|
||
Util::escapeMysqlWildcards($b)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* PhpMyAdmin\Util::unescapeMysqlWildcards tests
|
||
*
|
||
* @param string $a String to unescape
|
||
* @param string $b Expected value
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::unescapeMysqlWildcards
|
||
* @dataProvider providerUnEscapeMysqlWildcards
|
||
*/
|
||
public function testUnescapeMysqlWildcards($a, $b): void
|
||
{
|
||
$this->assertEquals(
|
||
$b,
|
||
Util::unescapeMysqlWildcards($a)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test case for expanding strings
|
||
*
|
||
* @param string $in string to evaluate
|
||
* @param string $out expected output
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::expandUserString
|
||
* @dataProvider providerExpandUserString
|
||
*/
|
||
public function testExpandUserString($in, $out): void
|
||
{
|
||
$GLOBALS['PMA_Config'] = new Config();
|
||
$GLOBALS['PMA_Config']->enableBc();
|
||
$GLOBALS['cfg'] = [
|
||
'Server' => [
|
||
'host' => 'host&',
|
||
'verbose' => 'verbose',
|
||
],
|
||
];
|
||
$GLOBALS['db'] = 'database';
|
||
$GLOBALS['table'] = 'table';
|
||
|
||
$out = str_replace('PMA_VERSION', PMA_VERSION, $out);
|
||
|
||
$this->assertEquals(
|
||
$out,
|
||
Util::expandUserString($in)
|
||
);
|
||
|
||
$this->assertEquals(
|
||
htmlspecialchars($out),
|
||
Util::expandUserString(
|
||
$in,
|
||
'htmlspecialchars'
|
||
)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Data provider for testExpandUserString
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerExpandUserString()
|
||
{
|
||
return [
|
||
[
|
||
'@SERVER@',
|
||
'host&',
|
||
],
|
||
[
|
||
'@VSERVER@',
|
||
'verbose',
|
||
],
|
||
[
|
||
'@DATABASE@',
|
||
'database',
|
||
],
|
||
[
|
||
'@TABLE@',
|
||
'table',
|
||
],
|
||
[
|
||
'@IGNORE@',
|
||
'@IGNORE@',
|
||
],
|
||
[
|
||
'@PHPMYADMIN@',
|
||
'phpMyAdmin PMA_VERSION',
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test case for parsing SHOW COLUMNS output
|
||
*
|
||
* @param string $in Column specification
|
||
* @param array $out Expected value
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::extractColumnSpec
|
||
* @dataProvider providerExtractColumnSpec
|
||
*/
|
||
public function testExtractColumnSpec($in, $out): void
|
||
{
|
||
$GLOBALS['cfg']['LimitChars'] = 1000;
|
||
|
||
$this->assertEquals(
|
||
$out,
|
||
Util::extractColumnSpec($in)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Data provider for testExtractColumnSpec
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerExtractColumnSpec()
|
||
{
|
||
return [
|
||
[
|
||
"SET('a','b')",
|
||
[
|
||
'type' => 'set',
|
||
'print_type' => "set('a', 'b')",
|
||
'binary' => false,
|
||
'unsigned' => false,
|
||
'zerofill' => false,
|
||
'spec_in_brackets' => "'a','b'",
|
||
'enum_set_values' => [
|
||
'a',
|
||
'b',
|
||
],
|
||
'attribute' => ' ',
|
||
'can_contain_collation' => true,
|
||
'displayed_type' => "set('a', 'b')",
|
||
],
|
||
],
|
||
[
|
||
"SET('\'a','b')",
|
||
[
|
||
'type' => 'set',
|
||
'print_type' => "set('\'a', 'b')",
|
||
'binary' => false,
|
||
'unsigned' => false,
|
||
'zerofill' => false,
|
||
'spec_in_brackets' => "'\'a','b'",
|
||
'enum_set_values' => [
|
||
"'a",
|
||
'b',
|
||
],
|
||
'attribute' => ' ',
|
||
'can_contain_collation' => true,
|
||
'displayed_type' => "set('\'a', 'b')",
|
||
],
|
||
],
|
||
[
|
||
"SET('''a','b')",
|
||
[
|
||
'type' => 'set',
|
||
'print_type' => "set('''a', 'b')",
|
||
'binary' => false,
|
||
'unsigned' => false,
|
||
'zerofill' => false,
|
||
'spec_in_brackets' => "'''a','b'",
|
||
'enum_set_values' => [
|
||
"'a",
|
||
'b',
|
||
],
|
||
'attribute' => ' ',
|
||
'can_contain_collation' => true,
|
||
'displayed_type' => "set('''a', 'b')",
|
||
],
|
||
],
|
||
[
|
||
"ENUM('a&b', 'b''c\\'d', 'e\\\\f')",
|
||
[
|
||
'type' => 'enum',
|
||
'print_type' => "enum('a&b', 'b''c\\'d', 'e\\\\f')",
|
||
'binary' => false,
|
||
'unsigned' => false,
|
||
'zerofill' => false,
|
||
'spec_in_brackets' => "'a&b', 'b''c\\'d', 'e\\\\f'",
|
||
'enum_set_values' => [
|
||
'a&b',
|
||
'b\'c\'d',
|
||
'e\\f',
|
||
],
|
||
'attribute' => ' ',
|
||
'can_contain_collation' => true,
|
||
'displayed_type' => "enum('a&b', 'b''c\\'d', 'e\\\\f')",
|
||
],
|
||
],
|
||
[
|
||
"INT UNSIGNED zerofill",
|
||
[
|
||
'type' => 'int',
|
||
'print_type' => 'int',
|
||
'binary' => false,
|
||
'unsigned' => true,
|
||
'zerofill' => true,
|
||
'spec_in_brackets' => '',
|
||
'enum_set_values' => [],
|
||
'attribute' => 'UNSIGNED ZEROFILL',
|
||
'can_contain_collation' => false,
|
||
'displayed_type' => "int",
|
||
],
|
||
],
|
||
[
|
||
"VARCHAR(255)",
|
||
[
|
||
'type' => 'varchar',
|
||
'print_type' => 'varchar(255)',
|
||
'binary' => false,
|
||
'unsigned' => false,
|
||
'zerofill' => false,
|
||
'spec_in_brackets' => '255',
|
||
'enum_set_values' => [],
|
||
'attribute' => ' ',
|
||
'can_contain_collation' => true,
|
||
'displayed_type' => "varchar(255)",
|
||
],
|
||
],
|
||
[
|
||
"VARBINARY(255)",
|
||
[
|
||
'type' => 'varbinary',
|
||
'print_type' => 'varbinary(255)',
|
||
'binary' => false,
|
||
'unsigned' => false,
|
||
'zerofill' => false,
|
||
'spec_in_brackets' => '255',
|
||
'enum_set_values' => [],
|
||
'attribute' => ' ',
|
||
'can_contain_collation' => false,
|
||
'displayed_type' => "varbinary(255)",
|
||
],
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for Util::extractValueFromFormattedSize
|
||
*
|
||
* @param int|string $size Size
|
||
* @param int $expected Expected value
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::extractValueFromFormattedSize
|
||
* @dataProvider providerExtractValueFromFormattedSize
|
||
*/
|
||
public function testExtractValueFromFormattedSize($size, $expected): void
|
||
{
|
||
$this->assertEquals(
|
||
$expected,
|
||
Util::extractValueFromFormattedSize($size)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Data provider for testExtractValueFromFormattedSize
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerExtractValueFromFormattedSize()
|
||
{
|
||
return [
|
||
[
|
||
100,
|
||
-1,
|
||
],
|
||
[
|
||
"10GB",
|
||
10737418240,
|
||
],
|
||
[
|
||
"15MB",
|
||
15728640,
|
||
],
|
||
[
|
||
"256K",
|
||
262144,
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* foreign key supported test
|
||
*
|
||
* @param string $a Engine
|
||
* @param bool $e Expected Value
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::isForeignKeySupported
|
||
* @dataProvider providerIsForeignKeySupported
|
||
*/
|
||
public function testIsForeignKeySupported($a, $e): void
|
||
{
|
||
$GLOBALS['server'] = 1;
|
||
|
||
$this->assertEquals(
|
||
$e,
|
||
Util::isForeignKeySupported($a)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* data provider for foreign key supported test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerIsForeignKeySupported()
|
||
{
|
||
return [
|
||
[
|
||
'MyISAM',
|
||
false,
|
||
],
|
||
[
|
||
'innodb',
|
||
true,
|
||
],
|
||
[
|
||
'pBxT',
|
||
true,
|
||
],
|
||
[
|
||
'ndb',
|
||
true,
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for formatSql
|
||
*
|
||
* @covers \PhpMyAdmin\Util::formatSql
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testFormatSql()
|
||
{
|
||
$this->assertEquals(
|
||
'<code class="sql"><pre>' . "\n"
|
||
. 'SELECT 1 < 2' . "\n"
|
||
. '</pre></code>',
|
||
Util::formatSql('SELECT 1 < 2')
|
||
);
|
||
|
||
$GLOBALS['cfg']['MaxCharactersInDisplayedSQL'] = 6;
|
||
|
||
$this->assertEquals(
|
||
'<code class="sql"><pre>' . "\n"
|
||
. 'SELECT[...]' . "\n"
|
||
. '</pre></code>',
|
||
Util::formatSql('SELECT 1 < 2', true)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* format byte test, globals are defined
|
||
*
|
||
* @param float $a Value to format
|
||
* @param int $b Sensitiveness
|
||
* @param int $c Number of decimals to retain
|
||
* @param array $e Expected value
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::formatByteDown
|
||
* @dataProvider providerFormatByteDown
|
||
*/
|
||
public function testFormatByteDown($a, $b, $c, $e): void
|
||
{
|
||
$result = Util::formatByteDown($a, $b, $c);
|
||
$result[0] = trim($result[0]);
|
||
$this->assertSame($e, $result);
|
||
}
|
||
|
||
/**
|
||
* format byte down data provider
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerFormatByteDown()
|
||
{
|
||
return [
|
||
[
|
||
10,
|
||
2,
|
||
2,
|
||
[
|
||
'10',
|
||
__('B'),
|
||
],
|
||
],
|
||
[
|
||
100,
|
||
2,
|
||
0,
|
||
[
|
||
'0',
|
||
__('KiB'),
|
||
],
|
||
],
|
||
[
|
||
100,
|
||
3,
|
||
0,
|
||
[
|
||
'100',
|
||
__('B'),
|
||
],
|
||
],
|
||
[
|
||
100,
|
||
2,
|
||
2,
|
||
[
|
||
'0.10',
|
||
__('KiB'),
|
||
],
|
||
],
|
||
[
|
||
1034,
|
||
3,
|
||
2,
|
||
[
|
||
'1.01',
|
||
__('KiB'),
|
||
],
|
||
],
|
||
[
|
||
100233,
|
||
3,
|
||
3,
|
||
[
|
||
'97.884',
|
||
__('KiB'),
|
||
],
|
||
],
|
||
[
|
||
2206451,
|
||
1,
|
||
2,
|
||
[
|
||
'2.10',
|
||
__('MiB'),
|
||
],
|
||
],
|
||
[
|
||
21474836480,
|
||
4,
|
||
0,
|
||
[
|
||
'20',
|
||
__('GiB'),
|
||
],
|
||
],
|
||
[
|
||
floatval(52) + floatval(2048),
|
||
3,
|
||
1,
|
||
[
|
||
'2.1',
|
||
'KiB',
|
||
],
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Core test for formatNumber
|
||
*
|
||
* @param float $a Value to format
|
||
* @param int $b Sensitiveness
|
||
* @param int $c Number of decimals to retain
|
||
* @param array $d Expected value
|
||
*
|
||
* @return void
|
||
*/
|
||
private function assertFormatNumber($a, $b, $c, $d)
|
||
{
|
||
$this->assertEquals(
|
||
$d,
|
||
(string) Util::formatNumber(
|
||
$a,
|
||
$b,
|
||
$c,
|
||
false
|
||
)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* format number test, globals are defined
|
||
*
|
||
* @param float $a Value to format
|
||
* @param int $b Sensitiveness
|
||
* @param int $c Number of decimals to retain
|
||
* @param array $d Expected value
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::formatNumber
|
||
* @dataProvider providerFormatNumber
|
||
*/
|
||
public function testFormatNumber($a, $b, $c, $d): void
|
||
{
|
||
$this->assertFormatNumber($a, $b, $c, $d);
|
||
|
||
// Test with various precisions
|
||
$old_precision = ini_get('precision');
|
||
try {
|
||
ini_set('precision', '20');
|
||
$this->assertFormatNumber($a, $b, $c, $d);
|
||
ini_set('precision', '14');
|
||
$this->assertFormatNumber($a, $b, $c, $d);
|
||
ini_set('precision', '10');
|
||
$this->assertFormatNumber($a, $b, $c, $d);
|
||
ini_set('precision', '5');
|
||
$this->assertFormatNumber($a, $b, $c, $d);
|
||
ini_set('precision', '-1');
|
||
$this->assertFormatNumber($a, $b, $c, $d);
|
||
} finally {
|
||
ini_set('precision', $old_precision);
|
||
}
|
||
|
||
// Test with different translations
|
||
$translator = Loader::getInstance()->getTranslator();
|
||
|
||
try {
|
||
// German
|
||
$translator->setTranslation(',', '.');
|
||
$translator->setTranslation('.', ',');
|
||
$expected = str_replace([',', 'X'], ['.', ','], str_replace('.', 'X', $d));
|
||
$this->assertFormatNumber($a, $b, $c, $expected);
|
||
|
||
// Czech
|
||
$translator->setTranslation(',', ' ');
|
||
$translator->setTranslation('.', ',');
|
||
$expected = str_replace([',', 'X'], [' ', ','], str_replace('.', 'X', $d));
|
||
$this->assertFormatNumber($a, $b, $c, $expected);
|
||
} finally {
|
||
// Restore
|
||
$translator->setTranslation(',', ',');
|
||
$translator->setTranslation('.', '.');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* format number data provider
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerFormatNumber()
|
||
{
|
||
return [
|
||
[
|
||
10,
|
||
2,
|
||
2,
|
||
'10 ',
|
||
],
|
||
[
|
||
100,
|
||
2,
|
||
0,
|
||
'100 ',
|
||
],
|
||
[
|
||
100,
|
||
2,
|
||
2,
|
||
'100 ',
|
||
],
|
||
[
|
||
-1000.454,
|
||
4,
|
||
2,
|
||
'-1,000.45 ',
|
||
],
|
||
[
|
||
0.00003,
|
||
3,
|
||
2,
|
||
'30 ยต',
|
||
],
|
||
[
|
||
0.003,
|
||
3,
|
||
3,
|
||
'3 m',
|
||
],
|
||
[
|
||
-0.003,
|
||
6,
|
||
0,
|
||
'-3,000 ยต',
|
||
],
|
||
[
|
||
100.98,
|
||
0,
|
||
2,
|
||
'100.98',
|
||
],
|
||
[
|
||
21010101,
|
||
0,
|
||
2,
|
||
'21,010,101.00',
|
||
],
|
||
[
|
||
1100000000,
|
||
5,
|
||
0,
|
||
'1,100 M',
|
||
],
|
||
[
|
||
20000,
|
||
2,
|
||
2,
|
||
'20 k',
|
||
],
|
||
[
|
||
20011,
|
||
2,
|
||
2,
|
||
'20.01 k',
|
||
],
|
||
[
|
||
123456789,
|
||
6,
|
||
0,
|
||
'123,457 k',
|
||
],
|
||
[
|
||
-123456789,
|
||
4,
|
||
2,
|
||
'-123.46 M',
|
||
],
|
||
[
|
||
0,
|
||
6,
|
||
0,
|
||
'0',
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for Util::generateHiddenMaxFileSize
|
||
*
|
||
* @param int $size Size
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::generateHiddenMaxFileSize
|
||
* @dataProvider providerGenerateHiddenMaxFileSize
|
||
*/
|
||
public function testGenerateHiddenMaxFileSize($size): void
|
||
{
|
||
$this->assertEquals(
|
||
Util::generateHiddenMaxFileSize($size),
|
||
'<input type="hidden" name="MAX_FILE_SIZE" value="' . $size . '">'
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Data provider for testGenerateHiddenMaxFileSize
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerGenerateHiddenMaxFileSize()
|
||
{
|
||
return [
|
||
[10],
|
||
["100"],
|
||
[1024],
|
||
["1024Mb"],
|
||
[2147483648],
|
||
["some_string"],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for getDbLink
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDbLink
|
||
* @group medium
|
||
*/
|
||
public function testGetDbLinkEmpty()
|
||
{
|
||
$GLOBALS['db'] = null;
|
||
$this->assertEmpty(Util::getDbLink());
|
||
}
|
||
|
||
/**
|
||
* Test for getDbLink
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDbLink
|
||
* @group medium
|
||
*/
|
||
public function testGetDbLinkNull()
|
||
{
|
||
global $cfg;
|
||
$GLOBALS['db'] = 'test_db';
|
||
$GLOBALS['server'] = 99;
|
||
$database = $GLOBALS['db'];
|
||
$this->assertEquals(
|
||
'<a href="'
|
||
. Util::getScriptNameForOption(
|
||
$GLOBALS['cfg']['DefaultTabDatabase'],
|
||
'database'
|
||
)
|
||
. '?db=' . $database
|
||
. '&server=99&lang=en" '
|
||
. 'title="Jump to database โ'
|
||
. htmlspecialchars($database) . 'โ.">'
|
||
. htmlspecialchars($database) . '</a>',
|
||
Util::getDbLink()
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getDbLink
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDbLink
|
||
*/
|
||
public function testGetDbLink()
|
||
{
|
||
global $cfg;
|
||
$GLOBALS['server'] = 99;
|
||
$database = 'test_database';
|
||
$this->assertEquals(
|
||
'<a href="' . Util::getScriptNameForOption(
|
||
$GLOBALS['cfg']['DefaultTabDatabase'],
|
||
'database'
|
||
)
|
||
. '?db=' . $database
|
||
. '&server=99&lang=en" title="Jump to database โ'
|
||
. htmlspecialchars($database) . 'โ.">'
|
||
. htmlspecialchars($database) . '</a>',
|
||
Util::getDbLink($database)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getDbLink
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDbLink
|
||
*/
|
||
public function testGetDbLinkWithSpecialChars()
|
||
{
|
||
global $cfg;
|
||
$GLOBALS['server'] = 99;
|
||
$database = 'test&data\'base';
|
||
$this->assertEquals(
|
||
'<a href="'
|
||
. Util::getScriptNameForOption(
|
||
$GLOBALS['cfg']['DefaultTabDatabase'],
|
||
'database'
|
||
)
|
||
. '?db='
|
||
. htmlspecialchars(urlencode($database))
|
||
. '&server=99&lang=en" title="Jump to database โ'
|
||
. htmlspecialchars($database) . 'โ.">'
|
||
. htmlspecialchars($database) . '</a>',
|
||
Util::getDbLink($database)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getDivForSliderEffect
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDivForSliderEffect
|
||
*/
|
||
public function testGetDivForSliderEffectTest()
|
||
{
|
||
global $cfg;
|
||
$cfg['InitialSlidersState'] = 'undefined';
|
||
|
||
$id = "test_id";
|
||
$message = "test_message";
|
||
|
||
$this->assertXmlStringEqualsXmlString(
|
||
"<root>" . Util::getDivForSliderEffect($id, $message) . "</div></root>",
|
||
"<root><div id=\"$id\" class=\"pma_auto_slider\"\ntitle=\""
|
||
. htmlspecialchars($message) . "\" >\n</div></root>"
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getDivForSliderEffect
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDivForSliderEffect
|
||
*/
|
||
public function testGetDivForSliderEffectTestClosed()
|
||
{
|
||
global $cfg;
|
||
$cfg['InitialSlidersState'] = 'closed';
|
||
|
||
$id = "test_id";
|
||
$message = "test_message";
|
||
|
||
$this->assertXmlStringEqualsXmlString(
|
||
"<root>" . Util::getDivForSliderEffect($id, $message) . "</div></root>",
|
||
"<root><div id=\"$id\" style=\"display: none; overflow:auto;\" class=\"pma_auto_slider\"\ntitle=\""
|
||
. htmlspecialchars($message) . "\" >\n</div></root>"
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getDivForSliderEffect
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDivForSliderEffect
|
||
*/
|
||
public function testGetDivForSliderEffectTestDisabled()
|
||
{
|
||
global $cfg;
|
||
$cfg['InitialSlidersState'] = 'disabled';
|
||
|
||
$id = "test_id";
|
||
$message = "test_message";
|
||
|
||
$this->assertXmlStringEqualsXmlString(
|
||
"<root>" . Util::getDivForSliderEffect($id, $message) . "</div></root>",
|
||
"<root><div id=\"$id\">\n</div></root>"
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getDropdown
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDropdown
|
||
*/
|
||
public function testGetDropdownEmpty()
|
||
{
|
||
$name = "test_dropdown_name";
|
||
$choices = [];
|
||
$active_choice = null;
|
||
$id = "test_<dropdown>_name";
|
||
|
||
$result = '<select name="' . htmlspecialchars($name) . '" id="'
|
||
. htmlspecialchars($id) . '">' . "\n" . '</select>' . "\n";
|
||
|
||
$this->assertEquals(
|
||
$result,
|
||
Util::getDropdown(
|
||
$name,
|
||
$choices,
|
||
$active_choice,
|
||
$id
|
||
)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getDropdown
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDropdown
|
||
*/
|
||
public function testGetDropdown()
|
||
{
|
||
$name = "&test_dropdown_name";
|
||
$choices = [
|
||
"value_1" => "label_1",
|
||
"value&_2\"" => "label_2",
|
||
];
|
||
$active_choice = null;
|
||
$id = "test_<dropdown>_name";
|
||
|
||
$result = '<select name="' . htmlspecialchars($name) . '" id="'
|
||
. htmlspecialchars($id) . '">';
|
||
foreach ($choices as $one_choice_value => $one_choice_label) {
|
||
$result .= "\n" . '<option value="' . htmlspecialchars($one_choice_value) . '"';
|
||
if ($one_choice_value == $active_choice) {
|
||
$result .= ' selected="selected"';
|
||
}
|
||
$result .= '>' . htmlspecialchars($one_choice_label) . '</option>';
|
||
}
|
||
$result .= "\n" . '</select>' . "\n";
|
||
|
||
$this->assertEquals(
|
||
$result,
|
||
Util::getDropdown(
|
||
$name,
|
||
$choices,
|
||
$active_choice,
|
||
$id
|
||
)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getDropdown
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getDropdown
|
||
*/
|
||
public function testGetDropdownWithActive()
|
||
{
|
||
$name = "&test_dropdown_name";
|
||
$choices = [
|
||
"value_1" => "label_1",
|
||
"value&_2\"" => "label_2",
|
||
];
|
||
$active_choice = "value&_2\"";
|
||
$id = "test_<dropdown>_name";
|
||
|
||
$result = '<select name="' . htmlspecialchars($name) . '" id="'
|
||
. htmlspecialchars($id) . '">';
|
||
foreach ($choices as $one_choice_value => $one_choice_label) {
|
||
$result .= "\n";
|
||
$result .= '<option value="' . htmlspecialchars($one_choice_value) . '"';
|
||
if ($one_choice_value == $active_choice) {
|
||
$result .= ' selected="selected"';
|
||
}
|
||
$result .= '>' . htmlspecialchars($one_choice_label) . '</option>';
|
||
}
|
||
$result .= "\n";
|
||
$result .= '</select>' . "\n";
|
||
|
||
$this->assertEquals(
|
||
$result,
|
||
Util::getDropdown(
|
||
$name,
|
||
$choices,
|
||
$active_choice,
|
||
$id
|
||
)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::getFormattedMaximumUploadSize
|
||
*
|
||
* @param int $size Size
|
||
* @param string $unit Unit
|
||
* @param string $res Result
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getFormattedMaximumUploadSize
|
||
* @dataProvider providerGetFormattedMaximumUploadSize
|
||
*/
|
||
public function testGetFormattedMaximumUploadSize($size, $unit, $res): void
|
||
{
|
||
$this->assertEquals(
|
||
"(" . __('Max: ') . $res . $unit . ")",
|
||
Util::getFormattedMaximumUploadSize($size)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Data provider for testGetFormattedMaximumUploadSize
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerGetFormattedMaximumUploadSize()
|
||
{
|
||
return [
|
||
[
|
||
10,
|
||
__('B'),
|
||
"10",
|
||
],
|
||
[
|
||
100,
|
||
__('B'),
|
||
"100",
|
||
],
|
||
[
|
||
1024,
|
||
__('B'),
|
||
"1,024",
|
||
],
|
||
[
|
||
102400,
|
||
__('KiB'),
|
||
"100",
|
||
],
|
||
[
|
||
10240000,
|
||
__('MiB'),
|
||
"10",
|
||
],
|
||
[
|
||
2147483648,
|
||
__('MiB'),
|
||
"2,048",
|
||
],
|
||
[
|
||
21474836480,
|
||
__('GiB'),
|
||
"20",
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for Util::getIcon
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getIcon
|
||
*/
|
||
public function testGetIconWithoutActionLinksMode()
|
||
{
|
||
$GLOBALS['cfg']['ActionLinksMode'] = 'text';
|
||
|
||
$this->assertEquals(
|
||
'<span class="nowrap"></span>',
|
||
Util::getIcon('b_comment')
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::getIcon
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getIcon
|
||
*/
|
||
public function testGetIconWithActionLinksMode()
|
||
{
|
||
$GLOBALS['cfg']['ActionLinksMode'] = 'icons';
|
||
|
||
$this->assertEquals(
|
||
'<span class="nowrap"><img src="themes/dot.gif" title="" alt="" class="icon ic_b_comment"></span>',
|
||
Util::getIcon('b_comment')
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::getIcon
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getIcon
|
||
*/
|
||
public function testGetIconAlternate()
|
||
{
|
||
$GLOBALS['cfg']['ActionLinksMode'] = 'icons';
|
||
$alternate_text = 'alt_str';
|
||
|
||
$this->assertEquals(
|
||
'<span class="nowrap"><img src="themes/dot.gif" title="'
|
||
. $alternate_text . '" alt="' . $alternate_text
|
||
. '" class="icon ic_b_comment"></span>',
|
||
Util::getIcon('b_comment', $alternate_text)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::getIcon
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getIcon
|
||
*/
|
||
public function testGetIconWithForceText()
|
||
{
|
||
$GLOBALS['cfg']['ActionLinksMode'] = 'icons';
|
||
$alternate_text = 'alt_str';
|
||
|
||
// Here we are checking for an icon embedded inside a span (i.e not a menu
|
||
// bar icon
|
||
$this->assertEquals(
|
||
'<span class="nowrap"><img src="themes/dot.gif" title="'
|
||
. $alternate_text . '" alt="' . $alternate_text
|
||
. '" class="icon ic_b_comment"> ' . $alternate_text . '</span>',
|
||
Util::getIcon('b_comment', $alternate_text, true, false)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getRadioFields
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getRadioFields
|
||
*/
|
||
public function testGetRadioFieldsEmpty()
|
||
{
|
||
$name = "test_display_radio";
|
||
$choices = [];
|
||
|
||
$this->assertEquals(
|
||
Util::getRadioFields($name, $choices),
|
||
""
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getRadioFields
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getRadioFields
|
||
*/
|
||
public function testGetRadioFields()
|
||
{
|
||
$name = "test_display_radio";
|
||
$choices = [
|
||
'value_1' => 'choice_1',
|
||
'value_2' => 'choice_2',
|
||
];
|
||
|
||
$out = "";
|
||
foreach ($choices as $choice_value => $choice_label) {
|
||
$html_field_id = $name . '_' . $choice_value;
|
||
$out .= '<input type="radio" name="' . $name . '" id="' . $html_field_id
|
||
. '" value="' . htmlspecialchars($choice_value) . '"';
|
||
$out .= '>' . "\n";
|
||
$out .= '<label for="' . $html_field_id . '">' . $choice_label
|
||
. '</label>';
|
||
$out .= "\n";
|
||
$out .= '<br>';
|
||
$out .= "\n";
|
||
}
|
||
|
||
$this->assertEquals(
|
||
Util::getRadioFields($name, $choices),
|
||
$out
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getRadioFields
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getRadioFields
|
||
*/
|
||
public function testGetRadioFieldsWithChecked()
|
||
{
|
||
$name = "test_display_radio";
|
||
$choices = [
|
||
'value_1' => 'choice_1',
|
||
'value_2' => 'choice_2',
|
||
];
|
||
$checked_choice = "value_2";
|
||
|
||
$out = "";
|
||
foreach ($choices as $choice_value => $choice_label) {
|
||
$html_field_id = $name . '_' . $choice_value;
|
||
$out .= '<input type="radio" name="' . $name . '" id="' . $html_field_id
|
||
. '" value="' . htmlspecialchars($choice_value) . '"';
|
||
if ($choice_value == $checked_choice) {
|
||
$out .= ' checked="checked"';
|
||
}
|
||
$out .= '>' . "\n";
|
||
$out .= '<label for="' . $html_field_id . '">' . $choice_label
|
||
. '</label>';
|
||
$out .= "\n";
|
||
$out .= '<br>';
|
||
$out .= "\n";
|
||
}
|
||
|
||
$this->assertEquals(
|
||
Util::getRadioFields(
|
||
$name,
|
||
$choices,
|
||
$checked_choice
|
||
),
|
||
$out
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getRadioFields
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getRadioFields
|
||
*/
|
||
public function testGetRadioFieldsWithCheckedWithClass()
|
||
{
|
||
$name = "test_display_radio";
|
||
$choices = [
|
||
'value_1' => 'choice_1',
|
||
'value_2' => 'choice_2',
|
||
];
|
||
$checked_choice = "value_2";
|
||
$class = "test_class";
|
||
|
||
$out = "";
|
||
foreach ($choices as $choice_value => $choice_label) {
|
||
$html_field_id = $name . '_' . $choice_value;
|
||
$out .= '<div class="' . $class . '">';
|
||
$out .= "\n";
|
||
$out .= '<input type="radio" name="' . $name . '" id="' . $html_field_id
|
||
. '" value="' . htmlspecialchars($choice_value) . '"';
|
||
if ($choice_value == $checked_choice) {
|
||
$out .= ' checked="checked"';
|
||
}
|
||
$out .= '>' . "\n";
|
||
$out .= '<label for="' . $html_field_id . '">' . $choice_label
|
||
. '</label>';
|
||
$out .= "\n";
|
||
$out .= '<br>';
|
||
$out .= "\n";
|
||
$out .= '</div>';
|
||
$out .= "\n";
|
||
}
|
||
|
||
$this->assertEquals(
|
||
Util::getRadioFields(
|
||
$name,
|
||
$choices,
|
||
$checked_choice,
|
||
true,
|
||
false,
|
||
$class
|
||
),
|
||
$out
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getRadioFields
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getRadioFields
|
||
*/
|
||
public function testGetRadioFieldsWithoutBR()
|
||
{
|
||
$name = "test_display_radio";
|
||
$choices = [
|
||
'value_1' => 'choice_1',
|
||
'value&_<2>' => 'choice_2',
|
||
];
|
||
$checked_choice = "choice_2";
|
||
|
||
$out = "";
|
||
foreach ($choices as $choice_value => $choice_label) {
|
||
$html_field_id = $name . '_' . $choice_value;
|
||
$out .= '<input type="radio" name="' . $name . '" id="' . $html_field_id
|
||
. '" value="' . htmlspecialchars($choice_value) . '"';
|
||
if ($choice_value == $checked_choice) {
|
||
$out .= ' checked="checked"';
|
||
}
|
||
$out .= '>' . "\n";
|
||
$out .= '<label for="' . $html_field_id . '">' . $choice_label
|
||
. '</label>';
|
||
$out .= "\n";
|
||
}
|
||
|
||
$this->assertEquals(
|
||
Util::getRadioFields(
|
||
$name,
|
||
$choices,
|
||
$checked_choice,
|
||
false
|
||
),
|
||
$out
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getRadioFields
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getRadioFields
|
||
*/
|
||
public function testGetRadioFieldsEscapeLabelEscapeLabel()
|
||
{
|
||
$name = "test_display_radio";
|
||
$choices = [
|
||
'value_1' => 'choice_1',
|
||
'value_&2' => 'choice&_<2>',
|
||
];
|
||
$checked_choice = "value_2";
|
||
|
||
$out = "";
|
||
foreach ($choices as $choice_value => $choice_label) {
|
||
$html_field_id = $name . '_' . $choice_value;
|
||
$out .= '<input type="radio" name="' . $name . '" id="' . $html_field_id
|
||
. '" value="' . htmlspecialchars($choice_value) . '"';
|
||
if ($choice_value == $checked_choice) {
|
||
$out .= ' checked="checked"';
|
||
}
|
||
$out .= '>' . "\n";
|
||
$out .= '<label for="' . $html_field_id . '">'
|
||
. htmlspecialchars($choice_label) . '</label>';
|
||
$out .= "\n";
|
||
$out .= '<br>';
|
||
$out .= "\n";
|
||
}
|
||
|
||
$this->assertEquals(
|
||
Util::getRadioFields(
|
||
$name,
|
||
$choices,
|
||
$checked_choice,
|
||
true,
|
||
true
|
||
),
|
||
$out
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getRadioFields
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getRadioFields
|
||
*/
|
||
public function testGetRadioFieldsEscapeLabelNotEscapeLabel()
|
||
{
|
||
$name = "test_display_radio";
|
||
$choices = [
|
||
'value_1' => 'choice_1',
|
||
'value_&2' => 'choice&_<2>',
|
||
];
|
||
$checked_choice = "value_2";
|
||
|
||
$out = "";
|
||
foreach ($choices as $choice_value => $choice_label) {
|
||
$html_field_id = $name . '_' . $choice_value;
|
||
$out .= '<input type="radio" name="' . $name . '" id="' . $html_field_id
|
||
. '" value="' . htmlspecialchars($choice_value) . '"';
|
||
if ($choice_value == $checked_choice) {
|
||
$out .= ' checked="checked"';
|
||
}
|
||
$out .= '>' . "\n";
|
||
$out .= '<label for="' . $html_field_id . '">' . $choice_label
|
||
. '</label>';
|
||
$out .= "\n";
|
||
$out .= '<br>';
|
||
$out .= "\n";
|
||
}
|
||
|
||
$this->assertEquals(
|
||
Util::getRadioFields(
|
||
$name,
|
||
$choices,
|
||
$checked_choice,
|
||
true,
|
||
false
|
||
),
|
||
$out
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for getRadioFields
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getRadioFields
|
||
*/
|
||
public function testGetRadioFieldsEscapeLabelEscapeLabelWithClass()
|
||
{
|
||
$name = "test_display_radio";
|
||
$choices = [
|
||
'value_1' => 'choice_1',
|
||
'value_&2' => 'choice&_<2>',
|
||
];
|
||
$checked_choice = "value_2";
|
||
$class = "test_class";
|
||
|
||
$out = "";
|
||
foreach ($choices as $choice_value => $choice_label) {
|
||
$html_field_id = $name . '_' . $choice_value;
|
||
$out .= '<div class="' . $class . '">';
|
||
$out .= "\n";
|
||
$out .= '<input type="radio" name="' . $name . '" id="' . $html_field_id
|
||
. '" value="' . htmlspecialchars($choice_value) . '"';
|
||
if ($choice_value == $checked_choice) {
|
||
$out .= ' checked="checked"';
|
||
}
|
||
$out .= '>' . "\n";
|
||
$out .= '<label for="' . $html_field_id . '">'
|
||
. htmlspecialchars($choice_label) . '</label>';
|
||
$out .= "\n";
|
||
$out .= '<br>';
|
||
$out .= "\n";
|
||
$out .= '</div>';
|
||
$out .= "\n";
|
||
}
|
||
|
||
$this->assertEquals(
|
||
Util::getRadioFields(
|
||
$name,
|
||
$choices,
|
||
$checked_choice,
|
||
true,
|
||
true,
|
||
$class
|
||
),
|
||
$out
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::getTitleForTarget
|
||
*
|
||
* @param string $target Target
|
||
* @param array $result Expected value
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::getTitleForTarget
|
||
* @dataProvider providerGetTitleForTarget
|
||
*/
|
||
public function testGetTitleForTarget($target, $result): void
|
||
{
|
||
$this->assertEquals(
|
||
$result,
|
||
Util::getTitleForTarget($target)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Data provider for testGetTitleForTarget
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerGetTitleForTarget()
|
||
{
|
||
return [
|
||
[
|
||
'tbl_structure.php',
|
||
__('Structure'),
|
||
],
|
||
[
|
||
'tbl_sql.php',
|
||
__('SQL'),
|
||
],
|
||
[
|
||
'tbl_select.php',
|
||
__('Search'),
|
||
],
|
||
[
|
||
'tbl_change.php',
|
||
__('Insert'),
|
||
],
|
||
[
|
||
'sql.php',
|
||
__('Browse'),
|
||
],
|
||
[
|
||
'db_structure.php',
|
||
__('Structure'),
|
||
],
|
||
[
|
||
'db_sql.php',
|
||
__('SQL'),
|
||
],
|
||
[
|
||
'db_search.php',
|
||
__('Search'),
|
||
],
|
||
[
|
||
'db_operations.php',
|
||
__('Operations'),
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* localised date test, globals are defined
|
||
*
|
||
* @param int $a Current timestamp
|
||
* @param string $b Format
|
||
* @param string $e Expected output
|
||
* @param string $tz Timezone to set
|
||
* @param string $locale Locale to set
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::localisedDate
|
||
* @dataProvider providerLocalisedDate
|
||
*/
|
||
public function testLocalisedDate(int $a, string $b, string $e, string $tz, string $locale): void
|
||
{
|
||
// A test case for #15830 could be added for using the php setlocale on a Windows CI
|
||
// See https://github.com/phpmyadmin/phpmyadmin/issues/15830
|
||
_setlocale(LC_ALL, $locale);
|
||
$tmpTimezone = date_default_timezone_get();
|
||
date_default_timezone_set($tz);
|
||
|
||
$this->assertEquals(
|
||
$e,
|
||
Util::localisedDate($a, $b)
|
||
);
|
||
|
||
date_default_timezone_set($tmpTimezone);
|
||
_setlocale(LC_ALL, 'en');
|
||
}
|
||
|
||
/**
|
||
* data provider for localised date test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerLocalisedDate()
|
||
{
|
||
$hasJaTranslations = file_exists(LOCALE_PATH . '/cs/LC_MESSAGES/phpmyadmin.mo');
|
||
return [
|
||
[
|
||
1227455558,
|
||
'',
|
||
'Nov 23, 2008 at 03:52 PM',
|
||
'Europe/London',
|
||
'en',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%Y-%m-%d %H:%M:%S %a',
|
||
'2008-11-23 15:52:38 Sun',
|
||
'Europe/London',
|
||
'en',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%Y-%m-%d %H:%M:%S %a',
|
||
'2008-11-23 16:52:38 Sun',
|
||
'Europe/Paris',
|
||
'en',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%Y-%m-%d %H:%M:%S %a',
|
||
'2008-11-24 00:52:38 Mon',
|
||
'Asia/Tokyo',
|
||
'en',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%a %A %b %B',
|
||
'Mon Mon Nov Nov',
|
||
'Asia/Tokyo',
|
||
'en',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%a %A %b %B %P',
|
||
'Mon Mon Nov Nov AM',
|
||
'Asia/Tokyo',
|
||
'en',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%Y-%m-%d %H:%M:%S %a',
|
||
$hasJaTranslations ? '2008-11-24 00:52:38 ๆ' : '2008-11-24 00:52:38 Mon',
|
||
'Asia/Tokyo',
|
||
'ja',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%a %A %b %B',
|
||
$hasJaTranslations ? 'ๆ ๆ 11 ๆ 11 ๆ' : 'Mon Mon Nov Nov',
|
||
'Asia/Tokyo',
|
||
'ja',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%a %A %b %B %P',
|
||
$hasJaTranslations ? 'ๆ ๆ 11 ๆ 11 ๆ ๅๅ' : 'Mon Mon Nov Nov AM',
|
||
'Asia/Tokyo',
|
||
'ja',
|
||
],
|
||
[
|
||
1227455558,
|
||
'ๆๆ',
|
||
'ๆๆ',
|
||
'Asia/Tokyo',
|
||
'ja',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%Y ๅนด 2 ๆ %d ๆฅ %H:%M',
|
||
'2008 ๅนด 2 ๆ 24 ๆฅ 00:52',
|
||
'Asia/Tokyo',
|
||
'ja',
|
||
],
|
||
[
|
||
1227455558,
|
||
'%Y ๅนด 2 <20> %d ๆฅ %H:%M',
|
||
'2008 ๅนด 2 <20> 24 ๆฅ 00:52',
|
||
'Asia/Tokyo',
|
||
'ja',
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* localised timestamp test, globals are defined
|
||
*
|
||
* @param int $a Timespan in seconds
|
||
* @param string $e Expected output
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::timespanFormat
|
||
* @dataProvider providerTimespanFormat
|
||
*/
|
||
public function testTimespanFormat($a, $e): void
|
||
{
|
||
$GLOBALS['timespanfmt'] = '%s days, %s hours, %s minutes and %s seconds';
|
||
$tmpTimezone = date_default_timezone_get();
|
||
date_default_timezone_set('Europe/London');
|
||
|
||
$this->assertEquals(
|
||
$e,
|
||
Util::timespanFormat($a)
|
||
);
|
||
|
||
date_default_timezone_set($tmpTimezone);
|
||
}
|
||
|
||
/**
|
||
* data provider for localised timestamp test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerTimespanFormat()
|
||
{
|
||
return [
|
||
[
|
||
1258,
|
||
'0 days, 0 hours, 20 minutes and 58 seconds',
|
||
],
|
||
[
|
||
821958,
|
||
'9 days, 12 hours, 19 minutes and 18 seconds',
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* test for generating string contains printable bit value of selected data
|
||
*
|
||
* @param integer $a Value
|
||
* @param int $b Length
|
||
* @param string $e Expected output
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::printableBitValue
|
||
* @dataProvider providerPrintableBitValue
|
||
*/
|
||
public function testPrintableBitValue($a, $b, $e): void
|
||
{
|
||
$this->assertEquals(
|
||
$e,
|
||
Util::printableBitValue($a, $b)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* data provider for printable bit value test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerPrintableBitValue()
|
||
{
|
||
return [
|
||
[
|
||
20131009,
|
||
64,
|
||
'0000000000000000000000000000000000000001001100110010110011000001',
|
||
],
|
||
[
|
||
5,
|
||
32,
|
||
'00000000000000000000000000000101',
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* PhpMyAdmin\Util::unQuote test
|
||
*
|
||
* @param string $param String
|
||
* @param string $expected Expected output
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::unQuote
|
||
* @dataProvider providerUnQuote
|
||
*/
|
||
public function testUnQuote($param, $expected): void
|
||
{
|
||
$this->assertEquals(
|
||
$expected,
|
||
Util::unQuote($param)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* data provider for PhpMyAdmin\Util::unQuote test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerUnQuote()
|
||
{
|
||
return [
|
||
[
|
||
'"test\'"',
|
||
"test'",
|
||
],
|
||
[
|
||
"'test''",
|
||
"test'",
|
||
],
|
||
[
|
||
"`test'`",
|
||
"test'",
|
||
],
|
||
[
|
||
"'test'test",
|
||
"'test'test",
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* PhpMyAdmin\Util::unQuote test with chosen quote
|
||
*
|
||
* @param string $param String
|
||
* @param string $expected Expected output
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::unQuote
|
||
* @dataProvider providerUnQuoteSelectedChar
|
||
*/
|
||
public function testUnQuoteSelectedChar($param, $expected): void
|
||
{
|
||
$this->assertEquals(
|
||
$expected,
|
||
Util::unQuote($param, '"')
|
||
);
|
||
}
|
||
|
||
/**
|
||
* data provider for PhpMyAdmin\Util::unQuote test with chosen quote
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerUnQuoteSelectedChar()
|
||
{
|
||
return [
|
||
[
|
||
'"test\'"',
|
||
"test'",
|
||
],
|
||
[
|
||
"'test''",
|
||
"'test''",
|
||
],
|
||
[
|
||
"`test'`",
|
||
"`test'`",
|
||
],
|
||
[
|
||
"'test'test",
|
||
"'test'test",
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* backquote test with different param $do_it (true, false)
|
||
*
|
||
* @param string $a String
|
||
* @param string $b Expected output
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::backquote
|
||
* @dataProvider providerBackquote
|
||
*/
|
||
public function testBackquote($a, $b): void
|
||
{
|
||
// Test bypass quoting (used by dump functions)
|
||
$this->assertEquals($a, Util::backquote($a, false));
|
||
|
||
// Test backquote
|
||
$this->assertEquals($b, Util::backquote($a));
|
||
}
|
||
|
||
/**
|
||
* data provider for backquote test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerBackquote()
|
||
{
|
||
return [
|
||
[
|
||
'0',
|
||
'`0`',
|
||
],
|
||
[
|
||
'test',
|
||
'`test`',
|
||
],
|
||
[
|
||
'te`st',
|
||
'`te``st`',
|
||
],
|
||
[
|
||
[
|
||
'test',
|
||
'te`st',
|
||
'',
|
||
'*',
|
||
],
|
||
[
|
||
'`test`',
|
||
'`te``st`',
|
||
'',
|
||
'*',
|
||
],
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* backquoteCompat test with different param $compatibility (NONE, MSSQL)
|
||
*
|
||
* @param string $a String
|
||
* @param string $b Expected output
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::backquoteCompat
|
||
* @dataProvider providerBackquoteCompat
|
||
*/
|
||
public function testBackquoteCompat($a, $b): void
|
||
{
|
||
// Test bypass quoting (used by dump functions)
|
||
$this->assertEquals($a, Util::backquoteCompat($a, 'NONE', false));
|
||
|
||
// Run tests in MSSQL compatibility mode
|
||
// Test bypass quoting (used by dump functions)
|
||
$this->assertEquals($a, Util::backquoteCompat($a, 'MSSQL', false));
|
||
|
||
// Test backquote
|
||
$this->assertEquals($b, Util::backquoteCompat($a, 'MSSQL'));
|
||
}
|
||
|
||
/**
|
||
* data provider for backquoteCompat test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerBackquoteCompat()
|
||
{
|
||
return [
|
||
[
|
||
'0',
|
||
'"0"',
|
||
],
|
||
[
|
||
'test',
|
||
'"test"',
|
||
],
|
||
[
|
||
'te`st',
|
||
'"te`st"',
|
||
],
|
||
[
|
||
[
|
||
'test',
|
||
'te`st',
|
||
'',
|
||
'*',
|
||
],
|
||
[
|
||
'"test"',
|
||
'"te`st"',
|
||
'',
|
||
'*',
|
||
],
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* backquoteCompat test with forbidden words
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::backquote
|
||
*/
|
||
public function testBackquoteForbidenWords()
|
||
{
|
||
foreach (Context::$KEYWORDS as $keyword => $type) {
|
||
if ($type & Token::FLAG_KEYWORD_RESERVED) {
|
||
$this->assertEquals(
|
||
"`" . $keyword . "`",
|
||
Util::backquote($keyword, false)
|
||
);
|
||
} else {
|
||
$this->assertEquals(
|
||
$keyword,
|
||
Util::backquote($keyword, false)
|
||
);
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test for Util::showDocu
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::showDocu
|
||
*/
|
||
public function testShowDocu()
|
||
{
|
||
$GLOBALS['server'] = '99';
|
||
$GLOBALS['cfg']['ServerDefault'] = 1;
|
||
|
||
$this->assertEquals(
|
||
'<a href="./url.php?url=https%3A%2F%2Fdocs.phpmyadmin.net%2Fen%2Flatest%2Fpage.html%23anchor" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a>',
|
||
Util::showDocu('page', 'anchor')
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for showPHPDocu
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::showPHPDocu
|
||
*/
|
||
public function testShowPHPDocu()
|
||
{
|
||
$GLOBALS['server'] = 99;
|
||
$GLOBALS['cfg']['ServerDefault'] = 0;
|
||
|
||
$target = "docu";
|
||
$lang = _pgettext('PHP documentation language', 'en');
|
||
$expected = '<a href="./url.php?url=https%3A%2F%2Fsecure.php.net%2Fmanual%2F' . $lang
|
||
. '%2F' . $target . '" target="documentation">'
|
||
. '<img src="themes/dot.gif" title="' . __('Documentation') . '" alt="'
|
||
. __('Documentation') . '" class="icon ic_b_help"></a>';
|
||
|
||
$this->assertEquals(
|
||
$expected,
|
||
Util::showPHPDocu($target)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* test of generating user dir, globals are defined
|
||
*
|
||
* @param string $a String
|
||
* @param string $e Expected output
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::userDir
|
||
* @dataProvider providerUserDir
|
||
*/
|
||
public function testUserDir($a, $e): void
|
||
{
|
||
$GLOBALS['cfg']['Server']['user'] = 'root';
|
||
|
||
$this->assertEquals($e, Util::userDir($a));
|
||
}
|
||
|
||
/**
|
||
* data provider for PhpMyAdmin\Util::userDir test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerUserDir()
|
||
{
|
||
return [
|
||
[
|
||
'/var/pma_tmp/%u/',
|
||
"/var/pma_tmp/root/",
|
||
],
|
||
[
|
||
'/home/%u/pma',
|
||
"/home/root/pma/",
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* duplicate first newline test
|
||
*
|
||
* @param string $a String
|
||
* @param string $e Expected output
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::duplicateFirstNewline
|
||
* @dataProvider providerDuplicateFirstNewline
|
||
*/
|
||
public function testDuplicateFirstNewline($a, $e): void
|
||
{
|
||
$this->assertEquals(
|
||
$e,
|
||
Util::duplicateFirstNewline($a)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* data provider for duplicate first newline test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerDuplicateFirstNewline()
|
||
{
|
||
return [
|
||
[
|
||
'test',
|
||
'test',
|
||
],
|
||
[
|
||
"\r\ntest",
|
||
"\n\r\ntest",
|
||
],
|
||
[
|
||
"\ntest",
|
||
"\ntest",
|
||
],
|
||
[
|
||
"\n\r\ntest",
|
||
"\n\r\ntest",
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for Util::unsupportedDatatypes
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers \PhpMyAdmin\Util::unsupportedDatatypes
|
||
*/
|
||
public function testUnsupportedDatatypes()
|
||
{
|
||
$no_support_types = [];
|
||
$this->assertEquals(
|
||
$no_support_types,
|
||
Util::unsupportedDatatypes()
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::getPageFromPosition
|
||
*
|
||
* @return void
|
||
*
|
||
* @covers PhpMyAdmin\Util::getPageFromPosition
|
||
*/
|
||
public function testGetPageFromPosition()
|
||
{
|
||
$this->assertEquals(Util::getPageFromPosition(0, 1), 1);
|
||
$this->assertEquals(Util::getPageFromPosition(1, 1), 2);
|
||
$this->assertEquals(Util::getPageFromPosition(1, 2), 1);
|
||
$this->assertEquals(Util::getPageFromPosition(1, 6), 1);
|
||
}
|
||
|
||
/**
|
||
* Test for Util::linkOrButton
|
||
*
|
||
* @param array $params params
|
||
* @param int $limit limit
|
||
* @param string $match match
|
||
*
|
||
* @return void
|
||
*
|
||
* @dataProvider linksOrButtons
|
||
*/
|
||
public function testLinkOrButton(array $params, $limit, $match): void
|
||
{
|
||
$restore = $GLOBALS['cfg']['LinkLengthLimit'] ?? 1000;
|
||
$GLOBALS['cfg']['LinkLengthLimit'] = $limit;
|
||
try {
|
||
$result = call_user_func_array(
|
||
[
|
||
'PhpMyAdmin\Util',
|
||
'linkOrButton',
|
||
],
|
||
$params
|
||
);
|
||
$this->assertEquals($match, $result);
|
||
} finally {
|
||
$GLOBALS['cfg']['LinkLengthLimit'] = $restore;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Data provider for Util::linkOrButton test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function linksOrButtons()
|
||
{
|
||
return [
|
||
[
|
||
['index.php', null, 'text'],
|
||
1000,
|
||
'<a href="index.php" >text</a>',
|
||
],
|
||
[
|
||
['index.php', ['some' => 'parameter'], 'text'],
|
||
20,
|
||
'<a href="index.php" data-post="some=parameter&lang=en">text</a>',
|
||
],
|
||
[
|
||
['index.php', null, 'text', [], 'target'],
|
||
1000,
|
||
'<a href="index.php" target="target">text</a>',
|
||
],
|
||
[
|
||
['url.php?url=http://phpmyadmin.net/', null, 'text', [], '_blank'],
|
||
1000,
|
||
'<a href="url.php?url=http://phpmyadmin.net/" target="_blank" rel="noopener noreferrer">text</a>',
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for Util::isInteger
|
||
*
|
||
* @param bool $expected Expected result for a given input
|
||
* @param mixed $input Input data to check
|
||
*
|
||
* @return void
|
||
*
|
||
* @dataProvider providerIsInteger
|
||
*/
|
||
public function testIsInteger(bool $expected, $input): void
|
||
{
|
||
$isInteger = Util::isInteger($input);
|
||
$this->assertEquals($expected, $isInteger);
|
||
}
|
||
|
||
/**
|
||
* Data provider for Util::isInteger test
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerIsInteger(): array
|
||
{
|
||
return [
|
||
[
|
||
true,
|
||
1000,
|
||
],
|
||
[
|
||
true,
|
||
'1000',
|
||
],
|
||
[
|
||
false,
|
||
1000.1,
|
||
],
|
||
[
|
||
false,
|
||
'1000.1',
|
||
],
|
||
[
|
||
false,
|
||
'input',
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test for Util::getProtoFromForwardedHeader
|
||
*
|
||
* @param string $header The http Forwarded header
|
||
* @param string $proto The protocol http/https
|
||
*
|
||
* @return void
|
||
*
|
||
* @dataProvider providerForwardedHeaders
|
||
*/
|
||
public function testGetProtoFromForwardedHeader(string $header, string $proto): void
|
||
{
|
||
$protocolDetected = Util::getProtoFromForwardedHeader($header);
|
||
$this->assertEquals($proto, $protocolDetected);
|
||
}
|
||
|
||
/**
|
||
* Data provider for Util::getProtoFromForwardedHeader test
|
||
* @source https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Forwarded MDN docs
|
||
* @source https://www.nginx.com/resources/wiki/start/topics/examples/forwarded/ Nginx docs
|
||
*
|
||
* @return array
|
||
*/
|
||
public function providerForwardedHeaders(): array
|
||
{
|
||
return [
|
||
[
|
||
'',
|
||
'',
|
||
],
|
||
[
|
||
'=',
|
||
'',
|
||
],
|
||
[
|
||
'https',
|
||
'',
|
||
],
|
||
[
|
||
'https',
|
||
'',
|
||
],
|
||
[
|
||
'=https',
|
||
'',
|
||
],
|
||
[
|
||
'=http',
|
||
'',
|
||
],
|
||
[
|
||
'For="[2001:db8:cafe::17]:4711"',
|
||
'',
|
||
],
|
||
[
|
||
'for=192.0.2.60;proto=http;by=203.0.113.43',
|
||
'http',
|
||
],
|
||
[
|
||
'for=192.0.2.43, for=198.51.100.17',
|
||
'',
|
||
],
|
||
[
|
||
'for=123.34.567.89',
|
||
'',
|
||
],
|
||
[
|
||
'for=192.0.2.43, for="[2001:db8:cafe::17]"',
|
||
'',
|
||
],
|
||
[
|
||
'for=12.34.56.78;host=example.com;proto=https, for=23.45.67.89',
|
||
'https',
|
||
],
|
||
[
|
||
'for=12.34.56.78, for=23.45.67.89;secret=egah2CGj55fSJFs, for=10.1.2.3',
|
||
'',
|
||
],
|
||
[
|
||
'for=injected;by="',
|
||
'',
|
||
],
|
||
[
|
||
'for=injected;by=", for=real',
|
||
'',
|
||
],
|
||
[
|
||
'for=192.0.2.60;proto=http;by=203.0.113.43',
|
||
'http',
|
||
],
|
||
[
|
||
'for=192.0.2.60;proto=htTp;by=203.0.113.43',
|
||
'http',
|
||
],
|
||
[
|
||
'for=192.0.2.60;proto=HTTP;by=203.0.113.43',
|
||
'http',
|
||
],
|
||
[
|
||
'for=192.0.2.60;proto= http;by=203.0.113.43',
|
||
'http',
|
||
],
|
||
[
|
||
'for=12.34.45.67;secret="special;proto=abc;test=1";proto=http,for=23.45.67.89',
|
||
'http',
|
||
],
|
||
[
|
||
'for=12.34.45.67;secret="special;proto=abc;test=1";proto=418,for=23.45.67.89',
|
||
'',
|
||
],
|
||
/*[ // this test case is very special and would need a different implementation
|
||
'for=12.34.45.67;secret="special;proto=http;test=1";proto=https,for=23.45.67.89',
|
||
'https'
|
||
]*/
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Some data to test Util::asWKT for testAsWKT
|
||
*
|
||
* @return array
|
||
*/
|
||
public function dataProviderAsWKT(): array
|
||
{
|
||
return [
|
||
[
|
||
'SELECT ASTEXT(x\'000000000101000000000000000000f03f000000000000f03f\')',
|
||
[
|
||
'POINT(1 1)'
|
||
],
|
||
'POINT(1 1)',
|
||
false,
|
||
50300,
|
||
],
|
||
[
|
||
'SELECT ASTEXT(x\'000000000101000000000000000000f03f000000000000f03f\'), SRID(x\'000000000101000000000000000000f03f000000000000f03f\')',
|
||
[
|
||
'POINT(1 1)',
|
||
'0',
|
||
],
|
||
'\'POINT(1 1)\',0',
|
||
true,
|
||
50300,
|
||
],
|
||
[
|
||
'SELECT ST_ASTEXT(x\'000000000101000000000000000000f03f000000000000f03f\')',
|
||
[
|
||
'POINT(1 1)'
|
||
],
|
||
'POINT(1 1)',
|
||
false,
|
||
50700,
|
||
],
|
||
[
|
||
'SELECT ST_ASTEXT(x\'000000000101000000000000000000f03f000000000000f03f\'), ST_SRID(x\'000000000101000000000000000000f03f000000000000f03f\')',
|
||
[
|
||
'POINT(1 1)',
|
||
'0',
|
||
],
|
||
'\'POINT(1 1)\',0',
|
||
true,
|
||
50700,
|
||
],
|
||
[
|
||
'SELECT ST_ASTEXT(x\'000000000101000000000000000000f03f000000000000f03f\', \'axis-order=long-lat\'), ST_SRID(x\'000000000101000000000000000000f03f000000000000f03f\')',
|
||
[
|
||
'POINT(1 1)',
|
||
'0',
|
||
],
|
||
'\'POINT(1 1)\',0',
|
||
true,
|
||
80010,
|
||
],
|
||
[
|
||
'SELECT ST_ASTEXT(x\'000000000101000000000000000000f03f000000000000f03f\'), ST_SRID(x\'000000000101000000000000000000f03f000000000000f03f\')',
|
||
[
|
||
'POINT(1 1)',
|
||
'0',
|
||
],
|
||
'\'POINT(1 1)\',0',
|
||
true,
|
||
50700,
|
||
],
|
||
[
|
||
'SELECT ST_ASTEXT(x\'000000000101000000000000000000f03f000000000000f03f\', \'axis-order=long-lat\')',
|
||
[
|
||
'POINT(1 1)',
|
||
'0',
|
||
],
|
||
'POINT(1 1)',
|
||
false,
|
||
80010,
|
||
],
|
||
[
|
||
'SELECT ST_ASTEXT(x\'000000000101000000000000000000f03f000000000000f03f\')',
|
||
[
|
||
'POINT(1 1)',
|
||
'0',
|
||
],
|
||
'POINT(1 1)',
|
||
false,
|
||
50700,
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* Test to get data asWKT
|
||
*
|
||
* @dataProvider dataProviderAsWKT
|
||
*
|
||
* @param string $expectedQuery The query to expect
|
||
* @param array $returnData The data to return for fetchRow
|
||
* @param string $functionResult Result of the Util::asWKT invocation
|
||
* @param bool $SRIDOption Use the SRID option or not
|
||
* @param int $mysqlVersion The mysql version to return for getVersion
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testAsWKT(
|
||
string $expectedQuery,
|
||
array $returnData,
|
||
string $functionResult,
|
||
bool $SRIDOption,
|
||
int $mysqlVersion
|
||
): void {
|
||
$oldDbi = $GLOBALS['dbi'];
|
||
$dbi = $this->getMockBuilder(DatabaseInterface::class)
|
||
->disableOriginalConstructor()
|
||
->getMock();
|
||
|
||
$dbi->expects($SRIDOption ? $this->once() : $this->exactly(2))
|
||
->method('getVersion')
|
||
->will($this->returnValue($mysqlVersion));
|
||
|
||
$dbi->expects($SRIDOption ? $this->once() : $this->exactly(2))
|
||
->method('tryQuery')
|
||
->with($expectedQuery)
|
||
->will($this->returnValue([
|
||
// Omit the real object
|
||
]));
|
||
|
||
$dbi->expects($SRIDOption ? $this->once() : $this->exactly(2))
|
||
->method('fetchRow')
|
||
->will($this->returnValue($returnData));
|
||
|
||
$GLOBALS['dbi'] = $dbi;
|
||
|
||
if (! $SRIDOption) {
|
||
// Also test default signature
|
||
$this->assertSame($functionResult, Util::asWKT(
|
||
hex2bin('000000000101000000000000000000F03F000000000000F03F')
|
||
));
|
||
}
|
||
$this->assertSame($functionResult, Util::asWKT(
|
||
hex2bin('000000000101000000000000000000F03F000000000000F03F'),
|
||
$SRIDOption
|
||
));
|
||
|
||
$GLOBALS['dbi'] = $oldDbi;
|
||
}
|
||
}
|