Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Output / ServiceContainer / Formatter / PrettyFormatterFactory.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Output/ServiceContainer/Formatter/PrettyFormatterFactory.php b/vendor/behat/behat/src/Behat/Behat/Output/ServiceContainer/Formatter/PrettyFormatterFactory.php
deleted file mode 100644 (file)
index 261b509..0000000
+++ /dev/null
@@ -1,469 +0,0 @@
-<?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\Output\ServiceContainer\Formatter;
-
-use Behat\Behat\Definition\ServiceContainer\DefinitionExtension;
-use Behat\Behat\EventDispatcher\Event\BackgroundTested;
-use Behat\Behat\EventDispatcher\Event\OutlineTested;
-use Behat\Behat\EventDispatcher\Event\ScenarioTested;
-use Behat\Testwork\Exception\ServiceContainer\ExceptionExtension;
-use Behat\Testwork\Output\ServiceContainer\Formatter\FormatterFactory;
-use Behat\Testwork\Output\ServiceContainer\OutputExtension;
-use Behat\Testwork\ServiceContainer\ServiceProcessor;
-use Behat\Testwork\Translator\ServiceContainer\TranslatorExtension;
-use Symfony\Component\DependencyInjection\ContainerBuilder;
-use Symfony\Component\DependencyInjection\Definition;
-use Symfony\Component\DependencyInjection\Reference;
-
-/**
- * Behat pretty formatter factory.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-class PrettyFormatterFactory implements FormatterFactory
-{
-    /**
-     * @var ServiceProcessor
-     */
-    private $processor;
-
-    /*
-     * Available services
-     */
-    const ROOT_LISTENER_ID = 'output.node.listener.pretty';
-    const RESULT_TO_STRING_CONVERTER_ID = 'output.node.printer.result_to_string';
-
-    /*
-     * Available extension points
-     */
-    const ROOT_LISTENER_WRAPPER_TAG = 'output.node.listener.pretty.wrapper';
-
-    /**
-     * Initializes extension.
-     *
-     * @param null|ServiceProcessor $processor
-     */
-    public function __construct(ServiceProcessor $processor = null)
-    {
-        $this->processor = $processor ? : new ServiceProcessor();
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function buildFormatter(ContainerBuilder $container)
-    {
-        $this->loadRootNodeListener($container);
-
-        $this->loadCorePrinters($container);
-        $this->loadTableOutlinePrinter($container);
-        $this->loadExpandedOutlinePrinter($container);
-        $this->loadHookPrinters($container);
-        $this->loadStatisticsPrinter($container);
-        $this->loadPrinterHelpers($container);
-
-        $this->loadFormatter($container);
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function processFormatter(ContainerBuilder $container)
-    {
-        $this->processListenerWrappers($container);
-    }
-
-    /**
-     * Loads pretty formatter node event listener.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function loadRootNodeListener(ContainerBuilder $container)
-    {
-        $definition = new Definition('Behat\Testwork\Output\Node\EventListener\ChainEventListener', array(
-            array(
-                new Definition('Behat\Behat\Output\Node\EventListener\AST\SuiteListener', array(
-                    new Reference('output.node.printer.pretty.suite_setup')
-                )),
-                new Definition('Behat\Behat\Output\Node\EventListener\AST\FeatureListener', array(
-                    new Reference('output.node.printer.pretty.feature'),
-                    new Reference('output.node.printer.pretty.feature_setup')
-                )),
-                $this->proxySiblingEvents(
-                    BackgroundTested::BEFORE,
-                    BackgroundTested::AFTER,
-                    array(
-                        new Definition('Behat\Behat\Output\Node\EventListener\AST\ScenarioNodeListener', array(
-                            BackgroundTested::AFTER_SETUP,
-                            BackgroundTested::AFTER,
-                            new Reference('output.node.printer.pretty.scenario')
-                        )),
-                        new Definition('Behat\Behat\Output\Node\EventListener\AST\StepListener', array(
-                            new Reference('output.node.printer.pretty.step'),
-                            new Reference('output.node.printer.pretty.step_setup')
-                        )),
-                    )
-                ),
-                $this->proxySiblingEvents(
-                    ScenarioTested::BEFORE,
-                    ScenarioTested::AFTER,
-                    array(
-                        new Definition('Behat\Behat\Output\Node\EventListener\AST\ScenarioNodeListener', array(
-                            ScenarioTested::AFTER_SETUP,
-                            ScenarioTested::AFTER,
-                            new Reference('output.node.printer.pretty.scenario'),
-                            new Reference('output.node.printer.pretty.scenario_setup')
-                        )),
-                        new Definition('Behat\Behat\Output\Node\EventListener\AST\StepListener', array(
-                            new Reference('output.node.printer.pretty.step'),
-                            new Reference('output.node.printer.pretty.step_setup')
-                        )),
-                    )
-                ),
-                $this->proxySiblingEvents(
-                    OutlineTested::BEFORE,
-                    OutlineTested::AFTER,
-                    array(
-                        $this->proxyEventsIfParameterIsSet(
-                            'expand',
-                            false,
-                            new Definition('Behat\Behat\Output\Node\EventListener\AST\OutlineTableListener', array(
-                                new Reference('output.node.printer.pretty.outline_table'),
-                                new Reference('output.node.printer.pretty.example_row'),
-                                new Reference('output.node.printer.pretty.example_setup'),
-                                new Reference('output.node.printer.pretty.example_step_setup')
-                            ))
-                        ),
-                        $this->proxyEventsIfParameterIsSet(
-                            'expand',
-                            true,
-                            new Definition('Behat\Behat\Output\Node\EventListener\AST\OutlineListener', array(
-                                new Reference('output.node.printer.pretty.outline'),
-                                new Reference('output.node.printer.pretty.example'),
-                                new Reference('output.node.printer.pretty.example_step'),
-                                new Reference('output.node.printer.pretty.example_setup'),
-                                new Reference('output.node.printer.pretty.example_step_setup')
-                            ))
-                        )
-                    )
-                ),
-            )
-        ));
-        $container->setDefinition(self::ROOT_LISTENER_ID, $definition);
-    }
-
-    /**
-     * Loads formatter itself.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function loadFormatter(ContainerBuilder $container)
-    {
-        $definition = new Definition('Behat\Behat\Output\Statistics\TotalStatistics');
-        $container->setDefinition('output.pretty.statistics', $definition);
-
-        $definition = new Definition('Behat\Testwork\Output\NodeEventListeningFormatter', array(
-            'pretty',
-            'Prints the feature as is.',
-            array(
-                'timer'     => true,
-                'expand'    => false,
-                'paths'     => true,
-                'multiline' => true,
-            ),
-            $this->createOutputPrinterDefinition(),
-            new Definition('Behat\Testwork\Output\Node\EventListener\ChainEventListener', array(
-                    array(
-                        $this->rearrangeBackgroundEvents(
-                            new Reference(self::ROOT_LISTENER_ID)
-                        ),
-                        new Definition('Behat\Behat\Output\Node\EventListener\Statistics\StatisticsListener', array(
-                            new Reference('output.pretty.statistics'),
-                            new Reference('output.node.printer.pretty.statistics')
-                        )),
-                        new Definition('Behat\Behat\Output\Node\EventListener\Statistics\ScenarioStatsListener', array(
-                            new Reference('output.pretty.statistics')
-                        )),
-                        new Definition('Behat\Behat\Output\Node\EventListener\Statistics\StepStatsListener', array(
-                            new Reference('output.pretty.statistics'),
-                            new Reference(ExceptionExtension::PRESENTER_ID)
-                        )),
-                    )
-                )
-            )
-        ));
-        $definition->addTag(OutputExtension::FORMATTER_TAG, array('priority' => 100));
-        $container->setDefinition(OutputExtension::FORMATTER_TAG . '.pretty', $definition);
-    }
-
-    /**
-     * Loads feature, scenario and step printers.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function loadCorePrinters(ContainerBuilder $container)
-    {
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyFeaturePrinter');
-        $container->setDefinition('output.node.printer.pretty.feature', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyPathPrinter', array(
-            new Reference('output.node.printer.pretty.width_calculator'),
-            '%paths.base%'
-        ));
-        $container->setDefinition('output.node.printer.pretty.path', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyScenarioPrinter', array(
-            new Reference('output.node.printer.pretty.path'),
-        ));
-        $container->setDefinition('output.node.printer.pretty.scenario', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyStepPrinter', array(
-            new Reference('output.node.printer.pretty.step_text_painter'),
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference('output.node.printer.pretty.path'),
-            new Reference(ExceptionExtension::PRESENTER_ID)
-        ));
-        $container->setDefinition('output.node.printer.pretty.step', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettySkippedStepPrinter', array(
-            new Reference('output.node.printer.pretty.step_text_painter'),
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference('output.node.printer.pretty.path'),
-        ));
-        $container->setDefinition('output.node.printer.pretty.skipped_step', $definition);
-    }
-
-    /**
-     * Loads table outline printer.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function loadTableOutlinePrinter(ContainerBuilder $container)
-    {
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyOutlineTablePrinter', array(
-            new Reference('output.node.printer.pretty.scenario'),
-            new Reference('output.node.printer.pretty.skipped_step'),
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID)
-        ));
-        $container->setDefinition('output.node.printer.pretty.outline_table', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyExampleRowPrinter', array(
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference(ExceptionExtension::PRESENTER_ID)
-        ));
-        $container->setDefinition('output.node.printer.pretty.example_row', $definition);
-    }
-
-    /**
-     * Loads expanded outline printer.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function loadExpandedOutlinePrinter(ContainerBuilder $container)
-    {
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyOutlinePrinter', array(
-            new Reference('output.node.printer.pretty.scenario'),
-            new Reference('output.node.printer.pretty.skipped_step'),
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID)
-        ));
-        $container->setDefinition('output.node.printer.pretty.outline', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyExamplePrinter', array(
-            new Reference('output.node.printer.pretty.path'),
-        ));
-        $container->setDefinition('output.node.printer.pretty.example', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyStepPrinter', array(
-            new Reference('output.node.printer.pretty.step_text_painter'),
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference('output.node.printer.pretty.path'),
-            new Reference(ExceptionExtension::PRESENTER_ID),
-            8
-        ));
-        $container->setDefinition('output.node.printer.pretty.example_step', $definition);
-    }
-
-    /**
-     * Loads hook printers.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function loadHookPrinters(ContainerBuilder $container)
-    {
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettySetupPrinter', array(
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference(ExceptionExtension::PRESENTER_ID),
-            0,
-            true,
-            true
-        ));
-        $container->setDefinition('output.node.printer.pretty.suite_setup', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettySetupPrinter', array(
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference(ExceptionExtension::PRESENTER_ID),
-            0,
-            false,
-            true
-        ));
-        $container->setDefinition('output.node.printer.pretty.feature_setup', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettySetupPrinter', array(
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference(ExceptionExtension::PRESENTER_ID),
-            2
-        ));
-        $container->setDefinition('output.node.printer.pretty.scenario_setup', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettySetupPrinter', array(
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference(ExceptionExtension::PRESENTER_ID),
-            4
-        ));
-        $container->setDefinition('output.node.printer.pretty.step_setup', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettySetupPrinter', array(
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference(ExceptionExtension::PRESENTER_ID),
-            8
-        ));
-        $container->setDefinition('output.node.printer.pretty.example_step_setup', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettySetupPrinter', array(
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference(ExceptionExtension::PRESENTER_ID),
-            6
-        ));
-        $container->setDefinition('output.node.printer.pretty.example_setup', $definition);
-    }
-
-    /**
-     * Loads statistics printer.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function loadStatisticsPrinter(ContainerBuilder $container)
-    {
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\CounterPrinter', array(
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference(TranslatorExtension::TRANSLATOR_ID),
-        ));
-        $container->setDefinition('output.node.printer.counter', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\ListPrinter', array(
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID),
-            new Reference(ExceptionExtension::PRESENTER_ID),
-            new Reference(TranslatorExtension::TRANSLATOR_ID),
-            '%paths.base%'
-        ));
-        $container->setDefinition('output.node.printer.list', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Pretty\PrettyStatisticsPrinter', array(
-            new Reference('output.node.printer.counter'),
-            new Reference('output.node.printer.list')
-        ));
-        $container->setDefinition('output.node.printer.pretty.statistics', $definition);
-    }
-
-    /**
-     * Loads printer helpers.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function loadPrinterHelpers(ContainerBuilder $container)
-    {
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Helper\WidthCalculator');
-        $container->setDefinition('output.node.printer.pretty.width_calculator', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Helper\StepTextPainter', array(
-            new Reference(DefinitionExtension::PATTERN_TRANSFORMER_ID),
-            new Reference(self::RESULT_TO_STRING_CONVERTER_ID)
-        ));
-        $container->setDefinition('output.node.printer.pretty.step_text_painter', $definition);
-
-        $definition = new Definition('Behat\Behat\Output\Node\Printer\Helper\ResultToStringConverter');
-        $container->setDefinition(self::RESULT_TO_STRING_CONVERTER_ID, $definition);
-    }
-
-    /**
-     * Creates output printer definition.
-     *
-     * @return Definition
-     */
-    protected function createOutputPrinterDefinition()
-    {
-        return new Definition('Behat\Testwork\Output\Printer\StreamOutputPrinter', array(
-            new Definition('Behat\Behat\Output\Printer\ConsoleOutputFactory'),
-        ));
-    }
-
-    /**
-     * Creates root listener definition.
-     *
-     * @param mixed $listener
-     *
-     * @return Definition
-     */
-    protected function rearrangeBackgroundEvents($listener)
-    {
-        return new Definition('Behat\Behat\Output\Node\EventListener\Flow\FirstBackgroundFiresFirstListener', array(
-            new Definition('Behat\Behat\Output\Node\EventListener\Flow\OnlyFirstBackgroundFiresListener', array(
-                $listener
-            ))
-        ));
-    }
-
-    /**
-     * Creates contextual proxy listener.
-     *
-     * @param string       $beforeEventName
-     * @param string       $afterEventName
-     * @param Definition[] $listeners
-     *
-     * @return Definition
-     */
-    protected function proxySiblingEvents($beforeEventName, $afterEventName, array $listeners)
-    {
-        return new Definition('Behat\Behat\Output\Node\EventListener\Flow\FireOnlySiblingsListener',
-            array(
-                $beforeEventName,
-                $afterEventName,
-                new Definition('Behat\Testwork\Output\Node\EventListener\ChainEventListener', array($listeners))
-            )
-        );
-    }
-
-    /**
-     * Creates contextual proxy listener.
-     *
-     * @param string $name
-     * @param mixed  $value
-     * @param mixed  $listener
-     *
-     * @return Definition
-     */
-    protected function proxyEventsIfParameterIsSet($name, $value, Definition $listener)
-    {
-        return new Definition('Behat\Testwork\Output\Node\EventListener\Flow\FireOnlyIfFormatterParameterListener',
-            array($name, $value, $listener)
-        );
-    }
-
-    /**
-     * Processes all registered pretty formatter node listener wrappers.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function processListenerWrappers(ContainerBuilder $container)
-    {
-        $this->processor->processWrapperServices($container, self::ROOT_LISTENER_ID, self::ROOT_LISTENER_WRAPPER_TAG);
-    }
-}