9
9
* file that was distributed with this source code.
10
10
*/
11
11
12
- namespace ExOrg \DataCoder ;
12
+ namespace ExOrg \DataCoder \ Fixture ;
13
13
14
14
use PHPUnit \Framework \TestCase ;
15
15
16
16
/**
17
- * DataFileFixturesHelperTest .
17
+ * Data File Fixtures Helper Test .
18
18
* PHPUnit base test class for
19
19
* DataFileFixturesHelper.
20
20
*
26
26
*/
27
27
class DataFileFixturesHelperTest extends TestCase
28
28
{
29
+ const DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME = 'ExOrg\DataCoder\Fixture\DataFileFixturesHelper ' ;
30
+
31
+ /**
32
+ * Directory with the files containing data
33
+ * in various formats.
34
+ * They are inputs and the expected results
35
+ * of the encoding/decoding operations.
36
+ */
37
+ const FILES_DIRECTORY = '../../testing_environment/data ' ;
38
+
29
39
/**
30
40
* Instance of tested class.
31
41
*
@@ -34,13 +44,13 @@ class DataFileFixturesHelperTest extends TestCase
34
44
private $ dataFileFixturesHelper = null ;
35
45
36
46
/**
37
- * Test if ExOrg\DataCoder\DataFileFixturesHelper class
47
+ * Test if ExOrg\DataCoder\Fixture\ DataFileFixturesHelper class
38
48
* has been created.
39
49
*/
40
50
public function testDataCodersTestHelperClassExists ()
41
51
{
42
52
$ this ->assertTrue (
43
- class_exists (' ExOrg\DataCoder\DataFileFixturesHelper ' )
53
+ class_exists (self :: DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME )
44
54
);
45
55
}
46
56
@@ -52,7 +62,7 @@ public function testSetDataFormatFunctionExists()
52
62
{
53
63
$ this ->assertTrue (
54
64
method_exists (
55
- ' ExOrg\DataCoder\DataFileFixturesHelper ' ,
65
+ self :: DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME ,
56
66
'setDataFormat '
57
67
)
58
68
);
@@ -66,7 +76,7 @@ public function testLoadEncodedDataFunctionExists()
66
76
{
67
77
$ this ->assertTrue (
68
78
method_exists (
69
- ' ExOrg\DataCoder\DataFileFixturesHelper ' ,
79
+ self :: DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME ,
70
80
'loadEncodedData '
71
81
)
72
82
);
@@ -106,7 +116,7 @@ public function testLoadDecodedDataFunctionExists()
106
116
{
107
117
$ this ->assertTrue (
108
118
method_exists (
109
- ' ExOrg\DataCoder\DataFileFixturesHelper ' ,
119
+ self :: DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME ,
110
120
'loadDecodedData '
111
121
)
112
122
);
@@ -148,7 +158,7 @@ public function testBuildEncodedFilePathFunctionExists()
148
158
{
149
159
$ this ->assertTrue (
150
160
method_exists (
151
- ' ExOrg\DataCoder\DataFileFixturesHelper ' ,
161
+ self :: DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME ,
152
162
'buildEncodedFilePath '
153
163
)
154
164
);
@@ -160,7 +170,7 @@ public function testBuildEncodedFilePathFunctionExists()
160
170
*/
161
171
public function testBuildEncodedFilePath ()
162
172
{
163
- $ expectedPath = realpath (__DIR__ . ' /../data /encoded/data.self-test ' );
173
+ $ expectedPath = realpath (__DIR__ . DIRECTORY_SEPARATOR . self :: FILES_DIRECTORY . ' /encoded/data.self-test ' );
164
174
$ actualPath = $ this ->dataFileFixturesHelper ->buildEncodedFilePath ('data.self-test ' );
165
175
166
176
$ this ->assertEquals ($ expectedPath , $ actualPath );
@@ -174,7 +184,7 @@ public function testBuildDecodedFilePathFunctionExists()
174
184
{
175
185
$ this ->assertTrue (
176
186
method_exists (
177
- ' ExOrg\DataCoder\DataFileFixturesHelper ' ,
187
+ self :: DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME ,
178
188
'buildDecodedFilePath '
179
189
)
180
190
);
@@ -186,7 +196,7 @@ public function testBuildDecodedFilePathFunctionExists()
186
196
*/
187
197
public function testBuildDecodedFilePath ()
188
198
{
189
- $ expectedPath = realpath (__DIR__ . ' /../data /decoded/self-test.php ' );
199
+ $ expectedPath = realpath (__DIR__ . DIRECTORY_SEPARATOR . self :: FILES_DIRECTORY . ' /decoded/self-test.php ' );
190
200
$ actualPath = $ this ->dataFileFixturesHelper ->buildDecodedFilePath ('self-test.php ' );
191
201
192
202
$ this ->assertEquals ($ expectedPath , $ actualPath );
@@ -200,7 +210,7 @@ public function testBuildCreatedFilePathFunctionExists()
200
210
{
201
211
$ this ->assertTrue (
202
212
method_exists (
203
- ' ExOrg\DataCoder\DataFileFixturesHelper ' ,
213
+ self :: DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME ,
204
214
'buildCreatedFilePath '
205
215
)
206
216
);
@@ -212,7 +222,7 @@ public function testBuildCreatedFilePathFunctionExists()
212
222
*/
213
223
public function testBuildCreatedFilePath ()
214
224
{
215
- $ expectedPath = realpath (__DIR__ . ' /../data /created/ ' ) . DIRECTORY_SEPARATOR . 'self-test ' ;
225
+ $ expectedPath = realpath (__DIR__ . DIRECTORY_SEPARATOR . self :: FILES_DIRECTORY . ' /created/ ' ) . DIRECTORY_SEPARATOR . 'self-test ' ;
216
226
$ actualPath = $ this ->dataFileFixturesHelper ->buildCreatedFilePath ('self-test ' );
217
227
218
228
$ this ->assertEquals ($ expectedPath , $ actualPath );
@@ -235,7 +245,7 @@ protected function setUp(): void
235
245
*/
236
246
private function writeContentToSelfTestEncodedFile ($ content )
237
247
{
238
- $ filePath = __DIR__ . " /../data/ encoded/data.self-test" ;
248
+ $ filePath = __DIR__ . DIRECTORY_SEPARATOR . self :: FILES_DIRECTORY . ' / encoded/data.self-test' ;
239
249
file_put_contents ($ filePath , $ content );
240
250
}
241
251
@@ -253,7 +263,7 @@ private function writeResultToSelfTestDecodedFile($result)
253
263
}
254
264
$ content .= '); ' ;
255
265
256
- $ filePath = __DIR__ . " /../data/ decoded/self-test.php" ;
266
+ $ filePath = __DIR__ . DIRECTORY_SEPARATOR . self :: FILES_DIRECTORY . ' / decoded/self-test.php' ;
257
267
file_put_contents ($ filePath , $ content );
258
268
}
259
269
}
0 commit comments