Behat


Behat/Behat/Definition/Annotation/Definition.php



namespace Behat\Behat\Definition\Annotation;

use Behat\Gherkin\Node\PyStringNode,
    Behat\Gherkin\Node\TableNode;

use Behat\Behat\Definition\DefinitionInterface,
    Behat\Behat\Exception\ErrorException,
    Behat\Behat\Context\ContextInterface,
    Behat\Behat\Annotation\Annotation;

/*
 * This file is part of the Behat.
 * (c) Konstantin Kudryashov 
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * Step definition.
 *
 * @author Konstantin Kudryashov 
 */
abstract class Definition extends Annotation implements DefinitionInterface
{
    private $regex;
    private $matchedText;
    private $values = array();

    /**
     * Initializes definition.
     *
     * @param callback $callback definition callback
     * @param string   $regex    definition regular expression
     *
     * @throws \InvalidArgumentException
     */
    public function __construct($callback, $regex)
    {
        if (!is_callable($callback)) {
            throw new \InvalidArgumentException(sprintf(
                '"%s" definition callback should be a valid callable, but %s given',
                basename(str_replace('\\', '/', get_class($this))), gettype($callback)
            ));
        }
        parent::__construct($callback);

        $this->regex = $regex;
    }

    /**
     * Returns definition regex to match.
     *
     * @return string
     */
    public function getRegex()
    {
        return $this->regex;
    }

    /**
     * Saves matched step text to definition.
     *
     * @param string $text
     */
    public function setMatchedText($text)
    {
        $this->matchedText = $text;
    }

    /**
     * Returns matched step text.
     *
     * @return string
     */
    public function getMatchedText()
    {
        return $this->matchedText;
    }

    /**
     * Sets step parameters for step run.
     *
     * @param array $values
     */
    public function setValues(array $values)
    {
        $this->values = $values;
    }

    /**
     * Returns step parameters for step run.
     *
     * @return array
     */
    public function getValues()
    {
        return $this->values;
    }

    /**
     * Custom error handler.
     *
     * This method used as custom error handler when step is running.
     *
     * @see set_error_handler()
     *
     * @param integer $level
     * @param string  $message
     * @param string  $file
     * @param integer $line
     *
     * @return Boolean
     *
     * @throws ErrorException
     */
    public function errorHandler($level, $message, $file, $line)
    {
        if (0 !== error_reporting()) {
            throw new ErrorException($level, $message, $file, $line);
        }

        // error reporting turned off or more likely suppressed with @
        return false;
    }

    /**
     * Runs definition callback.
     *
     * @param ContextInterface $context
     *
     * @return mixed
     *
     * @throws BehaviorException
     */
    public function run(ContextInterface $context)
    {
        if (defined('BEHAT_ERROR_REPORTING')) {
            $errorLevel = BEHAT_ERROR_REPORTING;
        } else {
            $errorLevel = E_ALL ^ E_WARNING;
        }

        $callback   = $this->getCallbackForContext($context);

        $values = $this->getValues();
        if ($this->isClosure()) {
            array_unshift($values, $context);
        }

        set_error_handler(array($this, 'errorHandler'), $errorLevel);
        try {
            $return = call_user_func_array($callback, $values);
        } catch (\Exception $e) {
            restore_error_handler();
            throw $e;
        }
        restore_error_handler();

        return $return;
    }
}

Behat