我正在使用Symfony2(2.7.3)应用程序进行测试,并且页面控制器无法仅在从PHPUnit(4.8.6)发送请求时加载类 。
测试如下:
//AppBundle/Tests/Controller/PagesAvailableTest.php
<?php
namespace AppBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class PagesAvailableTest extends WebTestCase
{
public function testpages()
{
$client = static::createClient();
$client->request('GET', '/contact'); // Throws the error
}
}
并在使用$ phpunit -c app/
:
PHP致命错误:Class&#39; AppBundle \ Entity \ ContactMessage&#39;在第28行的 SymfonyRoot /src/AppBundle/Controller/ContactController.php中找不到
通过浏览器调用时,页面按预期加载。使用$ curl -I http://localhost/contact
进行调用时,网页的状态为HTTP/1.1 200 OK
我已经查看了讨论自动加载问题的其他similar questions - 但是Symfony docs建议类应该自动加载而不会出现问题:
就像在您的真实应用程序中一样 - 通过bootstrap.php.cache文件自动启用自动加载(默认情况下在app / phpunit.xml.dist文件中配置)。
<!-- app/phpunit.xml.dist -->
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="bootstrap.php.cache"
>
<testsuites>
<testsuite name="Project Test Suite">
<directory>../src/*/*Bundle/Tests</directory>
<directory>../src/*/Bundle/*Bundle/Tests</directory>
<directory>../src/*Bundle/Tests</directory>
</testsuite>
</testsuites>
<!--<php>-->
<!--In my experimentation, I uncommented this and tinkered with
a few values. After having no luck, I commented it out again. -->
<!--<server name="KERNEL_DIR" value="." />-->
<!--</php>-->
<filter>
<whitelist>
<directory>../src</directory>
<exclude>
<directory>../src/*Bundle/Resources</directory>
<directory>../src/*Bundle/Tests</directory>
<directory>../src/*/*Bundle/Resources</directory>
<directory>../src/*/*Bundle/Tests</directory>
<directory>../src/*/Bundle/*Bundle/Resources</directory>
<directory>../src/*/Bundle/*Bundle/Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
如何在使用PHPUnit时加载这些类?
答案 0 :(得分:6)
我尴尬地忽略了一个关键细节:我的应用程序运行在与我的PATH
环境变量指向的不同的PHP解释器上。
当我运行$ phpunit -c app/
时,它使用了我的操作系统的默认PHP(5.5.20) - 我的网站运行在PHP 5.6.10上,由MAMP提供。
我可以通过在调用PHPUnit时提供自己的正确PHP解释器路径来解决这个问题:
$ /path/to/correct/php phpunit -c app/