123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <?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;
- }
- }
|