mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-21 23:20:24 +00:00
131 lines
4.3 KiB
PHP
131 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\Filament\Enums\BackupStatus;
|
|
use App\Helpers;
|
|
use App\Models\Backup;
|
|
use App\Models\Customer;
|
|
use App\Models\HostingPlan;
|
|
use App\Models\HostingSubscription;
|
|
use Faker\Factory;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Tests\Feature\Api\ActionTestCase;
|
|
|
|
class ZeroBackupTest extends ActionTestCase
|
|
{
|
|
public function testFullBackup()
|
|
{
|
|
ini_set('memory_limit', '-1');
|
|
ini_set('max_execution_time', 0);
|
|
|
|
Artisan::call('phyre:create-daily-full-backup');
|
|
|
|
$findLastBackup = Backup::orderBy('id', 'asc')->first();
|
|
$this->assertNotEmpty($findLastBackup);
|
|
$this->assertNotEmpty($findLastBackup->id);
|
|
$this->assertNotEmpty($findLastBackup->created_at);
|
|
$this->assertSame($findLastBackup->backup_type, 'full');
|
|
|
|
|
|
$backupFinished = false;
|
|
for ($i = 0; $i < 100; $i++) {
|
|
|
|
Artisan::call('phyre:run-backup-checks');
|
|
|
|
$findLastBackup = Backup::where('id', $findLastBackup->id)->first();
|
|
if ($findLastBackup->status == BackupStatus::Completed) {
|
|
$backupFinished = true;
|
|
break;
|
|
}
|
|
if ($findLastBackup->status == BackupStatus::Failed) {
|
|
$this->fail('Backup failed: '.$findLastBackup->backup_log);
|
|
break;
|
|
}
|
|
sleep(1);
|
|
}
|
|
|
|
if (!$backupFinished) {
|
|
$findLastBackup = Backup::where('id', $findLastBackup->id)->first();
|
|
$this->fail('Backup not completed: '.$findLastBackup->backup_log);
|
|
}
|
|
|
|
$this->assertTrue($backupFinished);
|
|
$this->assertSame($findLastBackup->status, BackupStatus::Completed);
|
|
$this->assertNotEmpty($findLastBackup->file_path);
|
|
$this->assertTrue(file_exists($findLastBackup->file_path));
|
|
|
|
$backup = new Backup();
|
|
$checkCronJob = $backup->checkCronJob();
|
|
$this->assertTrue($checkCronJob);
|
|
|
|
$customer = new Customer();
|
|
$customer->name = 'UnitBackupTest' . time();
|
|
$customer->email = 'UnitBackupTest' . time() . '@unit-test.com';
|
|
$customer->save();
|
|
|
|
$hostingPlan = new HostingPlan();
|
|
$hostingPlan->name = 'UnitBackupTest' . time();
|
|
$hostingPlan->description = 'Unit Backup Test';
|
|
$hostingPlan->disk_space = 1000;
|
|
$hostingPlan->bandwidth = 1000;
|
|
$hostingPlan->databases = 1;
|
|
$hostingPlan->additional_services = ['daily_backups'];
|
|
$hostingPlan->features = [];
|
|
$hostingPlan->default_server_application_type = 'apache_php';
|
|
$hostingPlan->default_server_application_settings = [
|
|
'php_version' => '8.3',
|
|
];
|
|
$hostingPlan->save();
|
|
|
|
$hostingSubscription = new HostingSubscription();
|
|
$hostingSubscription->customer_id = $customer->id;
|
|
$hostingSubscription->hosting_plan_id = $hostingPlan->id;
|
|
$hostingSubscription->domain = 'unit-backup-test' . time() . '.com';
|
|
$hostingSubscription->save();
|
|
|
|
$backup = new Backup();
|
|
$backup->backup_type = 'full';
|
|
$backup->save();
|
|
|
|
$backupId = $backup->id;
|
|
|
|
$findBackup = false;
|
|
$backupCompleted = false;
|
|
for ($i = 0; $i < 100; $i++) {
|
|
|
|
Artisan::call('phyre:run-backup-checks');
|
|
|
|
$findBackup = Backup::where('id', $backupId)->first();
|
|
if ($findBackup->status == BackupStatus::Completed) {
|
|
$backupCompleted = true;
|
|
break;
|
|
}
|
|
if ($findBackup->status == BackupStatus::Failed) {
|
|
$this->fail('Backup failed: '.$findBackup->backup_log);
|
|
break;
|
|
}
|
|
|
|
sleep(1);
|
|
}
|
|
|
|
if (!$backupCompleted) {
|
|
$findBackup = Backup::where('id', $backupId)->first();
|
|
$this->fail('Backup not completed: '.$findBackup->backup_log);
|
|
}
|
|
|
|
$this->assertTrue($backupCompleted);
|
|
$this->assertNotEmpty($findBackup->file_path);
|
|
$this->assertTrue(file_exists($findBackup->file_path));
|
|
|
|
$getFilesize = filesize($findBackup->file_path);
|
|
$this->assertGreaterThan(0, $getFilesize);
|
|
$this->assertSame($getFilesize, intval($findBackup->size));
|
|
|
|
Helpers::extractZip($findBackup->file_path, $findBackup->path . '/unit-test');
|
|
|
|
|
|
}
|
|
|
|
}
|