mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/12006] Test for ext module auth
PHPBB3-12006
This commit is contained in:
parent
05cf83aca7
commit
6ab12c1779
2 changed files with 42 additions and 4 deletions
|
@ -11,7 +11,7 @@ class a_info
|
|||
'title' => 'Foobar',
|
||||
'version' => '3.1.0-dev',
|
||||
'modes' => array(
|
||||
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||
'config' => array('title' => 'Config', 'auth' => 'ext_vendor2/foo', 'cat' => array('ACP_MODS')),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@ require_once dirname(__FILE__) . '/ext/vendor2/foo/mcp/a_info.php';
|
|||
require_once dirname(__FILE__) . '/ext/vendor2/foo/acp/fail_info.php';
|
||||
require_once dirname(__FILE__) . '/ext/vendor2/bar/acp/a_info.php';
|
||||
require_once dirname(__FILE__) . '/../../phpBB/includes/acp/acp_modules.php';
|
||||
require_once dirname(__FILE__) . '/../../phpBB/includes/functions_module.php';
|
||||
|
||||
class phpbb_extension_modules_test extends phpbb_test_case
|
||||
{
|
||||
|
@ -59,7 +60,7 @@ class phpbb_extension_modules_test extends phpbb_test_case
|
|||
'title' => 'Foobar',
|
||||
'version' => '3.1.0-dev',
|
||||
'modes' => array(
|
||||
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||
'config' => array('title' => 'Config', 'auth' => 'ext_vendor2/foo', 'cat' => array('ACP_MODS')),
|
||||
),
|
||||
),
|
||||
'acp_foobar' => array(
|
||||
|
@ -133,7 +134,7 @@ class phpbb_extension_modules_test extends phpbb_test_case
|
|||
'title' => 'Foobar',
|
||||
'version' => '3.1.0-dev',
|
||||
'modes' => array (
|
||||
'config' => array ('title' => 'Config', 'auth' => '', 'cat' => array ('ACP_MODS')),
|
||||
'config' => array ('title' => 'Config', 'auth' => 'ext_vendor2/foo', 'cat' => array ('ACP_MODS')),
|
||||
),
|
||||
),
|
||||
), $acp_modules);
|
||||
|
@ -157,7 +158,7 @@ class phpbb_extension_modules_test extends phpbb_test_case
|
|||
'title' => 'Foobar',
|
||||
'version' => '3.1.0-dev',
|
||||
'modes' => array(
|
||||
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||
'config' => array('title' => 'Config', 'auth' => 'ext_vendor2/foo', 'cat' => array('ACP_MODS')),
|
||||
),
|
||||
),
|
||||
'acp_foobar' => array(
|
||||
|
@ -191,4 +192,41 @@ class phpbb_extension_modules_test extends phpbb_test_case
|
|||
)
|
||||
), $acp_modules);
|
||||
}
|
||||
|
||||
public function module_auth_test_data()
|
||||
{
|
||||
return array(
|
||||
// module_auth, expected result
|
||||
array('ext_foo', false),
|
||||
array('ext_foo/bar', false),
|
||||
array('ext_vendor3/bar', false),
|
||||
array('ext_vendor2/foo', true),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider module_auth_test_data
|
||||
*/
|
||||
public function test_modules_auth($module_auth, $expected)
|
||||
{
|
||||
global $phpbb_extension_manager;
|
||||
|
||||
$phpbb_extension_manager = $this->extension_manager = new phpbb_mock_extension_manager(
|
||||
dirname(__FILE__) . '/',
|
||||
array(
|
||||
'vendor2/foo' => array(
|
||||
'ext_name' => 'vendor2/foo',
|
||||
'ext_active' => '1',
|
||||
'ext_path' => 'ext/vendor2/foo/',
|
||||
),
|
||||
'vendor3/bar' => array(
|
||||
'ext_name' => 'vendor3/bar',
|
||||
'ext_active' => '0',
|
||||
'ext_path' => 'ext/vendor3/bar/',
|
||||
),
|
||||
)
|
||||
);
|
||||
|
||||
$this->assertEquals($expected, p_master::module_auth($module_auth, 0));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue