forked from ezyang/simpletest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault_reporter.php
More file actions
164 lines (150 loc) · 4.6 KB
/
Copy pathdefault_reporter.php
File metadata and controls
164 lines (150 loc) · 4.6 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
<?php
require_once dirname(__FILE__) . '/simpletest.php';
require_once dirname(__FILE__) . '/scorer.php';
require_once dirname(__FILE__) . '/reporter.php';
require_once dirname(__FILE__) . '/xml.php';
/**
* Parser for command line arguments.
* Extracts the a specific test to run and engages XML reporting when necessary.
*/
class SimpleCommandLineParser
{
private $to_property = array(
'case' => 'case', 'c' => 'case',
'test' => 'test', 't' => 'test',
);
private $case = '';
private $test = '';
private $xml = false;
private $help = false;
private $no_skips = false;
/**
* Parses raw command line arguments into object properties.
*
* @param string $arguments Raw commend line arguments.
*/
public function __construct($arguments)
{
if (! is_array($arguments)) {
return;
}
foreach ($arguments as $i => $argument) {
if (preg_match('/^--?(test|case|t|c)=(.+)$/', $argument, $matches)) {
$property = $this->to_property[$matches[1]];
$this->$property = $matches[2];
} elseif (preg_match('/^--?(test|case|t|c)$/', $argument, $matches)) {
$property = $this->to_property[$matches[1]];
if (isset($arguments[$i + 1])) {
$this->$property = $arguments[$i + 1];
}
} elseif (preg_match('/^--?(xml|x)$/', $argument)) {
$this->xml = true;
} elseif (preg_match('/^--?(no-skip|no-skips|s)$/', $argument)) {
$this->no_skips = true;
} elseif (preg_match('/^--?(help|h)$/', $argument)) {
$this->help = true;
}
}
}
/**
* Run only this test.
*
* @return string Test name to run.
*/
public function getTest()
{
return $this->test;
}
/**
* Run only this test suite.
*
* @return string Test class name to run.
*/
public function getTestCase()
{
return $this->case;
}
/**
* Output should be XML or not.
*
* @return bool True if XML desired.
*/
public function isXml()
{
return $this->xml;
}
/**
* Output should suppress skip messages.
*
* @return bool True for no skips.
*/
public function noSkips()
{
return $this->no_skips;
}
/**
* Output should be a help message. Disabled during XML mode.
*
* @return bool True if help message desired.
*/
public function help()
{
return $this->help && ! $this->xml;
}
/**
* Returns plain-text help message for command line runner.
*
* @return string String help message
*/
public function getHelpText()
{
return <<<HELP
SimpleTest command line default reporter (autorun)
Usage: php <test_file> [args...]
-c <class> Run only the test-case <class>
-t <method> Run only the test method <method>
-s Suppress skip messages
-x Return test results in XML
-h Display this help message
HELP;
}
}
/**
* The default reporter used by SimpleTest's autorun feature.
* The actual reporters used are dependency injected and can be overridden.
*/
class DefaultReporter extends SimpleReporterDecorator
{
/**
* Assembles the appropriate reporter for the environment.
*/
public function __construct()
{
if (SimpleReporter::inCli()) {
$parser = new SimpleCommandLineParser($_SERVER['argv']);
$interfaces = $parser->isXml() ? array('XmlReporter') : array('TextReporter');
if ($parser->help()) {
/**
* @todo I'm not sure if we should do the echo'ing here -- ezyang
*/
echo $parser->getHelpText();
exit(1);
}
$reporter = new SelectiveReporter(
SimpleTest::preferred($interfaces), $parser->getTestCase(), $parser->getTest()
);
if ($parser->noSkips()) {
$reporter = new NoSkipsReporter($reporter);
}
} else {
$reporter = new SelectiveReporter(
SimpleTest::preferred('HtmlReporter'),
@$_GET['c'],
@$_GET['t']);
if (@$_GET['skips'] === 'no' || @$_GET['show-skips'] === 'no') {
$reporter = new NoSkipsReporter($reporter);
}
}
parent::__construct($reporter);
}
}