如何对Joomla 2.5组件进行单元测试

时间:2014-09-22 06:11:42

标签: php unit-testing joomla joomla2.5

有人可以举例说明如何对Joomla 2.5组件进行单元测试吗?我正在完成this joomla mvc component example,但不包括单元测试,我无法在任何地方找到完整的示例。我的主要问题是:

  • 放置组件测试代码的位置
  • 如何运行组件单元测试
  • 我的测试代码是否正确

Joomla文档似乎不完整且支离破碎 - 我已经阅读了我在单元测试中可以找到的内容(由于低代表而无法发布链接),这似乎是关于测试Joomla本身而不是扩展。我发现的最接近的是this,我的虚拟测试基于此。

到目前为止我做了什么

组件目录结构:

  • 的HelloWorld /
    • 管理员/
      • ...
      • 测试/
        • bootstrap.php中
        • phpunit.xml
        • modelHelloWorldsTest.php
    • 站点/
      • ...
    • helloworld.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';

modelsHelloWorldsTest.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>

1 个答案:

答案 0 :(得分:0)

通常编写Joomla的单元测试以使用PHP单元框架

回答你的问题 将组件测试代码放在哪里:位于您的仓库顶层,如下所示

组件repo目录结构:

  • SRC
    • 管理员/
    • 站点/
  • 测试

如何运行组件单元测试:测试执行遵循此模式

vendor/bin/phpunit --configuration phpunit.xml

其他详细信息可以在php单元文档https://phpunit.de/documentation.html

中找到

您的测试代码是否正确:

您未能使用getMockBuilder()模拟您的类和方法进行测试。

以下是一些要查看的示例