mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 17:34:45 +02:00

* Install Pest * Don’t use bootstrap file anymore * Fix comment * Think this is needed * Reset this * Switch dataproviders to attributes * Fix these * Support in memory databases * Fix this migration * Switch this back for now * Add missing import * Truncate and reseed database * These are replaced now * Switch ci to use pest
115 lines
3.8 KiB
PHP
115 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace App\Tests\Integration\Api\Client\Server\Schedule;
|
|
|
|
use App\Models\Schedule;
|
|
use App\Helpers\Utilities;
|
|
use App\Models\Permission;
|
|
use App\Tests\Integration\Api\Client\ClientApiIntegrationTestCase;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
|
|
class UpdateServerScheduleTest extends ClientApiIntegrationTestCase
|
|
{
|
|
/**
|
|
* The data to use when updating a schedule.
|
|
*/
|
|
private array $updateData = [
|
|
'name' => 'Updated Schedule Name',
|
|
'minute' => '5',
|
|
'hour' => '*',
|
|
'day_of_week' => '*',
|
|
'month' => '*',
|
|
'day_of_month' => '*',
|
|
'is_active' => false,
|
|
];
|
|
|
|
/**
|
|
* Test that a schedule can be updated.
|
|
*/
|
|
#[DataProvider('permissionsDataProvider')]
|
|
public function testScheduleCanBeUpdated(array $permissions): void
|
|
{
|
|
[$user, $server] = $this->generateTestAccount($permissions);
|
|
|
|
/** @var \App\Models\Schedule $schedule */
|
|
$schedule = Schedule::factory()->create(['server_id' => $server->id]);
|
|
$expected = Utilities::getScheduleNextRunDate('5', '*', '*', '*', '*');
|
|
|
|
$response = $this->actingAs($user)
|
|
->postJson("/api/client/servers/{$server->uuid}/schedules/{$schedule->id}", $this->updateData);
|
|
|
|
$schedule = $schedule->refresh();
|
|
|
|
$response->assertOk();
|
|
$this->assertSame('Updated Schedule Name', $schedule->name);
|
|
$this->assertFalse($schedule->is_active);
|
|
$this->assertJsonTransformedWith($response->json('attributes'), $schedule);
|
|
|
|
$this->assertSame($expected->toAtomString(), $schedule->next_run_at->toAtomString());
|
|
}
|
|
|
|
/**
|
|
* Test that an error is returned if the schedule exists but does not belong to this
|
|
* specific server instance.
|
|
*/
|
|
public function testErrorIsReturnedIfScheduleDoesNotBelongToServer(): void
|
|
{
|
|
[$user, $server] = $this->generateTestAccount();
|
|
$server2 = $this->createServerModel(['owner_id' => $user->id]);
|
|
|
|
$schedule = Schedule::factory()->create(['server_id' => $server2->id]);
|
|
|
|
$this->actingAs($user)
|
|
->postJson("/api/client/servers/{$server->uuid}/schedules/{$schedule->id}")
|
|
->assertNotFound();
|
|
}
|
|
|
|
/**
|
|
* Test that an error is returned if the subuser does not have permission to modify a
|
|
* server schedule.
|
|
*/
|
|
public function testErrorIsReturnedIfSubuserDoesNotHavePermissionToModifySchedule(): void
|
|
{
|
|
[$user, $server] = $this->generateTestAccount([Permission::ACTION_SCHEDULE_CREATE]);
|
|
|
|
$schedule = Schedule::factory()->create(['server_id' => $server->id]);
|
|
|
|
$this->actingAs($user)
|
|
->postJson("/api/client/servers/{$server->uuid}/schedules/{$schedule->id}")
|
|
->assertForbidden();
|
|
}
|
|
|
|
/**
|
|
* Test that the "is_processing" field gets reset to false when the schedule is enabled
|
|
* or disabled so that an invalid state can be more easily fixed.
|
|
*/
|
|
public function testScheduleIsProcessingIsSetToFalseWhenActiveStateChanges(): void
|
|
{
|
|
[$user, $server] = $this->generateTestAccount();
|
|
|
|
/** @var \App\Models\Schedule $schedule */
|
|
$schedule = Schedule::factory()->create([
|
|
'server_id' => $server->id,
|
|
'is_active' => true,
|
|
'is_processing' => true,
|
|
]);
|
|
|
|
$this->assertTrue($schedule->is_active);
|
|
$this->assertTrue($schedule->is_processing);
|
|
|
|
$response = $this->actingAs($user)
|
|
->postJson("/api/client/servers/{$server->uuid}/schedules/{$schedule->id}", $this->updateData);
|
|
|
|
$schedule = $schedule->refresh();
|
|
|
|
$response->assertOk();
|
|
$this->assertFalse($schedule->is_active);
|
|
$this->assertFalse($schedule->is_processing);
|
|
}
|
|
|
|
public static function permissionsDataProvider(): array
|
|
{
|
|
return [[[]], [[Permission::ACTION_SCHEDULE_UPDATE]]];
|
|
}
|
|
}
|