Skip to content

Commit 3fd379b

Browse files
committed
refacto Check class & add some new Tests
1 parent 0231a16 commit 3fd379b

File tree

5 files changed

+61
-14
lines changed

5 files changed

+61
-14
lines changed

src/Config.php

+4
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,13 @@ public static function setCurrency($currency)
110110

111111
}
112112

113+
// @codeCoverageIgnoreStart
113114
private static function setLiveMode($liveMode)
114115
{
115116
self::$liveMode = $liveMode;
116117
self::$testMode = !$liveMode;
117118
}
119+
// @codeCoverageIgnoreEnd
118120

119121
private static function setTestMode($testMode)
120122
{
@@ -155,6 +157,7 @@ public static function setEnv($env)
155157
}
156158
}
157159

160+
// @codeCoverageIgnoreStart
158161
private static function setApproriateLiveAndTestMode()
159162
{
160163
switch (self::getEnv())
@@ -167,5 +170,6 @@ private static function setApproriateLiveAndTestMode()
167170
break;
168171
}
169172
}
173+
// @codeCoverageIgnoreEnd
170174

171175
}

src/Utils/Serializer.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public function toQueryString()
4242
return http_build_query($this->data);
4343
}
4444

45+
// @codeCoverageIgnoreStart
4546
private function arrayToXml($array, $rootElement = null, $xml = null) {
4647
$xmlDocument = $xml;
4748

@@ -56,5 +57,6 @@ private function arrayToXml($array, $rootElement = null, $xml = null) {
5657
}
5758

5859
return $xmlDocument->asXML();
59-
}
60+
}
61+
// @codeCoverageIgnoreEnd
6062
}

tests/Unit/PayTech/CustomFieldTest.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -16,32 +16,32 @@
1616
});
1717

1818
test('The data property should be an empty Array', function () {
19-
$this->assertIsArray(CustomField::retrieve());
20-
$this->assertEmpty(CustomField::retrieve());
19+
$this->assertIsArray(CustomField::retrieve()->getData());
20+
$this->assertEmpty(CustomField::retrieve()->getData());
2121
});
2222

2323
test('data property should be an empty Array', function () {
2424
CustomField::push(['test' => 'this is a test']);
25-
$this->assertNotEmpty(CustomField::retrieve());
25+
$this->assertNotEmpty(CustomField::retrieve()->getData());
2626
});
2727

2828
it('Shoud have an entry named test', function () {
2929
CustomField::push(['test' => 'this is a test']);
30-
$this->assertTrue(array_key_exists('test', CustomField::retrieve()));
30+
$this->assertTrue(array_key_exists('test', CustomField::retrieve()->getData()));
3131
});
3232

3333
it('Shoud have an entry named test & price', function () {
3434
CustomField::push(['test' => 'this is a test']);
3535
CustomField::set('price', 500);
36-
$this->assertTrue(array_key_exists('test', CustomField::retrieve()));
37-
$this->assertTrue(array_key_exists('price', CustomField::retrieve()));
38-
$this->assertEquals(2, count(CustomField::retrieve()));
36+
$this->assertTrue(array_key_exists('test', CustomField::retrieve()->getData()));
37+
$this->assertTrue(array_key_exists('price', CustomField::retrieve()->getData()));
38+
$this->assertEquals(2, count(CustomField::retrieve()->getData()));
3939
});
4040

4141
it('Shoud set an dummy entry', function () {
4242
CustomField::set('dummy', 'test');
43-
$this->assertTrue(array_key_exists('dummy', CustomField::retrieve()));
44-
$this->assertEquals(3, count(CustomField::retrieve()));
43+
$this->assertTrue(array_key_exists('dummy', CustomField::retrieve()->getData()));
44+
$this->assertEquals(3, count(CustomField::retrieve()->getData()));
4545
});
4646

4747
it('Shoud get dummy value', function () {

tests/Unit/Utils/CheckTest.php

+20-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,26 @@
1111
*
1212
*/
1313

14-
it('Should not allow Euro currency', function() {
15-
$this->assertFalse(Check::isCurrencyAllowed('EUR'));
14+
it('Should allow Euro currency', function() {
15+
$this->assertTrue(Check::isCurrencyAllowed('EUR'));
1616
});
1717

1818
it('Should allow XOF currency', function() {
19-
$this->assertIsInt(Check::isCurrencyAllowed('XOF'));
20-
});
19+
$this->assertTrue(Check::isCurrencyAllowed('xof'));
20+
});
21+
22+
it('Should not allow dummy currency', function() {
23+
$this->assertFalse(Check::isCurrencyAllowed('dummyCurrency'));
24+
});
25+
26+
it('Should allow Test Env', function() {
27+
$this->assertTrue(Check::isEnvAllowed('test'));
28+
});
29+
30+
it('Should allow PROD Env', function() {
31+
$this->assertTrue(Check::isEnvAllowed('PrOD'));
32+
});
33+
34+
it('Should not allow dummy env', function() {
35+
$this->assertFalse(Check::isEnvAllowed('dummyEnv'));
36+
});

tests/Unit/Utils/SerializerTest.php

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
namespace Tests\Unit\Utils;
4+
5+
use \PayTech\Utils\Serializer;
6+
7+
/**
8+
*
9+
* @author PapiHack
10+
* @since 07/2020
11+
*
12+
*/
13+
14+
it('Should return a String', function() {
15+
$this->assertIsString((new Serializer(['nom' => 'papi', 'job' => 'coder']))->toQueryString());
16+
});
17+
18+
it('Should return a JSON', function() {
19+
$this->assertJsonStringEqualsJsonString(json_encode(['nom' => 'papi', 'job' => 'coder']), (new Serializer(['nom' => 'papi', 'job' => 'coder']))->toJSONString());
20+
});
21+
22+
it('Should return a XML', function() {
23+
$this->assertXmlStringEqualsXmlString("<custom_fields><nom>papi</nom><job>coder</job></custom_fields>",
24+
(new Serializer(['nom' => 'papi', 'job' => 'coder']))->toXMLString());
25+
});

0 commit comments

Comments
 (0)