当测试使用Filesystem
组件访问我的Symfony 2应用程序中的文件系统,然后使用Finder
组件访问目录中的文件列表时,我收到以下错误。
Call to undefined method ProphecyProphecyMethodProphecy::in()
这是我正在测试的方法的一个片段:
$finder = new Finder();
if ($filesystem->exists($imageImportPath)) {
$finder->files()->in($imageImportPath);
foreach ($finder as $image) {
// ...do some stuff in here with uploading images and creating an entity...
$this->entityManager->persist($entity);
$this->entityManager->flush($entity);
}
}
这是我对帮助程序类的规范:
function it_imports_image_assets(
Filesystem $filesystem,
EntityManager $entityManager,
Finder $finder
) {
$imageImportPath = '/var/www/crmpicco/app/files/images/rfc-1872/';
$filesystem->exists($imageImportPath)->willReturn(true);
$finder->files()->in($imageImportPath)->shouldHaveCount(2);
$this->importImageAssets($imageImportPath)->shouldReturn([]);
}
你不想使用真实文件测试你的方法(看看我假设你想做的代码),测试应该在没有它的情况下工作。您需要对代码进行单元测试,因此您可以伪造Finder
找到的文件路径,代码不应依赖某些第三方文件来通过测试。
您需要在方法上返回Finder
对象$finder->files()
如下所示:
$finder->files()->shouldBeCalled()->willReturn($finder);
$finder->in($imageImportPath)->willReturn($finder);
$finder->getIterator()->willReturn(new ArrayIterator([
$file1->getWrappedObject(),
$file2->getWrappedObject(),
]));
例:
use SymfonyComponentFinderSplFileInfo;
//..
function it_imports_image_assets(
Filesystem $filesystem,
EntityManager $entityManager,
Finder $finder,
SplFileInfo $file1,
SplFileInfo $file2
) {
$imageImportPath = '/var/www/crmpicco/app/files/images/rfc-1872/';
$filesystem->exists($imageImportPath)->willReturn(true);
$finder->files()->willReturn($finder);
$finder->in($imageImportPath)->willReturn($finder);
$finder->getIterator()->willReturn(new ArrayIterator([
$file1->getWrappedObject(),
$file2->getWrappedObject(),
]));
$file1->getPathname()->willReturn($imageImportPath.'file1.txt');
$file2->getPathname()->willReturn($imageImportPath.'file1.txt');
//...
$this->importImageAssets($imageImportPath)->shouldReturn([]);
}