This commit is contained in:
Saeed Vaziry
2024-03-24 09:56:34 +01:00
committed by GitHub
parent 884f18db63
commit 4d051330d6
1055 changed files with 14493 additions and 20278 deletions

View File

@ -2,6 +2,8 @@
namespace Tests\Unit\Models;
use App\Enums\ServerStatus;
use App\Facades\SSH;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
@ -17,4 +19,32 @@ public function test_should_have_default_service()
$php->refresh();
$this->assertTrue($php->is_default);
}
public function test_check_connection_is_ready(): void
{
SSH::fake();
$this->server->update(['status' => ServerStatus::DISCONNECTED]);
$this->server->checkConnection();
$this->assertDatabaseHas('servers', [
'id' => $this->server->id,
'status' => ServerStatus::READY,
]);
}
public function test_connection_failed(): void
{
SSH::fake()->connectionWillFail();
$this->server->update(['status' => ServerStatus::READY]);
$this->server->checkConnection();
$this->assertDatabaseHas('servers', [
'id' => $this->server->id,
'status' => ServerStatus::DISCONNECTED,
]);
}
}