user_saml/tests/integration/vendor/behat/behat/src/Behat/Behat/Hook/ServiceContainer/HookExtension.php
Arthur Schiwon 3435d5093a
update behat and deps
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-04-07 17:00:47 +02:00

105 lines
4.1 KiB
PHP

<?php
/*
* This file is part of the Behat.
* (c) Konstantin Kudryashov <ever.zet@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Behat\Behat\Hook\ServiceContainer;
use Behat\Behat\Context\ServiceContainer\ContextExtension;
use Behat\Behat\Definition\ServiceContainer\DefinitionExtension;
use Behat\Behat\Tester\ServiceContainer\TesterExtension;
use Behat\Testwork\Hook\ServiceContainer\HookExtension as BaseExtension;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;
/**
* Extends Testwork HookExtension with additional behat services.
*
* @author Konstantin Kudryashov <ever.zet@gmail.com>
*/
final class HookExtension extends BaseExtension
{
/**
* {@inheritdoc}
*/
public function load(ContainerBuilder $container, array $config)
{
parent::load($container, $config);
$this->loadAnnotationReader($container);
$this->loadAttributeReader($container);
}
/**
* Loads hookable testers.
*
* @param ContainerBuilder $container
*/
protected function loadHookableTesters(ContainerBuilder $container)
{
parent::loadHookableTesters($container);
$definition = new Definition('Behat\Behat\Hook\Tester\HookableFeatureTester', array(
new Reference(TesterExtension::SPECIFICATION_TESTER_ID),
new Reference(self::DISPATCHER_ID)
));
$definition->addTag(TesterExtension::SPECIFICATION_TESTER_WRAPPER_TAG, array('priority' => 9999));
$container->setDefinition(TesterExtension::SPECIFICATION_TESTER_WRAPPER_TAG . '.hookable', $definition);
$definition = new Definition('Behat\Behat\Hook\Tester\HookableScenarioTester', array(
new Reference(TesterExtension::SCENARIO_TESTER_ID),
new Reference(self::DISPATCHER_ID)
)
);
$definition->addTag(TesterExtension::SCENARIO_TESTER_WRAPPER_TAG, array('priority' => 9999));
$container->setDefinition(TesterExtension::SCENARIO_TESTER_WRAPPER_TAG . '.hookable', $definition);
$definition = new Definition('Behat\Behat\Hook\Tester\HookableScenarioTester', array(
new Reference(TesterExtension::EXAMPLE_TESTER_ID),
new Reference(self::DISPATCHER_ID)
)
);
$definition->addTag(TesterExtension::EXAMPLE_TESTER_WRAPPER_TAG, array('priority' => 9999));
$container->setDefinition(TesterExtension::EXAMPLE_TESTER_WRAPPER_TAG . '.hookable', $definition);
$definition = new Definition('Behat\Behat\Hook\Tester\HookableStepTester', array(
new Reference(TesterExtension::STEP_TESTER_ID),
new Reference(self::DISPATCHER_ID)
));
$definition->addTag(TesterExtension::STEP_TESTER_WRAPPER_TAG, array('priority' => 9999));
$container->setDefinition(TesterExtension::STEP_TESTER_WRAPPER_TAG . '.hookable', $definition);
}
/**
* Loads hook annotation reader.
*
* @param ContainerBuilder $container
*/
private function loadAnnotationReader(ContainerBuilder $container)
{
$definition = new Definition('Behat\Behat\Hook\Context\Annotation\HookAnnotationReader');
$definition->addTag(ContextExtension::ANNOTATION_READER_TAG, array('priority' => 50));
$container->setDefinition(ContextExtension::ANNOTATION_READER_TAG . '.hook', $definition);
}
/**
* Loads hook attribute reader.
*
* @param ContainerBuilder $container
*/
private function loadAttributeReader(ContainerBuilder $container)
{
$definition = new Definition('\Behat\Behat\Hook\Context\Attribute\HookAttributeReader', array(
new Reference(DefinitionExtension::DOC_BLOCK_HELPER_ID)
));
$definition->addTag(ContextExtension::ATTRIBUTE_READER_TAG, array('priority' => 50));
$container->setDefinition(ContextExtension::ATTRIBUTE_READER_TAG . '.hook', $definition);
}
}