4

如何使用带有 phing 的引导文件运行 PHPUnit 测试套件?

我的应用程序结构:

application/
library/
tests/
  application/
  library/
  bootstrap.php
  phpunit.xml
build.xml

phpunit.xml:

<phpunit bootstrap="./bootstrap.php" colors="true">
    <testsuite name="Application Test Suite">
        <directory>./</directory>
    </testsuite>
    <filter>
        <whitelist>
            <directory
              suffix=".php">../library/</directory>
            <directory
              suffix=".php">../application/</directory>
            <exclude>
                <directory
                  suffix=".phtml">../application/</directory>
            </exclude>
        </whitelist>
    </filter>
</phpunit>

然后:

cd /path/to/app/tests/
phpunit
#all test passed

但是我如何从/path/to/app/dir 运行测试呢?问题是,这bootstrap.php取决于库和应用程序的相对路径。

如果我运行,phpunit --configuration tests/phpunit.xml /tests我会得到一堆文件未找到错误。

我如何编写build.xml文件以phing以相同的方式运行测试phpunit.xml

4

2 回答 2

4

我认为最好的方法是创建一个小的 PHP 脚本来初始化您的单元测试,我正在执行以下操作:

在我的 phpunit.xml/bootstrap="./initialize.php"

初始化.php

define('BASE_PATH', realpath(dirname(__FILE__) . '/../'));
define('APPLICATION_PATH', BASE_PATH . '/application');

// Include path
set_include_path(
    '.'
    . PATH_SEPARATOR . BASE_PATH . '/library'
    . PATH_SEPARATOR . get_include_path()
);

// Define application environment
define('APPLICATION_ENV', 'testing');
require_once 'BaseTest.php';

基本测试.php

abstract class BaseTest extends Zend_Test_PHPUnit_ControllerTestCase
{

/**
 * Application
 *
 * @var Zend_Application
 */
public $application;

/**
 * SetUp for Unit tests
 *
 * @return void
 */
public function setUp()
{
    $session = new Zend_Session_Namespace();
    $this->application = new Zend_Application(
                    APPLICATION_ENV,
                    APPLICATION_PATH . '/configs/application.ini'
    );

    $this->bootstrap = array($this, 'appBootstrap');

    Zend_Session::$_unitTestEnabled;

    parent::setUp();
}

/**
 * Bootstrap
 *
 * @return void
 */
public function appBootstrap()
{
    $this->application->bootstrap();
}
}

我所有的单元测试都在扩展 BaseTest 类,它就像一个魅力。

于 2010-09-10T14:32:19.623 回答
3

当你在 Phing 中使用 PHPUnit 任务时,你可以像这样包含你的引导文件:

<target name="test">
    <phpunit bootstrap="tests/bootstrap.php">
        <formatter type="summary" usefile="false" />
        <batchtest>
            <fileset dir="tests">
                <include name="**/*Test.php"/>
            </fileset>
        </batchtest>
    </phpunit> 
</target> 
于 2010-11-10T13:54:10.097 回答