如何对Joomla 2.5组件进行单元测试
2022-08-30 23:49:52
有人可以举个例子来说明如何对Joomla 2.5组件进行单元测试吗?我正在研究这个joomla mvc组件示例,其中不包括单元测试,我无法在任何地方找到完整的示例。我的主要问题是:
- 组件测试代码的位置
- 如何运行组件单元测试
- 我的测试代码是否正确
Joomla文档似乎不完整且支离破碎 - 我已经阅读了我在单元测试中可以找到的内容(由于代表率低而无法发布链接),这似乎是关于测试Joomla本身而不是扩展。我发现的最接近的是这个,这是我基于我的虚拟测试。
到目前为止我做了什么
组件目录结构:
- 你好世界/
- 管理员/
- ...
- 测试/
- 引导.php
- phpunit.xml
- 模型你好世界测试.php
- 网站/
- ...
- 你好世界.xml
- 管理员/
为了运行测试,我将组件安装/复制到我的Joomla安装中。然后,我从~joomla/administration/components/com_helloworld/tests运行以下命令:
php phpunit-4.2.phar --bootstrap bootstrap.php .
我从中收到
Fatal error: Class 'ContentController' not found in C:\inetpub\wwwroot\ws_cairnstest\administrator\components\com_helloworld\tests\modelsHelloWorldsTest.php on line 5
bootstrap.php:
<?php
error_reporting(E_ALL);
define('_JEXEC', 1);
define('BASEPATH',realpath(dirname(__FILE__).'/../../'));
define('JOOMLA_PATH',realpath(dirname(__FILE__).'/../../../../../'));
define('JOOMLA_ADMIN_PATH',realpath(dirname(__FILE__).'/../../../../'));
$_SERVER['HTTP_HOST'] = 'localhost';
$_SERVER['REQUEST_METHOD'] = 'GET';
if (file_exists(JOOMLA_ADMIN_PATH . '/defines.php'))
{
include_once JOOMLA_ADMIN_PATH . '/defines.php';
}
if (!defined('_JDEFINES'))
{
define('JPATH_BASE', JOOMLA_ADMIN_PATH);
require_once JPATH_BASE . '/includes/defines.php';
}
require_once JPATH_BASE . '/includes/framework.php';
require_once JPATH_BASE . '/includes/helper.php';
require_once JPATH_BASE . '/includes/toolbar.php';
define('JPATH_COMPONENT',JOOMLA_ADMIN_PATH.'/components/com_content');
$app = JFactory::getApplication('administrator');
include BASEPATH.'/controller.php';
模型你好世界测试.php:
<?php
class HelloWorldsTest extends \PHPUnit_Framework_TestCase {
public function testList(){
$c = new ContentController();
$model = $c->getModel('helloworlds');
$worlds = $model->getItems();
var_dump($worlds);
$this->assertNotEmpty($worlds);
}
}
phpunit.xml:
<phpunit bootstrap="bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
verbose="true">
</phpunit>