12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- namespace Illuminate\Tests\Integration\Console;
- use Illuminate\Console\Command;
- use Illuminate\Console\Scheduling\Schedule;
- use Illuminate\Contracts\Console\Kernel;
- use Orchestra\Testbench\TestCase;
- class ConsoleApplicationTest extends TestCase
- {
- protected function setUp(): void
- {
- parent::setUp();
- $this->app[Kernel::class]->registerCommand(new FooCommandStub);
- }
- public function testArtisanCallUsingCommandName()
- {
- $this->artisan('foo:bar', [
- 'id' => 1,
- ])->assertExitCode(0);
- }
- public function testArtisanCallUsingCommandClass()
- {
- $this->artisan(FooCommandStub::class, [
- 'id' => 1,
- ])->assertExitCode(0);
- }
- public function testArtisanCallNow()
- {
- $exitCode = $this->artisan('foo:bar', [
- 'id' => 1,
- ])->run();
- $this->assertSame(0, $exitCode);
- }
- public function testArtisanWithMockCallAfterCallNow()
- {
- $exitCode = $this->artisan('foo:bar', [
- 'id' => 1,
- ])->run();
- $mock = $this->artisan('foo:bar', [
- 'id' => 1,
- ]);
- $this->assertSame(0, $exitCode);
- $mock->assertExitCode(0);
- }
- public function testArtisanInstantiateScheduleWhenNeed()
- {
- $this->assertFalse($this->app->resolved(Schedule::class));
- $this->app[Kernel::class]->registerCommand(new ScheduleCommandStub);
- $this->assertFalse($this->app->resolved(Schedule::class));
- $this->artisan('foo:schedule');
- $this->assertTrue($this->app->resolved(Schedule::class));
- }
- }
- class FooCommandStub extends Command
- {
- protected $signature = 'foo:bar {id}';
- public function handle()
- {
- //
- }
- }
- class ScheduleCommandStub extends Command
- {
- protected $signature = 'foo:schedule';
- public function handle(Schedule $schedule)
- {
- //
- }
- }
|