Version 1
[yaffs-website] / vendor / drupal / console / Test / Command / GeneratorPluginBlockCommandTest.php
diff --git a/vendor/drupal/console/Test/Command/GeneratorPluginBlockCommandTest.php b/vendor/drupal/console/Test/Command/GeneratorPluginBlockCommandTest.php
new file mode 100644 (file)
index 0000000..0cbf0f8
--- /dev/null
@@ -0,0 +1,68 @@
+<?php
+/**
+ * @file
+ * Contains \Drupal\Console\Test\Command\GeneratorPluginBlockCommandTest.
+ */
+
+namespace Drupal\Console\Test\Command;
+
+use Drupal\Console\Command\Generate\PluginBlockCommand;
+use Symfony\Component\Console\Tester\CommandTester;
+use Drupal\Console\Test\DataProvider\PluginBlockDataProviderTrait;
+
+class GeneratorPluginBlockCommandTest extends GenerateCommandTest
+{
+    use PluginBlockDataProviderTrait;
+    
+    /**
+     * Plugin block generator test
+     *
+     * @param $module
+     * @param $class_name
+     * @param $label
+     * @param $plugin_id
+     *
+     * @dataProvider commandData
+     */
+    public function testGeneratePluginBlock(
+        $module,
+        $class_name,
+        $label,
+        $plugin_id,
+        $services,
+        $inputs
+    ) {
+        $command = new PluginBlockCommand($this->getHelperSet());
+        $command->setHelperSet($this->getHelperSet());
+        $command->setGenerator($this->getGenerator());
+
+        $commandTester = new CommandTester($command);
+
+        $this->markTestIncomplete(
+            'This test has not been implemented yet.'
+        );
+
+        $code = $commandTester->execute(
+            [
+              '--module'         => $module,
+              '--class'     => $class_name,
+              '--label'          => $label,
+              '--plugin-id'      => $plugin_id,
+              '--services'       => $services,
+              '--inputs'         => $inputs
+            ],
+            ['interactive' => false]
+        );
+
+        $this->assertEquals(0, $code);
+    }
+
+    private function getGenerator()
+    {
+        return $this
+            ->getMockBuilder('Drupal\Console\Generator\PluginBlockGenerator')
+            ->disableOriginalConstructor()
+            ->setMethods(['generate'])
+            ->getMock();
+    }
+}