mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-27 15:16:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			115 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Tests\Integration\Services\Backups;
 | |
| 
 | |
| use GuzzleHttp\Psr7\Request;
 | |
| use GuzzleHttp\Psr7\Response;
 | |
| use App\Models\Backup;
 | |
| use GuzzleHttp\Exception\ClientException;
 | |
| use App\Extensions\Backups\BackupManager;
 | |
| use App\Extensions\Filesystem\S3Filesystem;
 | |
| use App\Services\Backups\DeleteBackupService;
 | |
| use App\Tests\Integration\IntegrationTestCase;
 | |
| use App\Repositories\Daemon\DaemonBackupRepository;
 | |
| use App\Exceptions\Service\Backup\BackupLockedException;
 | |
| use App\Exceptions\Http\Connection\DaemonConnectionException;
 | |
| 
 | |
| class DeleteBackupServiceTest extends IntegrationTestCase
 | |
| {
 | |
|     public function testLockedBackupCannotBeDeleted(): void
 | |
|     {
 | |
|         $server = $this->createServerModel();
 | |
|         $backup = Backup::factory()->create([
 | |
|             'server_id' => $server->id,
 | |
|             'is_locked' => true,
 | |
|         ]);
 | |
| 
 | |
|         $this->expectException(BackupLockedException::class);
 | |
| 
 | |
|         $this->app->make(DeleteBackupService::class)->handle($backup);
 | |
|     }
 | |
| 
 | |
|     public function testFailedBackupThatIsLockedCanBeDeleted(): void
 | |
|     {
 | |
|         $server = $this->createServerModel();
 | |
|         $backup = Backup::factory()->create([
 | |
|             'server_id' => $server->id,
 | |
|             'is_locked' => true,
 | |
|             'is_successful' => false,
 | |
|         ]);
 | |
| 
 | |
|         $mock = $this->mock(DaemonBackupRepository::class);
 | |
|         $mock->expects('setServer->delete')->with($backup)->andReturn(new Response());
 | |
| 
 | |
|         $this->app->make(DeleteBackupService::class)->handle($backup);
 | |
| 
 | |
|         $backup->refresh();
 | |
| 
 | |
|         $this->assertNotNull($backup->deleted_at);
 | |
|     }
 | |
| 
 | |
|     public function testExceptionThrownDueToMissingBackupIsIgnored(): void
 | |
|     {
 | |
|         $server = $this->createServerModel();
 | |
|         $backup = Backup::factory()->create(['server_id' => $server->id]);
 | |
| 
 | |
|         $mock = $this->mock(DaemonBackupRepository::class);
 | |
|         $mock->expects('setServer->delete')->with($backup)->andThrow(
 | |
|             new DaemonConnectionException(
 | |
|                 new ClientException('', new Request('DELETE', '/'), new Response(404))
 | |
|             )
 | |
|         );
 | |
| 
 | |
|         $this->app->make(DeleteBackupService::class)->handle($backup);
 | |
| 
 | |
|         $backup->refresh();
 | |
| 
 | |
|         $this->assertNotNull($backup->deleted_at);
 | |
|     }
 | |
| 
 | |
|     public function testExceptionIsThrownIfNot404(): void
 | |
|     {
 | |
|         $server = $this->createServerModel();
 | |
|         $backup = Backup::factory()->create(['server_id' => $server->id]);
 | |
| 
 | |
|         $mock = $this->mock(DaemonBackupRepository::class);
 | |
|         $mock->expects('setServer->delete')->with($backup)->andThrow(
 | |
|             new DaemonConnectionException(
 | |
|                 new ClientException('', new Request('DELETE', '/'), new Response(500))
 | |
|             )
 | |
|         );
 | |
| 
 | |
|         $this->expectException(DaemonConnectionException::class);
 | |
| 
 | |
|         $this->app->make(DeleteBackupService::class)->handle($backup);
 | |
| 
 | |
|         $backup->refresh();
 | |
| 
 | |
|         $this->assertNull($backup->deleted_at);
 | |
|     }
 | |
| 
 | |
|     public function testS3ObjectCanBeDeleted(): void
 | |
|     {
 | |
|         $server = $this->createServerModel();
 | |
|         $backup = Backup::factory()->create([
 | |
|             'disk' => Backup::ADAPTER_AWS_S3,
 | |
|             'server_id' => $server->id,
 | |
|         ]);
 | |
| 
 | |
|         $manager = $this->mock(BackupManager::class);
 | |
|         $adapter = $this->mock(S3Filesystem::class);
 | |
| 
 | |
|         $manager->expects('adapter')->with(Backup::ADAPTER_AWS_S3)->andReturn($adapter);
 | |
| 
 | |
|         $adapter->expects('getBucket')->andReturn('foobar');
 | |
|         $adapter->expects('getClient->deleteObject')->with([
 | |
|             'Bucket' => 'foobar',
 | |
|             'Key' => sprintf('%s/%s.tar.gz', $server->uuid, $backup->uuid),
 | |
|         ]);
 | |
| 
 | |
|         $this->app->make(DeleteBackupService::class)->handle($backup);
 | |
| 
 | |
|         $this->assertSoftDeleted($backup);
 | |
|     }
 | |
| }
 | 
