Laravel / Symfony - 如何在控制台命令中测试确认?

时间:2014-09-08 17:49:54

标签: php unit-testing symfony laravel laravel-4

我知道我可以通过传递参数和选项来单元测试控制台命令:

$command->run(new ArrayInput($data), new NullOutput);

但是,如果我想使用confirm() method in Laravel

为我的命令添加确认对话框,该怎么办?

2 个答案:

答案 0 :(得分:2)

您是否阅读过Symfony网站上的示例?

http://symfony.com/doc/current/components/console/helpers/dialoghelper.html#testing-a-command-which-expects-input

如果您有但仍无法使其正常工作,请告诉我们。

答案 1 :(得分:0)

我忘了提到我正在使用PHPSpec进行单元测试。

最后,我想出了如何用它来测试确认。

这些是use陈述:

use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\NullOutput;
use Symfony\Component\Console\Helper\QuestionHelper;
use Symfony\Component\Console\Helper\HelperSet;

这是一个样本测试:

public function it_fires_the_command(QuestionHelper $question, HelperSet $helpers)
{
    // $data is an array containing arguments and options for the console command
    $input = new ArrayInput($data);

    $output = new NullOutput;

    // $query must be an instance of ConfirmationQuestion
    $query = Argument::type('Symfony\Component\Console\Question\ConfirmationQuestion');

    // with "willReturn" we can decide whether (TRUE) or not (FALSE) the user confirms
    $question->ask($input, $output, $query)->willReturn(true);

    // we expect the HelperSet to be invoked returning the mocked QuestionHelper
    $helpers->get('question')->willReturn($question);

    // finally we set the mocked HelperSet in our console command...
    $this->setHelperSet($helpers);

    // ...and run it
    $this->run($input, $output);
}