目前我的目录结构如下:
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
答案 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" );
这样,我就不必依赖外部类或服务了。