mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Merge remote-tracking branch 'remotes/Marc/ticket/11465' into develop
# By Marc Alexander (8) and Joas Schilling (3) # Via Marc Alexander * remotes/Marc/ticket/11465: [ticket/11465] Increase count of disabled extensions to 5 in functional test [ticket/11465] Add disabled ext to allow proper testing of get_module_infos() [ticket/11465] Add tests for optional arguments of get_module_infos() [ticket/11465] Add comments explaining the tests [ticket/11465] Check if class exists before including info file [ticket/11465] Correctly set the root path for the test [ticket/11465] The info file does not have _info suffix [ticket/11465] Add phpBB module to test [ticket/11465] Move require_once() in unit test to the top of the file [ticket/11465] Add unit tests for acp_modules::get_module_infos() [ticket/11465] Use extension finder when adding extensions' acp modules
This commit is contained in:
commit
f93a750f28
15 changed files with 370 additions and 50 deletions
|
@ -544,17 +544,13 @@ class acp_modules
|
||||||
*/
|
*/
|
||||||
function get_module_infos($module = '', $module_class = false, $use_all_available = false)
|
function get_module_infos($module = '', $module_class = false, $use_all_available = false)
|
||||||
{
|
{
|
||||||
global $phpbb_root_path, $phpEx;
|
global $phpbb_extension_manager, $phpbb_root_path, $phpEx;
|
||||||
|
|
||||||
$module_class = ($module_class === false) ? $this->module_class : $module_class;
|
$module_class = ($module_class === false) ? $this->module_class : $module_class;
|
||||||
|
|
||||||
$directory = $phpbb_root_path . 'includes/' . $module_class . '/info/';
|
$directory = $phpbb_root_path . 'includes/' . $module_class . '/info/';
|
||||||
$fileinfo = array();
|
$fileinfo = array();
|
||||||
|
|
||||||
if (!$module)
|
|
||||||
{
|
|
||||||
global $phpbb_extension_manager;
|
|
||||||
|
|
||||||
$finder = $phpbb_extension_manager->get_finder();
|
$finder = $phpbb_extension_manager->get_finder();
|
||||||
|
|
||||||
$modules = $finder
|
$modules = $finder
|
||||||
|
@ -564,9 +560,16 @@ class acp_modules
|
||||||
->core_prefix($module_class . '_')
|
->core_prefix($module_class . '_')
|
||||||
->get_classes(true, $use_all_available);
|
->get_classes(true, $use_all_available);
|
||||||
|
|
||||||
foreach ($modules as $module)
|
foreach ($modules as $cur_module)
|
||||||
{
|
{
|
||||||
$info_class = preg_replace('/_module$/', '_info', $module);
|
// Skip entries we do not need if we know the module we are
|
||||||
|
// looking for
|
||||||
|
if ($module && strpos($cur_module, $module) === false)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$info_class = preg_replace('/_module$/', '_info', $cur_module);
|
||||||
|
|
||||||
// If the class does not exist it might be following the old
|
// If the class does not exist it might be following the old
|
||||||
// format. phpbb_acp_info_acp_foo needs to be turned into
|
// format. phpbb_acp_info_acp_foo needs to be turned into
|
||||||
|
@ -574,10 +577,11 @@ class acp_modules
|
||||||
// manually because it does not support auto loading
|
// manually because it does not support auto loading
|
||||||
if (!class_exists($info_class))
|
if (!class_exists($info_class))
|
||||||
{
|
{
|
||||||
$info_class = str_replace("phpbb_{$module_class}_info_", '', $module) . '_info';
|
$info_class_file = str_replace("phpbb_{$module_class}_info_", '', $cur_module);
|
||||||
if (file_exists($directory . $info_class . '.' . $phpEx))
|
$info_class = $info_class_file . '_info';
|
||||||
|
if (!class_exists($info_class) && file_exists($directory . $info_class_file . '.' . $phpEx))
|
||||||
{
|
{
|
||||||
include($directory . $info_class . '.' . $phpEx);
|
include($directory . $info_class_file . '.' . $phpEx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -586,38 +590,13 @@ class acp_modules
|
||||||
$info = new $info_class();
|
$info = new $info_class();
|
||||||
$module_info = $info->module();
|
$module_info = $info->module();
|
||||||
|
|
||||||
$main_class = (isset($module_info['filename'])) ? $module_info['filename'] : $module;
|
$main_class = (isset($module_info['filename'])) ? $module_info['filename'] : $cur_module;
|
||||||
|
|
||||||
$fileinfo[$main_class] = $module_info;
|
$fileinfo[$main_class] = $module_info;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ksort($fileinfo);
|
ksort($fileinfo);
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$info_class = preg_replace('/_module$/', '_info', $module);
|
|
||||||
|
|
||||||
if (!class_exists($info_class))
|
|
||||||
{
|
|
||||||
$info_class = $module . '_info';
|
|
||||||
if (!class_exists($info_class) && file_exists($directory . $module . '.' . $phpEx))
|
|
||||||
{
|
|
||||||
include($directory . $module . '.' . $phpEx);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get module title tag
|
|
||||||
if (class_exists($info_class))
|
|
||||||
{
|
|
||||||
$info = new $info_class();
|
|
||||||
$module_info = $info->module();
|
|
||||||
|
|
||||||
$main_class = (isset($module_info['filename'])) ? $module_info['filename'] : $module;
|
|
||||||
|
|
||||||
$fileinfo[$main_class] = $module_info;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $fileinfo;
|
return $fileinfo;
|
||||||
}
|
}
|
||||||
|
|
16
tests/extension/ext/barfoo/acp/a_info.php
Normal file
16
tests/extension/ext/barfoo/acp/a_info.php
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class phpbb_ext_barfoo_acp_a_info
|
||||||
|
{
|
||||||
|
public function module()
|
||||||
|
{
|
||||||
|
return array(
|
||||||
|
'filename' => 'phpbb_ext_barfoo_acp_a_module',
|
||||||
|
'title' => 'Barfoo',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
5
tests/extension/ext/barfoo/acp/a_module.php
Normal file
5
tests/extension/ext/barfoo/acp/a_module.php
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class phpbb_ext_barfoo_acp_a_module
|
||||||
|
{
|
||||||
|
}
|
5
tests/extension/ext/barfoo/ext.php
Normal file
5
tests/extension/ext/barfoo/ext.php
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class phpbb_ext_barfoo_ext extends phpbb_extension_base
|
||||||
|
{
|
||||||
|
}
|
16
tests/extension/ext/foo/acp/a_info.php
Normal file
16
tests/extension/ext/foo/acp/a_info.php
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class phpbb_ext_foo_acp_a_info
|
||||||
|
{
|
||||||
|
public function module()
|
||||||
|
{
|
||||||
|
return array(
|
||||||
|
'filename' => 'phpbb_ext_foo_acp_a_module',
|
||||||
|
'title' => 'Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
5
tests/extension/ext/foo/acp/a_module.php
Normal file
5
tests/extension/ext/foo/acp/a_module.php
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class phpbb_ext_foo_acp_a_module
|
||||||
|
{
|
||||||
|
}
|
19
tests/extension/ext/foo/acp/fail_info.php
Normal file
19
tests/extension/ext/foo/acp/fail_info.php
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Due to the mismatch between the class name and the file name, this module
|
||||||
|
* file shouldn't be found by the extension finder
|
||||||
|
*/
|
||||||
|
class phpbb_ext_foo_acp_foo_info
|
||||||
|
{
|
||||||
|
public function module()
|
||||||
|
{
|
||||||
|
return array(
|
||||||
|
'filename' => 'phpbb_ext_foo_acp_fail_module',
|
||||||
|
'title' => 'Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
8
tests/extension/ext/foo/acp/fail_module.php
Normal file
8
tests/extension/ext/foo/acp/fail_module.php
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Due to the mismatch between the class name and the file name of the module
|
||||||
|
* info file, this module's info file shouldn't be found
|
||||||
|
*/
|
||||||
|
class phpbb_ext_foo_acp_fail_module
|
||||||
|
{
|
||||||
|
}
|
16
tests/extension/ext/foo/mcp/a_info.php
Normal file
16
tests/extension/ext/foo/mcp/a_info.php
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class phpbb_ext_foo_mcp_a_info
|
||||||
|
{
|
||||||
|
public function module()
|
||||||
|
{
|
||||||
|
return array(
|
||||||
|
'filename' => 'phpbb_ext_foo_mcp_a_module',
|
||||||
|
'title' => 'Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('MCP_MAIN')),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
5
tests/extension/ext/foo/mcp/a_module.php
Normal file
5
tests/extension/ext/foo/mcp/a_module.php
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class phpbb_ext_foo_mcp_a_module
|
||||||
|
{
|
||||||
|
}
|
28
tests/extension/includes/acp/acp_foobar.php
Normal file
28
tests/extension/includes/acp/acp_foobar.php
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package testing
|
||||||
|
* @copyright (c) 2013 phpBB Group
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ignore
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @package acp
|
||||||
|
*/
|
||||||
|
class acp_foobar
|
||||||
|
{
|
||||||
|
var $u_action;
|
||||||
|
|
||||||
|
function main($id, $mode)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
26
tests/extension/includes/acp/info/acp_foobar.php
Normal file
26
tests/extension/includes/acp/info/acp_foobar.php
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package testing
|
||||||
|
* @copyright (c) 2013 phpBB Group
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @package module_install
|
||||||
|
*/
|
||||||
|
class acp_foobar_info
|
||||||
|
{
|
||||||
|
function module()
|
||||||
|
{
|
||||||
|
return array(
|
||||||
|
'filename' => 'acp_foobar',
|
||||||
|
'title' => 'ACP Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'test' => array('title' => 'Test', 'auth' => '', 'cat' => array('ACP_GENERAL')),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -30,7 +30,7 @@ class phpbb_extension_manager_test extends phpbb_database_test_case
|
||||||
|
|
||||||
public function test_available()
|
public function test_available()
|
||||||
{
|
{
|
||||||
$this->assertEquals(array('bar', 'foo', 'vendor/moo'), array_keys($this->extension_manager->all_available()));
|
$this->assertEquals(array('bar', 'barfoo', 'foo', 'vendor/moo'), array_keys($this->extension_manager->all_available()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_enabled()
|
public function test_enabled()
|
||||||
|
|
192
tests/extension/modules_test.php
Normal file
192
tests/extension/modules_test.php
Normal file
|
@ -0,0 +1,192 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package testing
|
||||||
|
* @copyright (c) 2013 phpBB Group
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
require_once dirname(__FILE__) . '/ext/foo/acp/a_info.php';
|
||||||
|
require_once dirname(__FILE__) . '/ext/foo/mcp/a_info.php';
|
||||||
|
require_once dirname(__FILE__) . '/ext/foo/acp/fail_info.php';
|
||||||
|
require_once dirname(__FILE__) . '/ext/barfoo/acp/a_info.php';
|
||||||
|
require_once dirname(__FILE__) . '/../../phpBB/includes/acp/acp_modules.php';
|
||||||
|
|
||||||
|
class phpbb_extension_modules_test extends phpbb_test_case
|
||||||
|
{
|
||||||
|
protected $extension_manager;
|
||||||
|
protected $finder;
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
global $phpbb_extension_manager;
|
||||||
|
|
||||||
|
$this->extension_manager = new phpbb_mock_extension_manager(
|
||||||
|
dirname(__FILE__) . '/',
|
||||||
|
array(
|
||||||
|
'foo' => array(
|
||||||
|
'ext_name' => 'foo',
|
||||||
|
'ext_active' => '1',
|
||||||
|
'ext_path' => 'ext/foo/',
|
||||||
|
),
|
||||||
|
'bar' => array(
|
||||||
|
'ext_name' => 'bar',
|
||||||
|
'ext_active' => '1',
|
||||||
|
'ext_path' => 'ext/bar/',
|
||||||
|
),
|
||||||
|
));
|
||||||
|
$phpbb_extension_manager = $this->extension_manager;
|
||||||
|
|
||||||
|
$this->acp_modules = new acp_modules();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function test_get_module_infos()
|
||||||
|
{
|
||||||
|
global $phpbb_root_path;
|
||||||
|
|
||||||
|
// Correctly set the root path for this test to this directory, so the classes can be found
|
||||||
|
$phpbb_root_path = dirname(__FILE__) . '/';
|
||||||
|
|
||||||
|
// Find acp module info files
|
||||||
|
$this->acp_modules->module_class = 'acp';
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos();
|
||||||
|
$this->assertEquals(array(
|
||||||
|
'phpbb_ext_foo_acp_a_module' => array(
|
||||||
|
'filename' => 'phpbb_ext_foo_acp_a_module',
|
||||||
|
'title' => 'Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
'acp_foobar' => array(
|
||||||
|
'filename' => 'acp_foobar',
|
||||||
|
'title' => 'ACP Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'test' => array('title' => 'Test', 'auth' => '', 'cat' => array('ACP_GENERAL')),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
), $acp_modules);
|
||||||
|
|
||||||
|
// Find mcp module info files
|
||||||
|
$this->acp_modules->module_class = 'mcp';
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos();
|
||||||
|
$this->assertEquals(array(
|
||||||
|
'phpbb_ext_foo_mcp_a_module' => array(
|
||||||
|
'filename' => 'phpbb_ext_foo_mcp_a_module',
|
||||||
|
'title' => 'Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('MCP_MAIN')),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
), $acp_modules);
|
||||||
|
|
||||||
|
// Find a specific module info file (mcp_a_module)
|
||||||
|
$this->acp_modules->module_class = 'mcp';
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos('mcp_a_module');
|
||||||
|
$this->assertEquals(array(
|
||||||
|
'phpbb_ext_foo_mcp_a_module' => array(
|
||||||
|
'filename' => 'phpbb_ext_foo_mcp_a_module',
|
||||||
|
'title' => 'Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('MCP_MAIN')),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
), $acp_modules);
|
||||||
|
|
||||||
|
// Find a specific module info file (mcp_a_module) with passing the module_class
|
||||||
|
$this->acp_modules->module_class = '';
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos('mcp_a_module', 'mcp');
|
||||||
|
$this->assertEquals(array(
|
||||||
|
'phpbb_ext_foo_mcp_a_module' => array(
|
||||||
|
'filename' => 'phpbb_ext_foo_mcp_a_module',
|
||||||
|
'title' => 'Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('MCP_MAIN')),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
), $acp_modules);
|
||||||
|
|
||||||
|
// The mcp module info file we're looking for shouldn't exist
|
||||||
|
$this->acp_modules->module_class = 'mcp';
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos('mcp_a_fail');
|
||||||
|
$this->assertEquals(array(), $acp_modules);
|
||||||
|
|
||||||
|
// As there are no ucp modules we shouldn't find any
|
||||||
|
$this->acp_modules->module_class = 'ucp';
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos();
|
||||||
|
$this->assertEquals(array(), $acp_modules);
|
||||||
|
|
||||||
|
// Get module info of specified extension module
|
||||||
|
$this->acp_modules->module_class = 'acp';
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos('phpbb_ext_foo_acp_a_module');
|
||||||
|
$this->assertEquals(array(
|
||||||
|
'phpbb_ext_foo_acp_a_module' => array (
|
||||||
|
'filename' => 'phpbb_ext_foo_acp_a_module',
|
||||||
|
'title' => 'Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array (
|
||||||
|
'config' => array ('title' => 'Config', 'auth' => '', 'cat' => array ('ACP_MODS')),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
), $acp_modules);
|
||||||
|
|
||||||
|
// No specific module and module class set to an incorrect name
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos('', 'wcp', true);
|
||||||
|
$this->assertEquals(array(), $acp_modules);
|
||||||
|
|
||||||
|
// No specific module, no module_class set in the function parameter, and an incorrect module class
|
||||||
|
$this->acp_modules->module_class = 'wcp';
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos();
|
||||||
|
$this->assertEquals(array(), $acp_modules);
|
||||||
|
|
||||||
|
// No specific module, module class set to false (will default to the above acp)
|
||||||
|
// Setting $use_all_available will cause get_module_infos() to also load not enabled extensions (barfoo)
|
||||||
|
$this->acp_modules->module_class = 'acp';
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos('', false, true);
|
||||||
|
$this->assertEquals(array(
|
||||||
|
'phpbb_ext_foo_acp_a_module' => array(
|
||||||
|
'filename' => 'phpbb_ext_foo_acp_a_module',
|
||||||
|
'title' => 'Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
'acp_foobar' => array(
|
||||||
|
'filename' => 'acp_foobar',
|
||||||
|
'title' => 'ACP Foobar',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'test' => array('title' => 'Test', 'auth' => '', 'cat' => array('ACP_GENERAL')),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
'phpbb_ext_barfoo_acp_a_module' => array(
|
||||||
|
'filename' => 'phpbb_ext_barfoo_acp_a_module',
|
||||||
|
'title' => 'Barfoo',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
), $acp_modules);
|
||||||
|
|
||||||
|
// Specific module set to disabled extension
|
||||||
|
$acp_modules = $this->acp_modules->get_module_infos('phpbb_ext_barfoo_acp_a_module', 'acp', true);
|
||||||
|
$this->assertEquals(array(
|
||||||
|
'phpbb_ext_barfoo_acp_a_module' => array(
|
||||||
|
'filename' => 'phpbb_ext_barfoo_acp_a_module',
|
||||||
|
'title' => 'Barfoo',
|
||||||
|
'version' => '3.1.0-dev',
|
||||||
|
'modes' => array(
|
||||||
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
), $acp_modules);
|
||||||
|
}
|
||||||
|
}
|
|
@ -112,7 +112,7 @@ class phpbb_functional_extension_acp_test extends phpbb_functional_test_case
|
||||||
$crawler = $this->request('GET', 'adm/index.php?i=acp_extensions&mode=main&sid=' . $this->sid);
|
$crawler = $this->request('GET', 'adm/index.php?i=acp_extensions&mode=main&sid=' . $this->sid);
|
||||||
|
|
||||||
$this->assertCount(1, $crawler->filter('.ext_enabled'));
|
$this->assertCount(1, $crawler->filter('.ext_enabled'));
|
||||||
$this->assertCount(4, $crawler->filter('.ext_disabled'));
|
$this->assertCount(5, $crawler->filter('.ext_disabled'));
|
||||||
|
|
||||||
$this->assertContains('phpBB Foo Extension', $crawler->filter('.ext_enabled')->eq(0)->text());
|
$this->assertContains('phpBB Foo Extension', $crawler->filter('.ext_enabled')->eq(0)->text());
|
||||||
$this->assertContainsLang('PURGE', $crawler->filter('.ext_enabled')->eq(0)->text());
|
$this->assertContainsLang('PURGE', $crawler->filter('.ext_enabled')->eq(0)->text());
|
||||||
|
|
Loading…
Add table
Reference in a new issue