mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 06:26:16 +00:00
API Feature (#334)
This commit is contained in:
121
tests/Feature/API/ServerTest.php
Normal file
121
tests/Feature/API/ServerTest.php
Normal file
@ -0,0 +1,121 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\API;
|
||||
|
||||
use App\Enums\Database;
|
||||
use App\Enums\OperatingSystem;
|
||||
use App\Enums\ServerProvider;
|
||||
use App\Enums\ServerType;
|
||||
use App\Enums\Webserver;
|
||||
use App\Facades\SSH;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Laravel\Sanctum\Sanctum;
|
||||
use Tests\TestCase;
|
||||
|
||||
class ServerTest extends TestCase
|
||||
{
|
||||
use RefreshDatabase;
|
||||
|
||||
public function test_get_servers(): void
|
||||
{
|
||||
Sanctum::actingAs($this->user, ['read', 'write']);
|
||||
|
||||
$this->json('GET', route('api.projects.servers', [
|
||||
'project' => $this->user->current_project_id,
|
||||
]))
|
||||
->assertSuccessful()
|
||||
->assertJsonFragment([
|
||||
'name' => $this->server->name,
|
||||
]);
|
||||
}
|
||||
|
||||
public function test_get_server(): void
|
||||
{
|
||||
Sanctum::actingAs($this->user, ['read', 'write']);
|
||||
|
||||
$this->json('GET', route('api.projects.servers.show', [
|
||||
'project' => $this->user->current_project_id,
|
||||
'server' => $this->server,
|
||||
]))
|
||||
->assertSuccessful()
|
||||
->assertJsonFragment([
|
||||
'name' => $this->server->name,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider createData
|
||||
*/
|
||||
public function test_create_server(string $type): void
|
||||
{
|
||||
Sanctum::actingAs($this->user, ['read', 'write']);
|
||||
|
||||
SSH::fake('Active: active'); // fake output for service installations
|
||||
|
||||
$this->json('POST', route('api.projects.servers.create', [
|
||||
'project' => $this->user->current_project_id,
|
||||
]), [
|
||||
'type' => $type,
|
||||
'provider' => ServerProvider::CUSTOM,
|
||||
'name' => 'test',
|
||||
'ip' => '1.1.1.1',
|
||||
'port' => '22',
|
||||
'os' => OperatingSystem::UBUNTU22,
|
||||
'webserver' => Webserver::NGINX,
|
||||
'database' => Database::MYSQL80,
|
||||
'php' => '8.2',
|
||||
])
|
||||
->assertSuccessful()
|
||||
->assertJsonFragment([
|
||||
'name' => 'test',
|
||||
'type' => $type,
|
||||
]);
|
||||
}
|
||||
|
||||
public function test_delete_server(): void
|
||||
{
|
||||
Sanctum::actingAs($this->user, ['read', 'write']);
|
||||
|
||||
SSH::fake();
|
||||
|
||||
$this->json('DELETE', route('api.projects.servers.delete', [
|
||||
'project' => $this->server->project_id,
|
||||
'server' => $this->server->id,
|
||||
]))
|
||||
->assertNoContent();
|
||||
}
|
||||
|
||||
public function test_reboot_server(): void
|
||||
{
|
||||
SSH::fake();
|
||||
|
||||
Sanctum::actingAs($this->user, ['read', 'write']);
|
||||
|
||||
$this->json('POST', route('api.projects.servers.reboot', [
|
||||
'project' => $this->server->project_id,
|
||||
'server' => $this->server->id,
|
||||
]))
|
||||
->assertNoContent();
|
||||
}
|
||||
|
||||
public function test_upgrade_server(): void
|
||||
{
|
||||
SSH::fake('Available updates:0');
|
||||
|
||||
Sanctum::actingAs($this->user, ['read', 'write']);
|
||||
|
||||
$this->json('POST', route('api.projects.servers.upgrade', [
|
||||
'project' => $this->server->project_id,
|
||||
'server' => $this->server->id,
|
||||
]))
|
||||
->assertNoContent();
|
||||
}
|
||||
|
||||
public static function createData(): array
|
||||
{
|
||||
return [
|
||||
[ServerType::REGULAR],
|
||||
[ServerType::DATABASE],
|
||||
];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user