generateTestAccount($permissions); $response = $this->actingAs($user)->postJson("/api/client/servers/{$server->uuid}/schedules", [ 'name' => 'Test Schedule', 'is_active' => false, 'minute' => '0', 'hour' => '*/2', 'day_of_week' => '2', 'day_of_month' => '*', ]); $response->assertOk(); $this->assertNotNull($id = $response->json('attributes.id')); /** @var \Pterodactyl\Models\Schedule $schedule */ $schedule = Schedule::query()->findOrFail($id); $this->assertFalse($schedule->is_active); $this->assertFalse($schedule->is_processing); $this->assertSame('0', $schedule->cron_minute); $this->assertSame('*/2', $schedule->cron_hour); $this->assertSame('2', $schedule->cron_day_of_week); $this->assertSame('*', $schedule->cron_day_of_month); $this->assertSame('Test Schedule', $schedule->name); $this->assertJsonTransformedWith($response->json('attributes'), $schedule); $response->assertJsonCount(0, 'attributes.relationships.tasks.data'); } /** * Test that the validation rules for scheduling work as expected. */ public function testScheduleValidationRules() { [$user, $server] = $this->generateTestAccount(); $response = $this->actingAs($user)->postJson("/api/client/servers/{$server->uuid}/schedules", []); $response->assertStatus(Response::HTTP_UNPROCESSABLE_ENTITY); foreach (['name', 'minute', 'hour', 'day_of_month', 'day_of_week'] as $i => $field) { $response->assertJsonPath("errors.{$i}.code", 'required'); $response->assertJsonPath("errors.{$i}.source.field", $field); } $this->actingAs($user) ->postJson("/api/client/servers/{$server->uuid}/schedules", [ 'name' => 'Testing', 'is_active' => 'no', 'minute' => '*', 'hour' => '*', 'day_of_month' => '*', 'day_of_week' => '*', ]) ->assertStatus(Response::HTTP_UNPROCESSABLE_ENTITY) ->assertJsonPath('errors.0.code', 'boolean'); } /** * Test that a subuser without required permissions cannot create a schedule. */ public function testSubuserCannotCreateScheduleWithoutPermissions() { [$user, $server] = $this->generateTestAccount([Permission::ACTION_SCHEDULE_UPDATE]); $this->actingAs($user) ->postJson("/api/client/servers/{$server->uuid}/schedules", []) ->assertForbidden(); } /** * @return array */ public function permissionsDataProvider(): array { return [[[]], [[Permission::ACTION_SCHEDULE_CREATE]]]; } }