phpmyadmin/test/libraries/FilesTest.php
Maurício Meneghini Fauth b9c0463d96 Use short array syntax instead of long array syntax
Replaces array() with [].

Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2018-05-30 01:42:21 -03:00

62 lines
1.3 KiB
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* tests for bookmark.lib.php
*
* @package PhpMyAdmin-test
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PHPUnit\Framework\TestCase;
/**
* tests for bookmark.lib.php
*
* @package PhpMyAdmin-test
*/
class FilesTest extends TestCase
{
/**
* Test for dynamic javascript files
*
* @param string $name Filename to test
* @param string $expected Expected output
*
* @return void
*
* @dataProvider listScripts
*/
public function testDynamicJs($name, $expected)
{
$GLOBALS['pmaThemeImage'] = '';
$GLOBALS['goto_whitelist'] = ['x'];
$_GET['scripts'] = '["ajax.js"]';
$cfg = [
'AllowUserDropDatabase' => true,
'GridEditing' => 'click',
'OBGzip' => false,
'ServerDefault' => 1,
];
$GLOBALS['cfg'] = $cfg;
require $name;
$buffer->stop();
$out = $buffer->getContents();
$this->assertContains($expected, $out);
}
/**
* Data provider for scripts testing
*
* @return array
*/
public function listScripts()
{
return [
['js/whitelist.php', 'var PMA_gotoWhitelist'],
['js/messages.php', 'var PMA_messages = new Array();'],
];
}
}