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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
<?php
namespace Illuminate\Tests\Console;
use Illuminate\Console\Command;
use Illuminate\Console\Scheduling\CacheEventMutex;
use Illuminate\Console\Scheduling\CacheSchedulingMutex;
use Illuminate\Console\Scheduling\EventMutex;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Console\Scheduling\SchedulingMutex;
use Illuminate\Container\Container;
use Mockery as m;
use PHPUnit\Framework\TestCase;
class ConsoleEventSchedulerTest extends TestCase
{
/**
* @var Schedule
*/
private $schedule;
protected function setUp(): void
{
parent::setUp();
$container = Container::getInstance();
$container->instance(EventMutex::class, m::mock(CacheEventMutex::class));
$container->instance(SchedulingMutex::class, m::mock(CacheSchedulingMutex::class));
$container->instance(Schedule::class, $this->schedule = new Schedule(m::mock(EventMutex::class)));
}
protected function tearDown(): void
{
m::close();
}
public function testMutexCanReceiveCustomStore()
{
Container::getInstance()->make(EventMutex::class)->shouldReceive('useStore')->once()->with('test');
Container::getInstance()->make(SchedulingMutex::class)->shouldReceive('useStore')->once()->with('test');
$this->schedule->useCache('test');
}
public function testExecCreatesNewCommand()
{
$escape = '\\' === DIRECTORY_SEPARATOR ? '"' : '\'';
$escapeReal = '\\' === DIRECTORY_SEPARATOR ? '\\"' : '"';
$schedule = $this->schedule;
$schedule->exec('path/to/command');
$schedule->exec('path/to/command -f --foo="bar"');
$schedule->exec('path/to/command', ['-f']);
$schedule->exec('path/to/command', ['--foo' => 'bar']);
$schedule->exec('path/to/command', ['-f', '--foo' => 'bar']);
$schedule->exec('path/to/command', ['--title' => 'A "real" test']);
$schedule->exec('path/to/command', [['one', 'two']]);
$schedule->exec('path/to/command', ['-1 minute']);
$schedule->exec('path/to/command', ['foo' => ['bar', 'baz']]);
$schedule->exec('path/to/command', ['--foo' => ['bar', 'baz']]);
$schedule->exec('path/to/command', ['-F' => ['bar', 'baz']]);
$events = $schedule->events();
$this->assertSame('path/to/command', $events[0]->command);
$this->assertSame('path/to/command -f --foo="bar"', $events[1]->command);
$this->assertSame('path/to/command -f', $events[2]->command);
$this->assertSame("path/to/command --foo={$escape}bar{$escape}", $events[3]->command);
$this->assertSame("path/to/command -f --foo={$escape}bar{$escape}", $events[4]->command);
$this->assertSame("path/to/command --title={$escape}A {$escapeReal}real{$escapeReal} test{$escape}", $events[5]->command);
$this->assertSame("path/to/command {$escape}one{$escape} {$escape}two{$escape}", $events[6]->command);
$this->assertSame("path/to/command {$escape}-1 minute{$escape}", $events[7]->command);
$this->assertSame("path/to/command {$escape}bar{$escape} {$escape}baz{$escape}", $events[8]->command);
$this->assertSame("path/to/command --foo={$escape}bar{$escape} --foo={$escape}baz{$escape}", $events[9]->command);
$this->assertSame("path/to/command -F {$escape}bar{$escape} -F {$escape}baz{$escape}", $events[10]->command);
}
public function testExecCreatesNewCommandWithTimezone()
{
$schedule = new Schedule('UTC');
$schedule->exec('path/to/command');
$events = $schedule->events();
$this->assertSame('UTC', $events[0]->timezone);
$schedule = new Schedule('Asia/Tokyo');
$schedule->exec('path/to/command');
$events = $schedule->events();
$this->assertSame('Asia/Tokyo', $events[0]->timezone);
}
public function testCommandCreatesNewArtisanCommand()
{
$escape = '\\' === DIRECTORY_SEPARATOR ? '"' : '\'';
$schedule = $this->schedule;
$schedule->command('queue:listen');
$schedule->command('queue:listen --tries=3');
$schedule->command('queue:listen', ['--tries' => 3]);
$events = $schedule->events();
$binary = $escape.PHP_BINARY.$escape;
$this->assertEquals($binary.' artisan queue:listen', $events[0]->command);
$this->assertEquals($binary.' artisan queue:listen --tries=3', $events[1]->command);
$this->assertEquals($binary.' artisan queue:listen --tries=3', $events[2]->command);
}
public function testCreateNewArtisanCommandUsingCommandClass()
{
$escape = '\\' === DIRECTORY_SEPARATOR ? '"' : '\'';
$schedule = $this->schedule;
$schedule->command(ConsoleCommandStub::class, ['--force']);
$events = $schedule->events();
$binary = $escape.PHP_BINARY.$escape;
$this->assertEquals($binary.' artisan foo:bar --force', $events[0]->command);
}
public function testCallCreatesNewJobWithTimezone()
{
$schedule = new Schedule('UTC');
$schedule->call('path/to/command');
$events = $schedule->events();
$this->assertSame('UTC', $events[0]->timezone);
$schedule = new Schedule('Asia/Tokyo');
$schedule->call('path/to/command');
$events = $schedule->events();
$this->assertSame('Asia/Tokyo', $events[0]->timezone);
}
}
class FooClassStub
{
protected $schedule;
public function __construct(Schedule $schedule)
{
$this->schedule = $schedule;
}
}
class ConsoleCommandStub extends Command
{
protected $signature = 'foo:bar';
protected $foo;
public function __construct(FooClassStub $foo)
{
parent::__construct();
$this->foo = $foo;
}
}
|