19 declare(strict_types=1);
39 int $schedule_value = 5,
40 bool $is_plugin =
false 42 $job_instance ??= $this->createMock(ilCronJob::class);
45 'job_id' =>
'phpunit',
46 'component' =>
'phpunit',
47 'schedule_type' => $schedule_type,
48 'schedule_value' => $schedule_value,
50 'job_status_user_id' => 6,
51 'job_status_type' => 1,
52 'job_status_ts' => time(),
54 'job_result_user_id' => 6,
56 'job_result_message' =>
'msg',
57 'job_result_type' => 1,
58 'job_result_ts' => time(),
61 'running_ts' => time(),
62 'job_result_dur' => time(),
71 $this->assertCount(2, $entities->toArray());
85 $this->assertCount(3, $entities->
toArray());
97 return $entity->
getJobId() !==
'phpunit';
100 $this->assertCount(1, $entities->
slice(1, 1));
105 $job_instance = $this->createMock(ilCronJob::class);
106 $job_instance->method(
'hasFlexibleSchedule')->willReturn(
true);
108 $entity = $this->
getEntity($job_instance);
110 $this->assertSame(5, $entity->getEffectiveScheduleValue());
112 $another_job_instance = $this->createMock(ilCronJob::class);
113 $another_job_instance->method(
'hasFlexibleSchedule')->willReturn(
false);
115 $another_job_instance->method(
'getDefaultScheduleValue')->willReturn(5);
119 $this->assertSame(5, $another_entity->getEffectiveScheduleValue());
121 $yet_another_job_instance = $this->createMock(ilCronJob::class);
122 $yet_another_job_instance->method(
'hasFlexibleSchedule')->willReturn(
true);
124 $yet_another_job_instance->method(
'getDefaultScheduleValue')->willReturn(5);
126 $yet_another_entity = $this->
getEntity($yet_another_job_instance, 0);
128 $this->assertSame(5, $yet_another_entity->getEffectiveScheduleValue());
slice(int $offset, ?int $length=null)
Extracts a slice of $length elements starting at position $offset from the Collection.
getEntity(ilCronJob $job_instance=null, int $schedule_type=ilCronJob::SCHEDULE_TYPE_IN_MINUTES, int $schedule_value=5, bool $is_plugin=false)
testCollectionCanBeFilteredAndSliced(ilCronJobEntities $entities)
const SCHEDULE_TYPE_IN_MINUTES
This will be replaced with an ENUM in ILIAS 9
testEffectiveScheduleCanBeDetermined()
testCollectionCanBeChanged(ilCronJobEntities $entities)
testEntityCollectionCanBeCreatedWithItems()
const SCHEDULE_TYPE_DAILY
This will be replaced with an ENUM in ILIAS 9
filter(callable $callable)
Returns all the elements of this collection that satisfy the predicate $callable. ...
const SCHEDULE_TYPE_IN_HOURS
This will be replaced with an ENUM in ILIAS 9
add(ilCronJobEntity $job)