Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Suite / Cli / SuiteController.php
diff --git a/vendor/behat/behat/src/Behat/Testwork/Suite/Cli/SuiteController.php b/vendor/behat/behat/src/Behat/Testwork/Suite/Cli/SuiteController.php
new file mode 100644 (file)
index 0000000..ea1a23a
--- /dev/null
@@ -0,0 +1,83 @@
+<?php
+
+/*
+ * This file is part of the Behat Testwork.
+ * (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\Testwork\Suite\Cli;
+
+use Behat\Testwork\Cli\Controller;
+use Behat\Testwork\Suite\Exception\SuiteNotFoundException;
+use Behat\Testwork\Suite\SuiteRegistry;
+use Symfony\Component\Console\Command\Command;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+
+/**
+ * Sets up registered test suites.
+ *
+ * @author Konstantin Kudryashov <ever.zet@gmail.com>
+ */
+final class SuiteController implements Controller
+{
+    /**
+     * @var SuiteRegistry
+     */
+    private $registry;
+    /**
+     * @var array
+     */
+    private $suiteConfigurations = array();
+
+    /**
+     * Initializes controller.
+     *
+     * @param SuiteRegistry $registry
+     * @param array         $suiteConfigurations
+     */
+    public function __construct(SuiteRegistry $registry, array $suiteConfigurations)
+    {
+        $this->registry = $registry;
+        $this->suiteConfigurations = $suiteConfigurations;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function configure(Command $command)
+    {
+        $command->addOption('--suite', '-s', InputOption::VALUE_REQUIRED,
+            'Only execute a specific suite.'
+        );
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function execute(InputInterface $input, OutputInterface $output)
+    {
+        $exerciseSuiteName = $input->getOption('suite');
+
+        if (null !== $exerciseSuiteName && !isset($this->suiteConfigurations[$exerciseSuiteName])) {
+            throw new SuiteNotFoundException(sprintf(
+                '`%s` suite is not found or has not been properly registered.',
+                $exerciseSuiteName
+            ), $exerciseSuiteName);
+        }
+
+        foreach ($this->suiteConfigurations as $name => $config) {
+            if (null !== $exerciseSuiteName && $exerciseSuiteName !== $name) {
+                continue;
+            }
+
+            $this->registry->registerSuiteConfiguration(
+                $name, $config['type'], $config['settings']
+            );
+        }
+    }
+}