访问Symfony中测试目录中的资源文件

时间:2017-02-25 09:24:40

标签: phpunit symfony file-location

目前我的目录结构如下:

src
-App
--MyBundle
---Service
----DefaultService
tests
-AppMyBundle
--files
---data.csv
--Service
---DefaultServiceTest

我正在为文件阅读器编写测试,我为演示文件添加了data.csv文件以进行测试。在我的测试中,我需要获取该data.csv文件的路径。但我找不到任何获得它的方法。我尝试通过file_locator服务访问它,例如:

$locator = $this->container->get('file_locator');
$path = $locator->locate('@AppMyBundle/Tests/files/data.csv');

$locator = $this->container->get('file_locator');
$path = $locator->locate('@AppMyBundle/files/data.

没有运气。 必要时我的DefaultService的名称空间为App\MyBundle\Service,而DefaultServiceTest的名称空间为App\MyBundle\Tests\Service

3 个答案:

答案 0 :(得分:0)

您在app / bundle系统之外,请尝试使用以下代码:

$path = $this->get('kernel')->getRootDir() . '/../tests/AppMyBundle/files/data.csv';

答案 1 :(得分:0)

我这样使用$client->getContainer()->getParameter('kernel.root_dir')

$client = static::createClient();

$schemaPath = sprintf(
    '%s/../tests/MyBundle/Resources/rss2.xsd',
    $this->_client->getContainer()->getParameter('kernel.root_dir')
);

答案 2 :(得分:0)

我目前正在使用SymUnity 5(PHPUnit 7.5)编写单元测试(解析Excel文件)时正在执行此操作。我的方法要简单得多。我的测试结构如下:

tests
- Service
-- ManifestReaderTest.php
-- testdata
--- import_test_good.csv

然后在ManifestReaderTest类中,我具有以下内容:

$this->assertFileExists(__DIR__ . "/testdata/import_test_good.csv" );

这样,我就不必依赖外部类或服务了。