Skip to content

Commit 67908aa

Browse files
committed
DataFileFixturesHelper class namespace changed, class file path updated (#107)
1 parent 151217a commit 67908aa

12 files changed

+38
-28
lines changed

tests/unit_tests/Coder/Datafile/DecoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace ExOrg\DataCoder\Coder\Datafile;
1313

1414
use PHPUnit\Framework\TestCase;
15-
use ExOrg\DataCoder\DataFileFixturesHelper;
15+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1616
use ExOrg\Decapsulator\ObjectDecapsulator;
1717

1818
/**

tests/unit_tests/Coder/Datafile/EncoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace ExOrg\DataCoder\Coder\Datafile;
1313

1414
use PHPUnit\Framework\TestCase;
15-
use ExOrg\DataCoder\DataFileFixturesHelper;
15+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1616
use ExOrg\Decapsulator\ObjectDecapsulator;
1717

1818
/**

tests/unit_tests/Coder/Json/Data/DecoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace ExOrg\DataCoder\Coder\Json\Data;
1313

1414
use PHPUnit\Framework\TestCase;
15-
use ExOrg\DataCoder\DataFileFixturesHelper;
15+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1616

1717
/**
1818
* Json Data Decoder Test.

tests/unit_tests/Coder/Json/Data/EncoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use PHPUnit\Framework\TestCase;
1515
// use ExOrg\DataCoder\ObjectDecapsulator;
16-
use ExOrg\DataCoder\DataFileFixturesHelper;
16+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1717

1818
/**
1919
* Json Data Encoder Test.

tests/unit_tests/Coder/Json/Datafile/DecoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use PHPUnit\Framework\TestCase;
1515
use ExOrg\Decapsulator\ObjectDecapsulator;
16-
use ExOrg\DataCoder\DataFileFixturesHelper;
16+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1717

1818
/**
1919
* Json Datafile Decoder Test.

tests/unit_tests/Coder/Json/Datafile/EncoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use PHPUnit\Framework\TestCase;
1515
use ExOrg\Decapsulator\ObjectDecapsulator;
16-
use ExOrg\DataCoder\DataFileFixturesHelper;
16+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1717

1818
/**
1919
* Json Datafile Encoder Test.

tests/unit_tests/Coder/Yaml/Data/DecoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace ExOrg\DataCoder\Coder\Yaml\Data;
1313

1414
use PHPUnit\Framework\TestCase;
15-
use ExOrg\DataCoder\DataFileFixturesHelper;
15+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1616

1717
/**
1818
* Yaml Data Decoder Test.

tests/unit_tests/Coder/Yaml/Data/EncoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace ExOrg\DataCoder\Coder\Yaml\Data;
1313

1414
use PHPUnit\Framework\TestCase;
15-
use ExOrg\DataCoder\DataFileFixturesHelper;
15+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1616

1717
/**
1818
* Yaml Data Encoder Test.

tests/unit_tests/Coder/Yaml/Datafile/DecoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use PHPUnit\Framework\TestCase;
1515
use ExOrg\Decapsulator\ObjectDecapsulator;
16-
use ExOrg\DataCoder\DataFileFixturesHelper;
16+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1717

1818
/**
1919
* Yaml Datafile Decoder Test.

tests/unit_tests/Coder/Yaml/Datafile/EncoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use PHPUnit\Framework\TestCase;
1515
use ExOrg\Decapsulator\ObjectDecapsulator;
16-
use ExOrg\DataCoder\DataFileFixturesHelper;
16+
use ExOrg\DataCoder\Fixture\DataFileFixturesHelper;
1717

1818
/**
1919
* Yaml Datafile Encoder Test.

tests/testing_environment/helpers/DataFileFixturesHelper.php tests/unit_tests/Fixture/DataFileFixturesHelper.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace ExOrg\DataCoder;
12+
namespace ExOrg\DataCoder\Fixture;
1313

1414
/**
15-
* DataFileFixturesHelper.
15+
* Data File Fixtures Helper.
1616
* Helps to handle data file fixtures.
1717
*
1818
* @package DataCoder
@@ -29,7 +29,7 @@ class DataFileFixturesHelper
2929
* They are inputs and the expected results
3030
* of the encoding/decoding operations.
3131
*/
32-
const FILES_DIRECTORY = '../data';
32+
const FILES_DIRECTORY = '../../testing_environment/data';
3333

3434
/**
3535
* Directory with the files containing encoded data

tests/testing_environment/helpers/DataFileFixturesHelperTest.php tests/unit_tests/Fixture/DataFileFixturesHelperTest.php

+25-15
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace ExOrg\DataCoder;
12+
namespace ExOrg\DataCoder\Fixture;
1313

1414
use PHPUnit\Framework\TestCase;
1515

1616
/**
17-
* DataFileFixturesHelperTest.
17+
* Data File Fixtures Helper Test.
1818
* PHPUnit base test class for
1919
* DataFileFixturesHelper.
2020
*
@@ -26,6 +26,16 @@
2626
*/
2727
class DataFileFixturesHelperTest extends TestCase
2828
{
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+
2939
/**
3040
* Instance of tested class.
3141
*
@@ -34,13 +44,13 @@ class DataFileFixturesHelperTest extends TestCase
3444
private $dataFileFixturesHelper = null;
3545

3646
/**
37-
* Test if ExOrg\DataCoder\DataFileFixturesHelper class
47+
* Test if ExOrg\DataCoder\Fixture\DataFileFixturesHelper class
3848
* has been created.
3949
*/
4050
public function testDataCodersTestHelperClassExists()
4151
{
4252
$this->assertTrue(
43-
class_exists('ExOrg\DataCoder\DataFileFixturesHelper')
53+
class_exists(self::DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME)
4454
);
4555
}
4656

@@ -52,7 +62,7 @@ public function testSetDataFormatFunctionExists()
5262
{
5363
$this->assertTrue(
5464
method_exists(
55-
'ExOrg\DataCoder\DataFileFixturesHelper',
65+
self::DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME,
5666
'setDataFormat'
5767
)
5868
);
@@ -66,7 +76,7 @@ public function testLoadEncodedDataFunctionExists()
6676
{
6777
$this->assertTrue(
6878
method_exists(
69-
'ExOrg\DataCoder\DataFileFixturesHelper',
79+
self::DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME,
7080
'loadEncodedData'
7181
)
7282
);
@@ -106,7 +116,7 @@ public function testLoadDecodedDataFunctionExists()
106116
{
107117
$this->assertTrue(
108118
method_exists(
109-
'ExOrg\DataCoder\DataFileFixturesHelper',
119+
self::DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME,
110120
'loadDecodedData'
111121
)
112122
);
@@ -148,7 +158,7 @@ public function testBuildEncodedFilePathFunctionExists()
148158
{
149159
$this->assertTrue(
150160
method_exists(
151-
'ExOrg\DataCoder\DataFileFixturesHelper',
161+
self::DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME,
152162
'buildEncodedFilePath'
153163
)
154164
);
@@ -160,7 +170,7 @@ public function testBuildEncodedFilePathFunctionExists()
160170
*/
161171
public function testBuildEncodedFilePath()
162172
{
163-
$expectedPath = realpath(__DIR__ . '/../data/encoded/data.self-test');
173+
$expectedPath = realpath(__DIR__ . DIRECTORY_SEPARATOR . self::FILES_DIRECTORY . '/encoded/data.self-test');
164174
$actualPath = $this->dataFileFixturesHelper->buildEncodedFilePath('data.self-test');
165175

166176
$this->assertEquals($expectedPath, $actualPath);
@@ -174,7 +184,7 @@ public function testBuildDecodedFilePathFunctionExists()
174184
{
175185
$this->assertTrue(
176186
method_exists(
177-
'ExOrg\DataCoder\DataFileFixturesHelper',
187+
self::DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME,
178188
'buildDecodedFilePath'
179189
)
180190
);
@@ -186,7 +196,7 @@ public function testBuildDecodedFilePathFunctionExists()
186196
*/
187197
public function testBuildDecodedFilePath()
188198
{
189-
$expectedPath = realpath(__DIR__ . '/../data/decoded/self-test.php');
199+
$expectedPath = realpath(__DIR__ . DIRECTORY_SEPARATOR . self::FILES_DIRECTORY . '/decoded/self-test.php');
190200
$actualPath = $this->dataFileFixturesHelper->buildDecodedFilePath('self-test.php');
191201

192202
$this->assertEquals($expectedPath, $actualPath);
@@ -200,7 +210,7 @@ public function testBuildCreatedFilePathFunctionExists()
200210
{
201211
$this->assertTrue(
202212
method_exists(
203-
'ExOrg\DataCoder\DataFileFixturesHelper',
213+
self::DATAFILE_FIXTURES_HELPER_FULLY_QUALIFIED_CLASS_NAME,
204214
'buildCreatedFilePath'
205215
)
206216
);
@@ -212,7 +222,7 @@ public function testBuildCreatedFilePathFunctionExists()
212222
*/
213223
public function testBuildCreatedFilePath()
214224
{
215-
$expectedPath = realpath(__DIR__ . '/../data/created/') . DIRECTORY_SEPARATOR . 'self-test';
225+
$expectedPath = realpath(__DIR__ . DIRECTORY_SEPARATOR . self::FILES_DIRECTORY . '/created/') . DIRECTORY_SEPARATOR . 'self-test';
216226
$actualPath = $this->dataFileFixturesHelper->buildCreatedFilePath('self-test');
217227

218228
$this->assertEquals($expectedPath, $actualPath);
@@ -235,7 +245,7 @@ protected function setUp(): void
235245
*/
236246
private function writeContentToSelfTestEncodedFile($content)
237247
{
238-
$filePath = __DIR__ . "/../data/encoded/data.self-test";
248+
$filePath = __DIR__ . DIRECTORY_SEPARATOR . self::FILES_DIRECTORY . '/encoded/data.self-test';
239249
file_put_contents($filePath, $content);
240250
}
241251

@@ -253,7 +263,7 @@ private function writeResultToSelfTestDecodedFile($result)
253263
}
254264
$content .= ');';
255265

256-
$filePath = __DIR__ . "/../data/decoded/self-test.php";
266+
$filePath = __DIR__ . DIRECTORY_SEPARATOR . self::FILES_DIRECTORY . '/decoded/self-test.php';
257267
file_put_contents($filePath, $content);
258268
}
259269
}

0 commit comments

Comments
 (0)