Introduction
HTTP テストを簡素化するだけでなく、Laravel はアプリケーションの カスタムコンソールコマンド をテストするためのシンプルな API を提供します。
Success / Failure Expectations
始めるにあたり、Artisan コマンドの終了コードに関するアサーションの作成方法を探ってみましょう。これを達成するために、artisan
メソッドを使用してテストから Artisan コマンドを呼び出します。その後、assertExitCode
メソッドを使用して、コマンドが指定された終了コードで完了したことをアサートします:
test('console command', function () {
$this->artisan('inspire')->assertExitCode(0);
});
/**
* Test a console command.
*/
public function test_console_command(): void
{
$this->artisan('inspire')->assertExitCode(0);
}
assertNotExitCode
メソッドを使用して、コマンドが指定された終了コードで終了しなかったことをアサートすることもできます:
$this->artisan('inspire')->assertNotExitCode(1);
もちろん、すべてのターミナルコマンドは通常、成功した場合は 0
のステータスコードで終了し、成功しなかった場合は非ゼロの終了コードで終了します。したがって、便利のために、assertSuccessful
および assertFailed
アサーションを利用して、指定されたコマンドが成功した終了コードで終了したかどうかをアサートできます:
$this->artisan('inspire')->assertSuccessful();
$this->artisan('inspire')->assertFailed();
Input / Output Expectations
Laravel は、expectsQuestion
メソッドを使用してコンソールコマンドのユーザー入力を簡単に「モック」することを可能にします。さらに、assertExitCode
および expectsOutput
メソッドを使用して、コンソールコマンドから出力されることを期待する終了コードとテキストを指定できます。たとえば、次のコンソールコマンドを考えてみましょう:
Artisan::command('question', function () {
$name = $this->ask('What is your name?');
$language = $this->choice('Which language do you prefer?', [
'PHP',
'Ruby',
'Python',
]);
$this->line('Your name is '.$name.' and you prefer '.$language.'.');
});
このコマンドを次のテストでテストできます:
test('console command', function () {
$this->artisan('question')
->expectsQuestion('What is your name?', 'Taylor Otwell')
->expectsQuestion('Which language do you prefer?', 'PHP')
->expectsOutput('Your name is Taylor Otwell and you prefer PHP.')
->doesntExpectOutput('Your name is Taylor Otwell and you prefer Ruby.')
->assertExitCode(0);
});
/**
* Test a console command.
*/
public function test_console_command(): void
{
$this->artisan('question')
->expectsQuestion('What is your name?', 'Taylor Otwell')
->expectsQuestion('Which language do you prefer?', 'PHP')
->expectsOutput('Your name is Taylor Otwell and you prefer PHP.')
->doesntExpectOutput('Your name is Taylor Otwell and you prefer Ruby.')
->assertExitCode(0);
}
Laravel Prompts によって提供される search
または multisearch
関数を利用している場合、expectsSearch
アサーションを使用してユーザーの入力、検索結果、および選択をモックできます:
test('console command', function () {
$this->artisan('example')
->expectsSearch('What is your name?', search: 'Tay', answers: [
'Taylor Otwell',
'Taylor Swift',
'Darian Taylor'
], answer: 'Taylor Otwell')
->assertExitCode(0);
});
/**
* Test a console command.
*/
public function test_console_command(): void
{
$this->artisan('example')
->expectsSearch('What is your name?', search: 'Tay', answers: [
'Taylor Otwell',
'Taylor Swift',
'Darian Taylor'
], answer: 'Taylor Otwell')
->assertExitCode(0);
}
doesntExpectOutput
メソッドを使用して、コンソールコマンドが出力を生成しないことをアサートすることもできます:
test('console command', function () {
$this->artisan('example')
->doesntExpectOutput()
->assertExitCode(0);
});
/**
* Test a console command.
*/
public function test_console_command(): void
{
$this->artisan('example')
->doesntExpectOutput()
->assertExitCode(0);
}
expectsOutputToContain
および doesntExpectOutputToContain
メソッドを使用して出力の一部に対してアサーションを行うことができます:
test('console command', function () {
$this->artisan('example')
->expectsOutputToContain('Taylor')
->assertExitCode(0);
});
/**
* Test a console command.
*/
public function test_console_command(): void
{
$this->artisan('example')
->expectsOutputToContain('Taylor')
->assertExitCode(0);
}
Confirmation Expectations
「はい」または「いいえ」の形で確認を期待するコマンドを書く場合、expectsConfirmation
メソッドを利用できます:
$this->artisan('module:import')
->expectsConfirmation('Do you really wish to run this command?', 'no')
->assertExitCode(1);
Table Expectations
コマンドが Artisan の table
メソッドを使用して情報のテーブルを表示する場合、テーブル全体の出力期待を記述するのは面倒です。代わりに、expectsTable
メソッドを使用できます。このメソッドは、テーブルのヘッダーを最初の引数として、テーブルのデータを第二の引数として受け取ります:
$this->artisan('users:all')
->expectsTable([
'ID',
'Email',
], [
[1, ''],
[2, ''],
]);
Console Events
デフォルトでは、Illuminate\Console\Events\CommandStarting
および Illuminate\Console\Events\CommandFinished
イベントは、アプリケーションのテストを実行している間は発生しません。ただし、Illuminate\Foundation\Testing\WithConsoleEvents
トレイトをクラスに追加することで、特定のテストクラスに対してこれらのイベントを有効にできます:
<?php
use Illuminate\Foundation\Testing\WithConsoleEvents;
uses(WithConsoleEvents::class);
// ...
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\WithConsoleEvents;
use Tests\TestCase;
class ConsoleEventTest extends TestCase
{
use WithConsoleEvents;
// ...
}