123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- /**
- * Optional include file for SimpleTest
- * @package SimpleTest
- * @subpackage UnitTester
- * @version $Id: default_reporter.php 1704 2008-03-25 00:47:04Z lastcraft $
- */
- /**#@+
- * include other SimpleTest class files
- */
- 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.
- * @package SimpleTest
- * @subpackage UnitTester
- */
- class SimpleCommandLineParser {
- var $_to_property = array(
- 'case' => '_case', 'c' => '_case',
- 'test' => '_test', 't' => '_test',
- 'xml' => '_xml', 'x' => '_xml');
- var $_case = '';
- var $_test = '';
- var $_xml = false;
- var $_no_skips = false;
- /**
- * Parses raw command line arguments into object properties.
- * @param string $arguments Raw commend line arguments.
- */
- function SimpleCommandLineParser($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;
- }
- }
- }
- /**
- * Run only this test.
- * @return string Test name to run.
- * @access public
- */
- function getTest() {
- return $this->_test;
- }
- /**
- * Run only this test suite.
- * @return string Test class name to run.
- * @access public
- */
- function getTestCase() {
- return $this->_case;
- }
- /**
- * Output should be XML or not.
- * @return boolean True if XML desired.
- * @access public
- */
- function isXml() {
- return $this->_xml;
- }
- /**
- * Output should suppress skip messages.
- * @return boolean True for no skips.
- * @access public
- */
- function noSkips() {
- return $this->_no_skips;
- }
- }
- /**
- * The default reporter used by SimpleTest's autorun
- * feature. The actual reporters used are dependency
- * injected and can be overridden.
- * @package SimpleTest
- * @subpackage UnitTester
- */
- class DefaultReporter extends SimpleReporterDecorator {
- /**
- * Assembles the appopriate reporter for the environment.
- */
- function DefaultReporter() {
- if (SimpleReporter::inCli()) {
- global $argv;
- $parser = new SimpleCommandLineParser($argv);
- $interfaces = $parser->isXml() ? array('XmlReporter') : array('TextReporter');
- $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);
- }
- }
- $this->SimpleReporterDecorator($reporter);
- }
- }
- ?>
|