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
|
<?php
namespace Illuminate\Tests\Console\Scheduling;
use Illuminate\Console\Scheduling\Event;
use Illuminate\Console\Scheduling\EventMutex;
use Mockery as m;
use PHPUnit\Framework\TestCase;
class FrequencyTest extends TestCase
{
/*
* @var \Illuminate\Console\Scheduling\Event
*/
protected $event;
protected function setUp(): void
{
$this->event = new Event(
m::mock(EventMutex::class),
'php foo'
);
}
public function testEveryMinute()
{
$this->assertSame('* * * * *', $this->event->getExpression());
$this->assertSame('* * * * *', $this->event->everyMinute()->getExpression());
}
public function testEveryFiveMinutes()
{
$this->assertSame('*/5 * * * *', $this->event->everyFiveMinutes()->getExpression());
}
public function testDaily()
{
$this->assertSame('0 0 * * *', $this->event->daily()->getExpression());
}
public function testTwiceDaily()
{
$this->assertSame('0 3,15 * * *', $this->event->twiceDaily(3, 15)->getExpression());
}
public function testOverrideWithHourly()
{
$this->assertSame('0 * * * *', $this->event->everyFiveMinutes()->hourly()->getExpression());
$this->assertSame('37 * * * *', $this->event->hourlyAt(37)->getExpression());
$this->assertSame('15,30,45 * * * *', $this->event->hourlyAt([15, 30, 45])->getExpression());
}
public function testMonthlyOn()
{
$this->assertSame('0 15 4 * *', $this->event->monthlyOn(4, '15:00')->getExpression());
}
public function testTwiceMonthly()
{
$this->assertSame('0 0 1,16 * *', $this->event->twiceMonthly(1, 16)->getExpression());
}
public function testMonthlyOnWithMinutes()
{
$this->assertSame('15 15 4 * *', $this->event->monthlyOn(4, '15:15')->getExpression());
}
public function testWeekdaysDaily()
{
$this->assertSame('0 0 * * 1-5', $this->event->weekdays()->daily()->getExpression());
}
public function testWeekdaysHourly()
{
$this->assertSame('0 * * * 1-5', $this->event->weekdays()->hourly()->getExpression());
}
public function testWeekdays()
{
$this->assertSame('* * * * 1-5', $this->event->weekdays()->getExpression());
}
public function testSundays()
{
$this->assertSame('* * * * 0', $this->event->sundays()->getExpression());
}
public function testMondays()
{
$this->assertSame('* * * * 1', $this->event->mondays()->getExpression());
}
public function testTuesdays()
{
$this->assertSame('* * * * 2', $this->event->tuesdays()->getExpression());
}
public function testWednesdays()
{
$this->assertSame('* * * * 3', $this->event->wednesdays()->getExpression());
}
public function testThursdays()
{
$this->assertSame('* * * * 4', $this->event->thursdays()->getExpression());
}
public function testFridays()
{
$this->assertSame('* * * * 5', $this->event->fridays()->getExpression());
}
public function testSaturdays()
{
$this->assertSame('* * * * 6', $this->event->saturdays()->getExpression());
}
public function testQuarterly()
{
$this->assertSame('0 0 1 1-12/3 *', $this->event->quarterly()->getExpression());
}
public function testFrequencyMacro()
{
Event::macro('everyXMinutes', function ($x) {
return $this->spliceIntoPosition(1, "*/{$x}");
});
$this->assertSame('*/6 * * * *', $this->event->everyXMinutes(6)->getExpression());
}
}
|