Symfony - 运行单元测试时无法访问控制台命令

时间:2017-11-06 16:25:35

标签: symfony unit-testing symfony-3.3 symfony-console symfony3.x

我正在尝试在运行phpunit测试时从php代码运行fixture命令。 它最终出现以下错误: Symfony\\Component\\Console\\Exception\\CommandNotFoundException] There are no commands defined in the \u0022doctrine:fixtures

我必须说我一直在我的控制器上运行相同的东西,它运作得很好。它不仅无法找到doctrine:fixtures命令,还能找到所有其他命令。

在运行测试时,好像所有命令都无法访问。

这是我的代码:

namespace tests\functional\User\ManagerBundle\Controller;    

use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Output\BufferedOutput;

class ClassControllerTest extends WebTestCase
{
   protected function setUp()
   {
        $client = static::createClient();

        $application = new Application($client->getKernel());
        $application->setAutoExit(false);

        $input = new ArrayInput(array(
            'command' => 'doctrine:fixtures:load',
            // (optional) define the value of command arguments
//            'fooArgument' => 'barValue',
            // (optional) pass options to the command
            '--no-interaction' => true,
            '--env' => 'TEST'
        ));

        // You can use NullOutput() if you don't need the output
        $output = new BufferedOutput();
        $application->run($input, $output);

        // return the output, don't use if you used NullOutput()
        $content = $output->fetch();

        var_dump(new JsonResponse($content));

   }
}

1 个答案:

答案 0 :(得分:1)

简单回答:

我必须使用以下声明

use Symfony\Bundle\FrameworkBundle\Console\Application;

而不是

use Symfony\Component\Console\Application;