forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[11.x] Name of job set by displayName() must be honoured by Schedule (l…
…aravel#50973) * Name of job set by displayName() must be honoured by Schedule * formatting --------- Co-authored-by: Taylor Otwell <[email protected]>
- Loading branch information
1 parent
619e762
commit d63d2b1
Showing
3 changed files
with
89 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Illuminate\Tests\Console\Fixtures; | ||
|
||
use Illuminate\Contracts\Queue\ShouldQueue; | ||
|
||
final class JobToTestWithSchedule implements ShouldQueue | ||
{ | ||
public function __invoke(): void | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Illuminate\Tests\Console\Scheduling; | ||
|
||
use Illuminate\Console\Scheduling\EventMutex; | ||
use Illuminate\Console\Scheduling\Schedule; | ||
use Illuminate\Console\Scheduling\SchedulingMutex; | ||
use Illuminate\Container\Container; | ||
use Illuminate\Contracts\Queue\ShouldQueue; | ||
use Illuminate\Tests\Console\Fixtures\JobToTestWithSchedule; | ||
use Mockery as m; | ||
use Mockery\MockInterface; | ||
use PHPUnit\Framework\Attributes\CoversClass; | ||
use PHPUnit\Framework\Attributes\DataProvider; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
#[CoversClass(Schedule::class)] | ||
final class ScheduleTest extends TestCase | ||
{ | ||
private Container $container; | ||
private EventMutex&MockInterface $eventMutex; | ||
private SchedulingMutex&MockInterface $schedulingMutex; | ||
|
||
protected function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->container = new Container; | ||
Container::setInstance($this->container); | ||
$this->eventMutex = m::mock(EventMutex::class); | ||
$this->container->instance(EventMutex::class, $this->eventMutex); | ||
$this->schedulingMutex = m::mock(SchedulingMutex::class); | ||
$this->container->instance(SchedulingMutex::class, $this->schedulingMutex); | ||
} | ||
|
||
#[DataProvider('jobHonoursDisplayNameIfMethodExistsProvider')] | ||
public function testJobHonoursDisplayNameIfMethodExists(string|object $job, string $jobName): void | ||
{ | ||
$schedule = new Schedule(); | ||
$scheduledJob = $schedule->job($job); | ||
self::assertSame($jobName, $scheduledJob->description); | ||
} | ||
|
||
public static function jobHonoursDisplayNameIfMethodExistsProvider(): array | ||
{ | ||
$job = new class implements ShouldQueue | ||
{ | ||
public function displayName(): string | ||
{ | ||
return 'testJob-123'; | ||
} | ||
}; | ||
|
||
return [ | ||
[JobToTestWithSchedule::class, JobToTestWithSchedule::class], | ||
[new JobToTestWithSchedule, JobToTestWithSchedule::class], | ||
[$job, 'testJob-123'], | ||
]; | ||
} | ||
} |