1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
<?php
namespace Illuminate\Tests\Integration\Generators;
class JobMakeCommandTest extends TestCase
{
protected $files = [
'app/Jobs/FooCreated.php',
'tests/Feature/Jobs/FooCreatedTest.php',
];
public function testItCanGenerateJobFile()
{
$this->artisan('make:job', ['name' => 'FooCreated'])
->assertExitCode(0);
$this->assertFileContains([
'namespace App\Jobs;',
'use Illuminate\Bus\Queueable;',
'use Illuminate\Contracts\Queue\ShouldQueue;',
'use Illuminate\Foundation\Bus\Dispatchable;',
'use Illuminate\Queue\InteractsWithQueue;',
'use Illuminate\Queue\SerializesModels;',
'class FooCreated implements ShouldQueue',
], 'app/Jobs/FooCreated.php');
$this->assertFilenameNotExists('tests/Feature/Jobs/FooCreatedTest.php');
}
public function testItCanGenerateSyncJobFile()
{
$this->artisan('make:job', ['name' => 'FooCreated', '--sync' => true])
->assertExitCode(0);
$this->assertFileContains([
'namespace App\Jobs;',
'use Illuminate\Foundation\Bus\Dispatchable;',
'class FooCreated',
], 'app/Jobs/FooCreated.php');
$this->assertFileNotContains([
'use Illuminate\Contracts\Queue\ShouldQueue;',
'use Illuminate\Queue\InteractsWithQueue;',
'use Illuminate\Queue\SerializesModels;',
], 'app/Jobs/FooCreated.php');
}
public function testItCanGenerateJobFileWithTest()
{
$this->artisan('make:job', ['name' => 'FooCreated', '--test' => true])
->assertExitCode(0);
$this->assertFilenameExists('app/Jobs/FooCreated.php');
$this->assertFilenameExists('tests/Feature/Jobs/FooCreatedTest.php');
}
}
|