Behat


Behat/Behat/Hook/Annotation/ScenarioHook.php



namespace Behat\Behat\Hook\Annotation;

use Behat\Behat\Event\EventInterface,
    Behat\Behat\Event\ScenarioEvent;

use Behat\Gherkin\Filter\TagFilter,
    Behat\Gherkin\Filter\NameFilter;

/*
 * 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.
 */

/**
 * ScenarioHook hook class.
 *
 * @author Konstantin Kudryashov 
 */
abstract class ScenarioHook extends FilterableHook
{
    /**
     * {@inheritdoc}
     */
    public function filterMatches(EventInterface $event)
    {
        if (null === ($filterString = $this->getFilter())) {
            return true;
        }

        if ($event instanceof ScenarioEvent) {
            $scenario = $event->getScenario();
        } else {
            $scenario = $event->getOutline();
        }

        if (false !== strpos($filterString, '@')) {
            $filter = new TagFilter($filterString);

            if ($filter->isScenarioMatch($scenario)) {
                return true;
            }
        } elseif (!empty($filterString)) {
            $filter = new NameFilter($filterString);

            if ($filter->isScenarioMatch($scenario)) {
                return true;
            }
        }

        return false;
    }

    /**
     * Runs hook callback.
     *
     * @param EventInterface $event
     */
    public function run(EventInterface $event)
    {
        call_user_func($this->getCallbackForContext($event->getContext()), $event);
    }
}

Behat