0

PHPUnitでオブジェクトをモックするのは初めてで、動作させることができません。私は現在の拡張を構築していますSensioGeneratorBundle(Symfony2用)。を介してインストールされたPHPUnit3.7を使用しPEARます。PHP 5.3.5で実行されています(PEARはそのバージョンにインストールされているため)。

私の剥奪されたクラスは次のとおりです。

ControllerGenerator.php

class ControllerGenerator extends Generator
{
    // ...

    public function generate(BundleInterface $bundle, $controller, array $actions = array())
    {
        // ...
    }
}

GenerateControllerCommand.php

class GenerateControllerCommand extends ContainerAwareCommand
{
    private $generator;

    /**
     * @see Command
     */
    public function configure()
    {
        // ...
    }

    public function execute(InputInterface $input, OutputInterface $output)
    {
        // ...

        $generator = $this->generator;
        $generator->generate($bundle, $controller);

        // ...
    }

    protected function getGenerator()
    {
        if (null === $this->generator) {
            $this->generator = new ControllerGenerator($this->getContainer()->get('filesystem'), __DIR__.'/../Resources/skeleton/bundle');
        }

        return $this->generator;
    }

    public function setGenerator(ControllerGenerator $generator)
    {
        $this->generator = $generator;
    }
}

GenerateControllerCommandTest.php

class GenerateControllerCommandTest extends GenerateCommandTest
{
    public function testNonInteractiveCommand()
    {
        $bundle = 'FooBarBundle';
        $controller = 'PostController';

        $input = array(
            'command' => 'generate:controller',
            '--bundle' => $bundle,
            '--controller' => $controller,
        );

        $application = $this->getApplication();
        $commandTester = $this->getCommandTester($input);
        $generator = $this->getGenerator();

        $generator
            ->expects($this->once())
            ->method('generate')
            ->with($this->getContainer()->get('kernel')->getBundle($bundle), $controller)
        ;

        $commandTester->execute($input, array('interactive' => false));
    }

    protected function getCommandTester($input = '')
    {
        return new CommandTester($this->getCommand($input));
    }

    protected function getCommand($input = '')
    {
        return $this->getApplication($input)->find('generate:controller');
    }

    protected function getApplication($input = '')
    {
        $application = new Application();

        $command = new GenerateControllerCommand();
        $command->setContainer($this->getContainer());
        $command->setHelperSet($this->getHelperSet($input));
        $command->setGenerator($this->getGenerator());

        $application->add($command);

        return $application;
    }

    protected function getGenerator()
    {
        // get a noop generator
        return $this
            ->getMockBuilder('Sensio\Bundle\GeneratorBundle\Generator\ControllerGenerator')
            ->disableOriginalConstructor()
            ->setMethods(array('generate'))
            ->getMock()
        ;
    }
}

PHPUnitを実行すると、次のエラーが発生し続けます。

 $ phpunit Tests\Command\GenerateControllerCommandTest

     PHPUnit 3.7.0 by Sebastian Bergmann.

     Configuration read from E:\Wouter\web\wamp\www\wjsnip\vendor\sensio\generator-bundle\Sensio\Bundle\GeneratorBundle\phpunit.xml.dist

     F

     Time: 2 seconds, Memory: 7.25Mb

     There was 1 failure:

     1) Sensio\Bundle\GeneratorBundle\Tests\Command\GenerateControllerCommandTest::testNonInteractiveCommand
     Expectation failed for method name is equal to <string:generate> when invoked 1 time(s).
     Method was expected to be called 1 times, actually called 0 times.

     E:\Wouter\web\wamp\bin\php\php5.3.5\PEAR\phpunit:46

     FAILURES!
     Tests: 1, Assertions: 7, Failures: 1.

なぜこのエラーが発生するのですか?メソッドでgenerateコマンドを呼び出したと思いますか?GenerateControllerCommand::execute私は何か間違ったことをしていますか、本当の可能性がありますか?それとも、これはPHPunitのバグですか?

4

1 に答える 1

2

要するに

$generator2つの異なるオブジェクトを生成します。呼び出しは一方に発生し、もう一方はそれをexpect実行します。


より長いです

動作を変更しますprotected function getGenerator()が、元の関数は、その関数を呼び出すとデータが入力されることを想定してい$this->generatorます。

テストは機能していません。関数は常に同じジェネレーターを取得することを期待しており、上書きすると、関数は2つの異なるオブジェクトを返します。

予想される呼び出しを1つに設定すると、その呼び出しはオブジェクトに対して発生します。

見ているだけ:

    $generator = $this->getGenerator();

    $generator
        ->expects($this->once())
        ->method('generate')
        ->with($this->getContainer()->get('kernel')->getBundle($bundle), $controller)
    ;

    $commandTester->execute($input, array('interactive' => false));
}

$generator変数はオブジェクトスコープのどこにも配置されないため、を呼び出すたびに、$this->getGenerator()どこにも格納されていない新しいオブジェクトが生成されるため、変数を呼び出すことはできません。

だからで

protected function getApplication() {
    //...
    $command->setGenerator($this->getGenerator());
    //...
}

テストケースとは異なるオブジェクトがあります。

于 2012-09-27T01:29:45.137 に答える