123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <?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');
-
-
-
- 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;
-
-
-
- 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;
- }
- }
- }
-
-
-
- function getTest() {
- return $this->test;
- }
-
-
-
- function getTestCase() {
- return $this->case;
- }
-
-
-
- function isXml() {
- return $this->xml;
- }
-
-
-
- function noSkips() {
- return $this->no_skips;
- }
-
-
-
- function help() {
- return $this->help && !$this->xml;
- }
-
-
-
- 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;
- }
-
- }
-
-
- class DefaultReporter extends SimpleReporterDecorator {
-
-
-
- function __construct() {
- if (SimpleReporter::inCli()) {
- $parser = new SimpleCommandLineParser($_SERVER['argv']);
- $interfaces = $parser->isXml() ? array('XmlReporter') : array('TextReporter');
- if ($parser->help()) {
-
- 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);
- }
- }
- ?>
|