42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @package testing
|
|
* @copyright (c) Board3 Group ( www.board3.de )
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
require_once(dirname(__FILE__) . '/../../includes/functions.php');
|
|
require_once(dirname(__FILE__) . '/../../../../../includes/functions_acp.php');
|
|
|
|
class phpbb_functions_check_file_src_test extends \board3\portal\tests\testframework\database_test_case
|
|
{
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
global $db, $phpbb_root_path, $phpEx, $user;
|
|
$user = new phpbb_mock_user();
|
|
}
|
|
|
|
public function getDataSet()
|
|
{
|
|
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/styles.xml');
|
|
}
|
|
|
|
public function test_check_file_src()
|
|
{
|
|
$this->assertFalse(check_file_src('portal_attach.png', '', 15, false));
|
|
$this->assertEquals(': styles/prosilver/theme/images/portal/portal_foobar.png<br />', check_file_src('portal_foobar.png', '', 15, false));
|
|
}
|
|
|
|
public function test_check_file_src_error()
|
|
{
|
|
global $phpbb_dispatcher;
|
|
|
|
$phpbb_dispatcher = new phpbb_mock_event_dispatcher;
|
|
$this->setExpectedTriggerError(E_USER_WARNING);
|
|
$this->assertEquals(': styles/prosilver/theme/images/portal/portal_foobar.png<br />', check_file_src('portal_foobar.png', '', 15));
|
|
}
|
|
}
|