vendor/symfony/src/Symfony/Bundle/DoctrineBundle/Tests/Command/InfoDoctrineCommandTest.php
author ymh <ymh.work@gmail.com>
Sat, 24 Sep 2011 15:40:41 +0200
changeset 0 7f95f8617b0b
permissions -rwxr-xr-x
first commit

<?php

/*
 * This file is part of the Symfony framework.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */

namespace Symfony\Bundle\DoctrineBundle\Tests\Command;

use Symfony\Bundle\DoctrineBundle\Tests\TestCase;
use Symfony\Bundle\DoctrineBundle\Command\InfoDoctrineCommand;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\StringInput;

require_once __DIR__.'/../DependencyInjection/Fixtures/Bundles/YamlBundle/Entity/Test.php';

class InfoDoctrineCommandTest extends TestCase
{
    public function testAnnotationsBundle()
    {
        $input = new StringInput('doctrine:mapping:info');
        $output = $this->getMock('Symfony\Component\Console\Output\OutputInterface');
        $output->expects($this->at(0))
               ->method('writeln')
               ->with($this->equalTo('Found <info>1</info> entities mapped in entity manager <info>default</info>:'));
        $output->expects($this->at(1))
               ->method('writeln')
               ->with($this->equalTo('<info>[OK]</info>   Fixtures\Bundles\YamlBundle\Entity\Test'));

        $testContainer = $this->createYamlBundleTestContainer();
        $kernel = $this->getMock('Symfony\Component\HttpKernel\Kernel', array(), array(), '', false);
        $kernel->expects($this->once())
               ->method('getContainer')
               ->will($this->returnValue($testContainer));
        $application = new Application($kernel);

        $cmd = new InfoDoctrineCommand();
        $cmd->setApplication($application);
        $cmd->run($input, $output);
    }
}