forked from dolejska-daniel/riot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.php
187 lines (165 loc) · 5.67 KB
/
phpunit.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?php
/**
* Copyright (C) 2016-2020 Daniel Dolejška
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
use PHPUnit\Framework\TestCase;
use RiotAPI\LeagueAPI\Objects;
/**
* Class RiotAPITestCase
* This class provides utilities to validate our API objects.
*/
class RiotAPITestCase extends TestCase
{
/**
* Recursively validate list of objects.
*
* @param array $data
* @param array $originalData
* @param string $objectsClass
*
* @throws ReflectionException
*/
public function checkObjectPropertiesAndDataValidityOfObjectList ( array $data, array $originalData, string $objectsClass )
{
// Check list validity
$this->assertTrue(is_array($data) && !empty($data), "Object list is empty!");
$this->assertContainsOnlyInstancesOf($objectsClass, $data, "Object list does not contain instances of required class!");
$this->assertSameSize($data, $originalData, "Object list count does not match original request result data count!");
// Check all the objects in the list
foreach ($data as $n => $object)
{
// Check object identifier
$this->assertArrayHasKey($n, $originalData, "Object identifier is not valid! It does not match original request result data identifier!");
// For each object in the list, check its properties and data validity
$this->checkObjectPropertiesAndDataValidity($object, $originalData[$n]);
}
}
/**
* Recursively validate object's properties.
*
* @param Objects\IApiObject $object
* @param array $originalData
* @param string|null $objectClass
*
* @throws ReflectionException
*/
public function checkObjectPropertiesAndDataValidity( Objects\IApiObject $object, array $originalData, string $objectClass = null )
{
// Check class of this object (if required - not required if called from list validation function)
if (!is_null($objectClass))
$this->assertInstanceOf($objectClass, $object, "Object is not valid! It is not an instance of required class.");
// Create object's reflection
$ref = new ReflectionClass($object);
// Get it's properties
$props = $ref->getProperties();
// Check all object's properties
foreach ($props as $propRef)
{
if ($propRef->isProtected() || $propRef->isPrivate())
continue;
// The actual object's property
$prop = $object->{$propRef->getName()};
if (empty($prop))
continue; // TODO: Continue?
// For each property parse its DataType
$dataType = RiotAPI\LeagueAPI\Objects\ApiObject::getPropertyDataType($propRef->getDocComment());
// Check if its data type is non-standard data type (our special object)
if ($dataType !== false)
{
// This property is our special class (not int, string, bool, etc.)
if ($dataType->isArray)
{
// This property is list of instances of this class, validate the list
$this->checkObjectPropertiesAndDataValidityOfObjectList(
$objectList = $prop,
$originalData[$propRef->getName()],
$ref->getNamespaceName() . "\\" . $dataType->class
);
}
else
{
// Check whether object saved in this property is instance of required class
$this->assertInstanceOf(
$ref->getNamespaceName() . "\\" . $dataType->class,
$prop,
"Instance of {$ref->getName()}->\${$propRef->getName()} is not valid! It does not match with annotation data type."
);
// Check properties and data validity of this object
$this->checkObjectPropertiesAndDataValidity(
$prop,
$originalData[$propRef->getName()]
);
}
}
else
{
// This property is of standard data type (int, string, bool, etc.)
$this->assertArrayHasKey($propRef->getName(), $originalData, "Original request result data do not contain key '{$propRef->getName()}'.");
$this->assertSame(
$originalData[$propRef->getName()],
$prop,
"Value of {$ref->getName()}->\${$propRef->getName()} is not valid! It does not match with original request result data."
);
}
}
// Check data validity
$data = $object->getData();
$this->assertSame($originalData, $data, "Clean data of {$ref->getName()} are not valid! They do not match with original request result data.");
}
/**
* Recursively removes directory and all its contents.
*
* @param $dir
*
* @return bool
*/
public static function deleteDir($dir)
{
if (!file_exists($dir))
return true;
if (!is_dir($dir))
return unlink($dir);
foreach (scandir($dir) as $item)
{
if ($item == '.' || $item == '..')
continue;
if (!self::deleteDir($dir . DIRECTORY_SEPARATOR . $item))
return false;
}
return rmdir($dir);
}
/**
* Returns usable API key - either from environment or constant.
*
* @return string
*/
public static function getApiKey(): string
{
return getenv('API_KEY') ?: 'API_KEY_UNKNOWN';
}
/**
* Returns usable tournament API key - either from environment or constant.
*
* @return string
*/
public static function getApiTournamentKey(): string
{
return getenv('API_TOURNAMENT_KEY') ?: 'API_KEY_UNKNOWN';
}
}
// Autoload required classes
require_once __DIR__ . '/vendor/autoload.php';
date_default_timezone_set('Europe/Prague');