我正在开发一个具有通用文件夹结构的Zend Framework 2应用程序,因此文件夹/vendor
包含所有(项目外部)库。设置单元测试环境我希望能够运行所有供应商测试。文件夹结构因库而异。有些软件包根本没有测试。
一种可能的解决方案是创建一个测试套件“供应商”并手动定义每个测试文件夹的路径,例如:
phpunit.xml
<?xml version="1.0" encoding="UTF-8"?>
<phpunit ...>
<testsuites>
<testsuite name="vendor">
<directory>../vendor/lib-foo/path/to/tests</directory>
<directory>../vendor/package-bar/path/to/tests</directory>
...
</testsuite>
...
</testsuites>
...
</phpunit>
我不喜欢这个解决方案。首先,因为那时我必须手动处理每个包。
另一种解决方案是将/vendor
定义为测试文件夹:
phpunit.xml
<?xml version="1.0" encoding="UTF-8"?>
<phpunit ...>
<testsuites>
<testsuite name="vendor">
<directory>../vendor</directory>
...
</testsuite>
...
</testsuites>
...
</phpunit>
好吧,但是PHPUnit必须扫描很多不需要的文件夹,测试需要更多的时间。
是否有更好的解决方案,可以自动化流程并避免手动配置?
答案 0 :(得分:1)
通过单次测试运行可能很难运行所有PHPUnit供应商测试套件。一个问题是每个不同的测试套件可能会发送自己的配置文件,甚至需要自定义的 bootstrap 配置文件。使用单个命令运行所有测试套件时,无法涵盖这一点。
我可能会使用一些shell魔法。请注意,此示例依赖于每个第三方软件包中存在phpunit.xml(.dist)
文件(对于大多数库而言,这是一个合理的假设)。您甚至可以将其集成到持续集成过程中以持续测试:
for FILE in $(find . -name 'phpunit.xml*') ; do
sh -c 'cd '$(dirname $FILE)' && composer install'
vendor/bin/phpunit -c $FILE
done