-
Notifications
You must be signed in to change notification settings - Fork 0
/
Phunit.php
80 lines (69 loc) · 2.49 KB
/
Phunit.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
<?php
namespace Phunit;
class Phunit {
const THROWS_PATTERN = '/@throws .?([a-zA-Z]+)/';
static public function run() {
// $colors = new Colors();
$total = 0;
$passed = 0;
$ran = 0;
$classes = self::getTestsClasses();
foreach ($classes as $class) {
$instance = new $class();
$reflection = new \ReflectionClass($instance);
$methods = get_class_methods($instance);
foreach ($methods as $method) {
$total++;
print 'Running ' . $method . '... ';
$result = self::runTestMethod($reflection, $instance, $method);
$ran++;
if ($result) {
$passed++;
// print $colors->getColoredString('passed', 'green');
print 'passed';
}
else {
// print $colors->getColoredString('failed', 'red');
print 'failed';
}
print PHP_EOL;
}
}
if ($passed !== $ran) {
// print sprintf('%d out of %d tests passed, ', $passed, $ran) . $colors->getColoredString(sprintf('%d failed', $ran - $passed), 'red');
printf('%d out of %d tests passed, %d failed', $passed, $ran, $ran - $passed);
}
else {
// print $colors->getColoredString(sprintf('%d out of %d tests passed.', $passed, $ran), 'green');
printf('%d out of %d tests passed.', $passed, $ran);
}
}
static private function runTestMethod(\ReflectionClass $reflection, $instance, $method) {
$expectedException = null;
$comment = $reflection->getMethod($method)->getdoccomment();
if (preg_match_all(self::THROWS_PATTERN, $comment, $matches, PREG_PATTERN_ORDER)) {
$expectedException = $matches[1][0];
}
try {
$instance->$method();
return true;
}
catch (\Exception $e) {
if ($expectedException && $e instanceof $expectedException) {
return true;
}
return false;
}
}
static private function getTestsClasses() {
$self = 'Punit\Tests';
$classes = get_declared_classes();
$testsClasses = array();
foreach ($classes as $class) {
if (is_subclass_of($class, $self)) {
$testsClasses[] = $class;
}
}
return $testsClasses;
}
}