Actions
Task #101529
closedUse relative paths for test fixture files
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Tests
Target version:
-
Start date:
2023-08-02
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
13
PHP Version:
Tags:
Complexity:
easy
Sprint Focus:
On Location Sprint
Description
functional tests heavily use a feature to import and compare DB records via CSV files. Those files should be referenced by a syntax consisting of __DIR__ . '...'
to enable direct jumping of IDEs and also serve as a clean read.
Some of the CSV fixtures are loaded via 'typo3/sysext/....'
paths, which will not offer those benefits.
Find the occurences and replace the relative patch with the __DIR__
syntax.
Functions to look for are
- $this->assertCSVDataSet()
- $this->importCSVDataSet()
Have for example a look into typo3/sysext/extbase/Tests/Functional/Persistence/RelationTest.php for the wanted syntax, here we corrected the pathes already.
Actions