62 lines
1.3 KiB
PHP
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'] = array('x');
|
|
$_GET['scripts'] = '["ajax.js"]';
|
|
$cfg = array(
|
|
'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 array(
|
|
array('js/whitelist.php', 'var PMA_gotoWhitelist'),
|
|
array('js/messages.php', 'var PMA_messages = new Array();'),
|
|
);
|
|
}
|
|
}
|