如何让PHPUnit忽略文件模式?

时间:2015-06-16 11:24:17

标签: php zend-framework2 phpunit

我正在为项目执行代码覆盖率报告,并且在运行测试时包含或需要大量文件,这些文件实际上并不需要测试或添加到覆盖率报告中(我正在使用Zend Framework 2;配置+模块文件是罪魁祸首。

是否有 easy 方式来忽略文件模式modules/*/Module.php

这是我的黑名单:

<filter>
    <blacklist>
        <directory>config</directory>
        <directory>vendor</directory>
        <directory>module/*/config</directory>
    </blacklist>
</filter>

但是,添加<file>module/*/Module.php</file>对html代码覆盖率报告没有影响;添加它对于在覆盖率报告中包含Module.php文件没有任何影响。

使用通常的

在phpunit bootstrap.php文件中启动Zend Framework
Application::init(require "config/application.test.php")

如果没有将每个模块的Module.php文件添加到黑名单,那么PHPUnit是否可以实际正确地执行此操作?我不是在寻找在PHPUnit的测试用例中使用setUp方法的答案;我正在寻找配置。

我正在使用PHPUnit 4.7 + 4.8。

2 个答案:

答案 0 :(得分:2)

你在哪里添加文件标签?

这是我为我工作的foo.conf标记。

blacklist

我有这个结构:

<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    bootstrap="Bootstrap.php"
    colors="true"
    stopOnError="true"
    stopOnFailure="false"
    strict="true"
    verbose="true">
    <testsuites>
        <testsuite name="All Modules">
            <directory>../module/*/tests/*Test</directory>
        </testsuite>
    </testsuites>
   <filter>
        <blacklist>
            <directory suffix=".php">../vendor</directory>
            <directory suffix=".php">../config</directory>
            <directory suffix=".php">../data</directory>
            <directory suffix=".php">../module/*/src/*/Controller</directory>
            <file>../module/*/Module.php</file>
            <file>../module/*/src/*/Factory/*ControllerFactory.php</file>
            <directory suffix=".php">../module/*/tests/*</directory>
        </blacklist>
    </filter>
    <php>
        <ini name="memory_limit" value="2047M" />
    </php>
    <logging>
      <log type="coverage-html" target="../build/tests/coverage/" charset="UTF-8"
           yui="true" highlight="false"
           lowUpperBound="35" highLowerBound="70"/>
      <log type="coverage-clover" target="../build/tests/clover.xml"/>
      <log type="junit" target="../build/tests/junit.xml" logIncompleteSkipped="false"/>
    </logging>
</phpunit>

答案 1 :(得分:2)

因此,为了排除多个具有相同名称的文件,<file>通常不会做任何事情,因为它只会完全匹配单个文件。

解决方案是使用<directory>,但要使用后缀属性;

<phpunit
    bootstrap="tests/bootstrap.php"
    colors="true"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true">
    <testsuites>
        <testsuite name="Test Suite">
            <!-- functional tests -->
            <directory>tests</directory>
            <!-- unit tests -->
            <directory>module/*/test</directory>
        </testsuite>
    </testsuites>

    <!-- ignore folders for code coverage -->
    <filter>
        <blacklist>
            <directory>config</directory>
            <directory>vendor</directory>
            <directory>module/*/config</directory>
            <directory suffix="Module.php">module/*</directory>
        </blacklist>
    </filter>
</phpunit>

<directory suffix="Module.php">module/*</directory>将匹配在模块目录顶层Module.php内结尾的多个文件,包括Module.php本身。

由于Zend Framework 2中没有任何其他php文件存在于该目录中,因此它似乎是最好的方法。