xTest.php
7.9 KB
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<?php
namespace mindplay\test\lib;
use mindplay\test\lib\ResultPrinter\ResultPrinter;
/**
* A base class to support simple unit tests.
*
* To define a test, declare a method with no arguments, prefixing it's name with "test",
* for example: function testCanReadXmlFeed().
*
* If you declare an init() method, this will be run once before proceeding with the tests.
*
* If you declare a setup() and/or teardown() method, these will be run before/after each test.
*
* @todo document missing parameters and return-types
*/
abstract class xTest
{
private $result;
/**
* Test runner.
*
* @var xTestRunner
*/
private $testRunner;
/**
* Result printer.
*
* @var ResultPrinter
*/
private $resultPrinter;
/**
* The name of the expected Exception.
*
* @var mixed
*/
private $expectedException = null;
/**
* The message of the expected Exception.
*
* @var string
*/
private $expectedExceptionMessage = '';
/**
* The code of the expected Exception.
*
* @var integer
*/
private $expectedExceptionCode;
/**
* Sets result printer.
*
* @param ResultPrinter $resultPrinter Result printer.
* @return void
*/
public function setResultPrinter(ResultPrinter $resultPrinter)
{
$this->resultPrinter = $resultPrinter;
}
/**
* Run this test.
*
* @param xTestRunner $testRunner Test runner.
* @return boolean
*/
public function run(xTestRunner $testRunner)
{
$this->testRunner = $testRunner;
$this->resultPrinter->testHeader($this);
$reflection = new \ReflectionClass(get_class($this));
$methods = $reflection->getMethods();
$passed = $count = 0;
if (method_exists($this, 'init')) {
try {
$this->init();
} catch (\Exception $exception) {
echo '<tr style="color:white; background:red;"><td>init() failed</td><td><pre>' . $exception . '</pre></td></tr></table>';
return false;
}
}
foreach ($methods as $method) {
if (substr($method->name, 0, 4) == 'test') {
$this->result = null;
$test = $method->name;
$name = substr($test, 4);
if (count($_GET) && isset($_GET[$name]) && $_GET[$name] !== '') {
continue;
}
$this->testRunner->startCoverageCollector($test);
if (method_exists($this, 'setup')) {
$this->setup();
}
$exception = null;
try {
$this->$test();
} catch (\Exception $exception) {
}
try {
$this->assertException($exception);
} catch (xTestException $subException) {
}
$count++;
if ($this->result === true) {
$passed++;
}
if (method_exists($this, 'teardown')) {
$this->teardown();
}
$this->setExpectedException(null, '', null);
$this->testRunner->stopCoverageCollector();
$this->resultPrinter->testCaseResult($method, $this->getResultColor(), $this->getResultMessage());
}
}
$this->resultPrinter->testFooter($this, $count, $passed);
return $passed == $count;
}
/**
* Checks that given exception matches expected one.
*
* @param \Exception $e Exception.
* @return void
*/
private function assertException(\Exception $e = null)
{
if (!is_string($this->expectedException)) {
if ($e && !(($e instanceof xTestException) && $e->getCode() == xTestException::FAIL)) {
$this->result = (string)$e;
}
return;
}
$this->check(
$e instanceof \Exception,
'Exception of "' . $this->expectedException . '" class was not thrown'
);
$this->check(
get_class($e) == $this->expectedException,
'Exception with "' . get_class($e) . '" class thrown instead of "' . $this->expectedException . '"'
);
if (is_string($this->expectedExceptionMessage) && !empty($this->expectedExceptionMessage)) {
$this->check(
$e->getMessage() == $this->expectedExceptionMessage,
'Exception with "' . $e->getMessage() . '" message thrown instead of "' . $this->expectedExceptionMessage . '"'
);
}
if ($this->expectedExceptionCode !== null) {
$this->check(
$e->getCode() == $this->expectedExceptionCode,
'Exception with "' . $e->getCode() . '" code thrown instead of "' . $this->expectedExceptionCode . '"'
);
}
$this->pass();
}
/**
* Returns test result color.
*
* @return string
*/
private function getResultColor()
{
if ($this->result !== true) {
$color = 'red';
} elseif ($this->result === null) {
$color = 'blue';
} else {
$color = 'green';
}
return $color;
}
/**
* Returns test result message.
*
* @return string
*/
private function getResultMessage()
{
if ($this->result === true) {
$result = 'PASS';
} elseif ($this->result === null) {
$result = 'FAIL: Incomplete Test';
} else {
$result = 'FAIL' . (is_string($this->result) ? ': ' . $this->result : '');
}
return $result;
}
/**
* Calling this method during a test flags a test as passed or failed.
*
* @param bool $pass bool If this expression evaluates as true, the test is passed
* @param bool|string $result string Optional - if supplied, should contain a brief description of why the test failed
*/
protected function check($pass, $result = false)
{
if ($pass) {
$this->pass();
} else {
$this->fail($result);
}
}
/**
* Calling this method during a test manually flags a test as passed
*/
protected function pass()
{
if ($this->result === null) {
$this->result = true;
}
}
/**
* Calling this method during a test manually flags a test as failed
*
* @param bool|string $result string Optional - if supplied, should contain a brief description of why the test failed
*
* @throws xTestException
*/
protected function fail($result = false)
{
$this->result = $result;
throw new xTestException();
}
/**
* Calling this method during a test flags a test as passed if two values are exactly (===) the same.
*
* @param mixed $a mixed Any value
* @param mixed $b mixed Any value - if exactly the same as $a, the test is passed
* @param bool|string $fail string Optional - if supplied, should contain a brief description of why the test failed
*/
protected function eq($a, $b, $fail = false)
{
if ($a === $b) {
$this->pass();
} else {
$this->fail($fail === false ? var_export($a, true) . ' !== ' . var_export($b, true) : $fail);
}
}
/**
* Sets expected exception.
*
* @param mixed $exceptionName Exception class name.
* @param string $exceptionMessage Exception message.
* @param integer $exceptionCode Exception code.
*/
public function setExpectedException($exceptionName, $exceptionMessage = '', $exceptionCode = null)
{
$this->expectedException = $exceptionName;
$this->expectedExceptionMessage = $exceptionMessage;
$this->expectedExceptionCode = $exceptionCode;
}
}