web-dev-qa-db-ja.com

Laravel 5で職人コマンドをテストする方法

ソケットからデータを受信するアーティザンコマンドを作成し、このコマンドの単体テストを作成したいのですが、そのようなテストの書き方がわかりません。

誰がそれを書く方法を考えていますか?

31
Thomas.Yu

今でははるかに簡単です:

<?php

class YourCommandTest extends TestCase
{

    public function testExample()
    {
        $this->artisan('command', ['param' => 'value']);
    }

}
26
Roma Rush

テストの例

<?php

class YourCommandTest extends TestCase
{
    public function testExample()
    {
        Artisan::call('your_command', [
            'command_parameter_1' => 'value1',
            'command_parameter_2' => 'value2',
        ]);

        // If you need result of console output
        $resultAsText = Artisan::output();

        $this->assertTrue(true);
    }

}
43
mnv

誰かに役立つかもしれない

Laravel 5.7の職人コマンドのテストケース

public function test_console_command()
{
    $this->artisan('your_command')
         ->expectsQuestion('What is your name?', 'Ajay Makwana')
         ->expectsQuestion('Which language do you program in?', 'PHP')
         ->expectsOutput('Your name is Ajay Makwana and you program in PHP.')
         ->assertExitCode(0);
}

https://laravel-news.com/testing-artisan-commands-in-laravel-5-7

2
Ajay