123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <?php
- /*
- * This file is part of the Lime framework.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- * (c) Bernhard Schussek <bernhard.schussek@symfony-project.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- /**
- * Runs a set of test methods.
- *
- * You can add different types of callbacks to a test runner. The most important
- * type is the "test" callback. These callbacks are added by calling addTest().
- * All "test" callbacks are executed upon calling run().
- *
- * The other callback types are called before or after the "test" callbacks:
- *
- * - "before all": Called once before all tests
- * - "after all": Called once after all tests
- * - "before": Called before each test
- * - "after": Called after each test
- *
- * These callbacks are added by calling addBeforeAll(), addAfterAll(),
- * addBefore() and addAfter(). You can add multiple callbacks for each type.
- * Callbacks are called in the same order in which they are added.
- *
- * @package lime
- * @author Bernhard Schussek <bernhard.schussek@symfony-project.com>
- * @version SVN: $Id: LimeTestRunner.php 23701 2009-11-08 21:23:40Z bschussek $
- */
- class LimeTestRunner
- {
- protected
- $output = null,
- $beforeAllCallbacks = array(),
- $afterAllCallbacks = array(),
- $beforeCallbacks = array(),
- $afterCallbacks = array(),
- $testCallbacks = array(),
- $testComments = array(),
- $errorCallbacks = array(),
- $exceptionCallbacks = array();
- /**
- * Constructor.
- *
- * @param LimeOutputInterface $output
- */
- public function __construct(LimeOutputInterface $output = null)
- {
- if (is_null($output))
- {
- $output = new LimeOutputNone();
- }
- $this->output = $output;
- }
- /**
- * Runs all registered callbacks.
- */
- public function run()
- {
- foreach ($this->beforeAllCallbacks as $callback)
- {
- call_user_func($callback);
- }
- foreach ($this->testCallbacks as $key => $testCallback)
- {
- if (!empty($this->testComments[$key]))
- {
- $this->output->comment($this->testComments[$key]);
- }
- foreach ($this->beforeCallbacks as $callback)
- {
- call_user_func($callback);
- }
- try
- {
- call_user_func($testCallback);
- }
- catch (Exception $e)
- {
- $this->handleException($e);
- }
- foreach ($this->afterCallbacks as $callback)
- {
- call_user_func($callback);
- }
- }
- foreach ($this->afterAllCallbacks as $callback)
- {
- call_user_func($callback);
- }
- }
- /**
- * Adds a callable that is called once before all tests.
- *
- * @param callable $callback
- * @throws InvalidArgumentException If the argument is no callbale
- */
- public function addBeforeAll($callback)
- {
- $this->assertIsCallable($callback);
- $this->beforeAllCallbacks[] = $callback;
- }
- /**
- * Adds a callable that is called once after all tests.
- *
- * @param callable $callback
- * @throws InvalidArgumentException If the argument is no callbale
- */
- public function addAfterAll($callback)
- {
- $this->assertIsCallable($callback);
- $this->afterAllCallbacks[] = $callback;
- }
- /**
- * Adds a callable that is called before each test.
- *
- * @param callable $callback
- * @throws InvalidArgumentException If the argument is no callbale
- */
- public function addBefore($callback)
- {
- $this->assertIsCallable($callback);
- $this->beforeCallbacks[] = $callback;
- }
- /**
- * Adds a callable that is called after each test.
- *
- * @param callable $callback
- * @throws InvalidArgumentException If the argument is no callbale
- */
- public function addAfter($callback)
- {
- $this->assertIsCallable($callback);
- $this->afterCallbacks[] = $callback;
- }
- /**
- * Adds a test callable.
- *
- * @param callable $callback
- * @throws InvalidArgumentException If the argument is no callbale
- */
- public function addTest($callback, $comment = '')
- {
- $this->assertIsCallable($callback);
- $this->testCallbacks[] = $callback;
- $this->testComments[] = $comment;
- }
- /**
- * Adds a callback that is called when an exception is thrown in a test.
- *
- * The callback retrieves the exception as first argument. It
- * should return TRUE if it was able to handle the exception successfully and
- * FALSE otherwise. In the latter case, the exception is thrown globally.
- *
- * @param callable $callback
- * @throws InvalidArgumentException If the argument is no callbale
- */
- public function addExceptionHandler($callback)
- {
- $this->assertIsCallable($callback);
- $this->exceptionCallbacks[] = $callback;
- }
- /**
- * Calls all registered exception callbacks.
- *
- * The exception is passed to the callbacks as first argument.
- *
- * @param Exception $exception
- */
- protected function handleException(Exception $exception)
- {
- foreach ($this->exceptionCallbacks as $callback)
- {
- if (true === call_user_func($callback, $exception))
- {
- return;
- }
- }
- throw $exception;
- }
- /**
- * Asserts that the given argument is a callable.
- *
- * @param mixed $callable
- * @throws InvalidArgumentException If the argument is no callbale
- */
- private function assertIsCallable($callable)
- {
- if (!is_callable($callable))
- {
- throw new InvalidArgumentException('The given Argument must be a callable.');
- }
- }
- }
|