mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-18 14:48:28 +01:00
[ticket/11335] (tests) Make php_ext 'php' not '.php'
PHPBB3-11335
This commit is contained in:
parent
14f1340903
commit
df518ac131
@ -71,8 +71,8 @@ class phpbb_class_loader_test extends PHPUnit_Framework_TestCase
|
|||||||
$cache = new phpbb_mock_cache($cache_map);
|
$cache = new phpbb_mock_cache($cache_map);
|
||||||
|
|
||||||
$prefix = dirname(__FILE__) . '/';
|
$prefix = dirname(__FILE__) . '/';
|
||||||
$class_loader = new phpbb_class_loader('phpbb_', $prefix . 'includes/', '.php', $cache);
|
$class_loader = new phpbb_class_loader('phpbb_', $prefix . 'includes/', 'php', $cache);
|
||||||
$class_loader_ext = new phpbb_class_loader('phpbb_ext_', $prefix . 'includes/', '.php', $cache);
|
$class_loader_ext = new phpbb_class_loader('phpbb_ext_', $prefix . 'includes/', 'php', $cache);
|
||||||
|
|
||||||
$prefix .= 'includes/';
|
$prefix .= 'includes/';
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ class phpbb_controller_helper_url_test extends phpbb_test_case
|
|||||||
$this->user = $this->getMock('phpbb_user');
|
$this->user = $this->getMock('phpbb_user');
|
||||||
$this->template = new phpbb_template($phpbb_root_path, $phpEx, $config, $this->user, $this->style_resource_locator, new phpbb_template_context());
|
$this->template = new phpbb_template($phpbb_root_path, $phpEx, $config, $this->user, $this->style_resource_locator, new phpbb_template_context());
|
||||||
|
|
||||||
$helper = new phpbb_controller_helper($this->template, $this->user, '', '.php');
|
$helper = new phpbb_controller_helper($this->template, $this->user, '', 'php');
|
||||||
$this->assertEquals($helper->url($route, $params, $is_amp, $session_id), $expected);
|
$this->assertEquals($helper->url($route, $params, $is_amp, $session_id), $expected);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,7 @@ class phpbb_dbal_migrator_test extends phpbb_database_test_case
|
|||||||
new phpbb_filesystem(),
|
new phpbb_filesystem(),
|
||||||
'phpbb_ext',
|
'phpbb_ext',
|
||||||
dirname(__FILE__) . '/../../phpBB/',
|
dirname(__FILE__) . '/../../phpBB/',
|
||||||
'.php',
|
'php',
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -164,7 +164,7 @@ class phpbb_extension_finder_test extends phpbb_test_case
|
|||||||
public function test_get_classes_create_cache()
|
public function test_get_classes_create_cache()
|
||||||
{
|
{
|
||||||
$cache = new phpbb_mock_cache;
|
$cache = new phpbb_mock_cache;
|
||||||
$finder = new phpbb_extension_finder($this->extension_manager, new phpbb_filesystem(), dirname(__FILE__) . '/', $cache, '.php', '_custom_cache_name');
|
$finder = new phpbb_extension_finder($this->extension_manager, new phpbb_filesystem(), dirname(__FILE__) . '/', $cache, 'php', '_custom_cache_name');
|
||||||
$files = $finder->suffix('_class.php')->get_files();
|
$files = $finder->suffix('_class.php')->get_files();
|
||||||
|
|
||||||
$expected_files = array(
|
$expected_files = array(
|
||||||
|
@ -36,7 +36,7 @@ class metadata_manager_test extends phpbb_database_test_case
|
|||||||
$this->db = $this->new_dbal();
|
$this->db = $this->new_dbal();
|
||||||
$this->db_tools = new phpbb_db_tools($this->db);
|
$this->db_tools = new phpbb_db_tools($this->db);
|
||||||
$this->phpbb_root_path = dirname(__FILE__) . '/';
|
$this->phpbb_root_path = dirname(__FILE__) . '/';
|
||||||
$this->phpEx = '.php';
|
$this->phpEx = 'php';
|
||||||
$this->user = new phpbb_user();
|
$this->user = new phpbb_user();
|
||||||
$this->table_prefix = 'phpbb_';
|
$this->table_prefix = 'phpbb_';
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ class phpbb_mock_extension_manager extends phpbb_extension_manager
|
|||||||
public function __construct($phpbb_root_path, $extensions = array())
|
public function __construct($phpbb_root_path, $extensions = array())
|
||||||
{
|
{
|
||||||
$this->phpbb_root_path = $phpbb_root_path;
|
$this->phpbb_root_path = $phpbb_root_path;
|
||||||
$this->php_ext = '.php';
|
$this->php_ext = 'php';
|
||||||
$this->extensions = $extensions;
|
$this->extensions = $extensions;
|
||||||
$this->filesystem = new phpbb_filesystem();
|
$this->filesystem = new phpbb_filesystem();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user