我是EWZSearchBundle的用户,并希望更新它以与Symfony 3.x一起使用
更新composer.json
文件应该很容易,但我无法运行单元测试。
这是指向我的捆绑包分支的链接,其中包含一些"改进":提交链接
当我运行phpunit测试时,我收到以下错误:
$ vendor/bin/phpunit Tests/Lucene/FieldTest.php
PHPUnit 5.7.26 by Sebastian Bergmann and contributors.
PHP Fatal error: Call to undefined method ZendSearchLuceneDocumentField::getType() in /tmp/azine/EWZSearchBundle/Tests/Lucene/FieldTest.php on line 18
PHP Stack trace:
PHP 1. {main}() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/phpunit:52
PHP 3. PHPUnit_TextUI_Command->run() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/src/TextUI/Command.php:116
PHP 4. PHPUnit_TextUI_TestRunner->doRun() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/src/TextUI/Command.php:186
PHP 5. PHPUnit_Framework_TestSuite->run() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/src/TextUI/TestRunner.php:517
PHP 6. PHPUnit_Framework_TestCase->run() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/src/Framework/TestSuite.php:733
PHP 7. PHPUnit_Framework_TestResult->run() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/src/Framework/TestCase.php:868
PHP 8. PHPUnit_Framework_TestCase->runBare() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/src/Framework/TestResult.php:686
PHP 9. PHPUnit_Framework_TestCase->runTest() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/src/Framework/TestCase.php:913
PHP 10. ReflectionMethod->invokeArgs() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/src/Framework/TestCase.php:1062
PHP 11. EWZBundleSearchBundleTestsLuceneFieldTest->testGetType() /tmp/azine/EWZSearchBundle/vendor/phpunit/phpunit/src/Framework/TestCase.php:1062
重现步骤:
$ git clone git@github.com:azine/EWZSearchBundle.git
$ cd EWZSearchBundle
$ composer install
$ vendor/bin/phpunit Tests/Lucene/FieldTest.php
此错误的原因是,EWZBundleSearchBundleLuceneField
类未(正确(自动加载,但vendor
目录中的ZendSearchLuceneDocumentField
会自动加载,但没有该方法。
谁能告诉我为什么从根目录自动加载命名空间EWZBundleSearchBundle
中的类不起作用?
非常感谢所有帮助。
该类已正确自动加载。问题出在代码本身。
通过代码启动$binaryField
时
$binaryField = Field::Binary('Binary', 'value');
结果是类ZendSearchLuceneDocumentField
,而不是EWZBundleSearchBundleLuceneField
。
因为它执行
return new self($name, $value, '', true, false, false, true);
ZendSearchLuceneDocumentField
内部,它运行的是 ZendSearchLuceneDocumentField
的构造函数,而不是扩展类。