--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/bundles/Sensio/Bundle/GeneratorBundle/Tests/Command/GenerateDoctrineEntityCommandTest.php Sat Sep 24 15:40:41 2011 +0200
@@ -0,0 +1,104 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Sensio\Bundle\GeneratorBundle\Tests\Command;
+
+use Symfony\Component\Console\Helper\HelperSet;
+use Symfony\Component\Console\Helper\FormatterHelper;
+use Symfony\Component\Console\Output\StreamOutput;
+use Symfony\Component\Console\Tester\CommandTester;
+use Sensio\Bundle\GeneratorBundle\Command\GenerateDoctrineEntityCommand;
+use Sensio\Bundle\GeneratorBundle\Command\Helper\DialogHelper;
+use Symfony\Component\DependencyInjection\Container;
+
+class GenerateDoctrineEntityCommandTest extends GenerateCommandTest
+{
+ /**
+ * @dataProvider getInteractiveCommandData
+ */
+ public function testInteractiveCommand($options, $input, $expected)
+ {
+ list($entity, $format, $fields) = $expected;
+
+ $generator = $this->getGenerator();
+ $generator
+ ->expects($this->once())
+ ->method('generate')
+ ->with($this->getBundle(), $entity, $format, $fields)
+ ;
+
+ $tester = new CommandTester($this->getCommand($generator, $input));
+ $tester->execute($options);
+ }
+
+ public function getInteractiveCommandData()
+ {
+ return array(
+ array(array(), "AcmeBlogBundle:Blog/Post\n", array('Blog\\Post', 'annotation', array())),
+ array(array('--entity' => 'AcmeBlogBundle:Blog/Post'), '', array('Blog\\Post', 'annotation', array())),
+ array(array(), "AcmeBlogBundle:Blog/Post\nyml\n\n", array('Blog\\Post', 'yml', array())),
+ array(array(), "AcmeBlogBundle:Blog/Post\nyml\ntitle\n\n255\ndescription\ntext\n\n", array('Blog\\Post', 'yml', array(
+ array('fieldName' => 'title', 'type' => 'string', 'length' => 255),
+ array('fieldName' => 'description', 'type' => 'text'),
+ ))),
+ );
+ }
+
+ /**
+ * @dataProvider getNonInteractiveCommandData
+ */
+ public function testNonInteractiveCommand($options, $expected)
+ {
+ list($entity, $format, $fields) = $expected;
+
+ $generator = $this->getGenerator();
+ $generator
+ ->expects($this->once())
+ ->method('generate')
+ ->with($this->getBundle(), $entity, $format, $fields)
+ ;
+
+ $tester = new CommandTester($this->getCommand($generator, ''));
+ $tester->execute($options, array('interactive' => false));
+ }
+
+ public function getNonInteractiveCommandData()
+ {
+ return array(
+ array(array('--entity' => 'AcmeBlogBundle:Blog/Post'), array('Blog\\Post', 'annotation', array())),
+ array(array('--entity' => 'AcmeBlogBundle:Blog/Post', '--format' => 'yml', '--fields' => 'title:string(255) description:text'), array('Blog\\Post', 'yml', array(
+ array('fieldName' => 'title', 'type' => 'string', 'length' => 255),
+ array('fieldName' => 'description', 'type' => 'text', 'length' => ''),
+ ))),
+ );
+ }
+
+ protected function getCommand($generator, $input)
+ {
+ $command = new GenerateDoctrineEntityCommand();
+ $command->setContainer($this->getContainer());
+ $command->setHelperSet($this->getHelperSet($input));
+ $command->setGenerator($generator);
+
+ return $command;
+ }
+
+ protected function getGenerator()
+ {
+ // get a noop generator
+ return $this
+ ->getMockBuilder('Sensio\Bundle\GeneratorBundle\Generator\DoctrineEntityGenerator')
+ ->disableOriginalConstructor()
+ ->setMethods(array('generate'))
+ ->getMock()
+ ;
+ }
+}