Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Context / Cli / ContextSnippetsController.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Context/Cli/ContextSnippetsController.php b/vendor/behat/behat/src/Behat/Behat/Context/Cli/ContextSnippetsController.php
new file mode 100644 (file)
index 0000000..3a6edf6
--- /dev/null
@@ -0,0 +1,91 @@
+<?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\Context\Cli;
+
+use Behat\Behat\Context\Snippet\Generator\AggregatePatternIdentifier;
+use Behat\Behat\Context\Snippet\Generator\ContextInterfaceBasedContextIdentifier;
+use Behat\Behat\Context\Snippet\Generator\ContextInterfaceBasedPatternIdentifier;
+use Behat\Behat\Context\Snippet\Generator\ContextSnippetGenerator;
+use Behat\Behat\Context\Snippet\Generator\FixedContextIdentifier;
+use Behat\Behat\Context\Snippet\Generator\FixedPatternIdentifier;
+use Behat\Behat\Context\Snippet\Generator\AggregateContextIdentifier;
+use Behat\Testwork\Cli\Controller;
+use Symfony\Component\Console\Command\Command as SymfonyCommand;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Translation\TranslatorInterface;
+
+/**
+ * Configures which context snippets are generated for.
+ *
+ * @author Konstantin Kudryashov <ever.zet@gmail.com>
+ */
+final class ContextSnippetsController implements Controller
+{
+    /**
+     * @var ContextSnippetGenerator
+     */
+    private $generator;
+    /**
+     * @var TranslatorInterface
+     */
+    private $translator;
+
+    /**
+     * Initialises controller.
+     *
+     * @param ContextSnippetGenerator $generator
+     * @param TranslatorInterface     $translator
+     */
+    public function __construct(ContextSnippetGenerator $generator, TranslatorInterface $translator)
+    {
+        $this->generator = $generator;
+        $this->translator = $translator;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function configure(SymfonyCommand $command)
+    {
+        $command
+            ->addOption(
+                '--snippets-for', null, InputOption::VALUE_OPTIONAL,
+                "Specifies which context class to generate snippets for."
+            )
+            ->addOption(
+                '--snippets-type', null, InputOption::VALUE_REQUIRED,
+                "Specifies which type of snippets (turnip, regex) to generate."
+            );
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function execute(InputInterface $input, OutputInterface $output)
+    {
+        $this->generator->setContextIdentifier(
+            new AggregateContextIdentifier(array(
+                new ContextInterfaceBasedContextIdentifier(),
+                new FixedContextIdentifier($input->getOption('snippets-for')),
+                new InteractiveContextIdentifier($this->translator, $input, $output)
+            ))
+        );
+
+        $this->generator->setPatternIdentifier(
+            new AggregatePatternIdentifier(array(
+                new ContextInterfaceBasedPatternIdentifier(),
+                new FixedPatternIdentifier($input->getOption('snippets-type'))
+            ))
+        );
+    }
+}