Monitoring & Service Management (#163)

Monitoring & Service Management
This commit is contained in:
Saeed Vaziry
2024-04-13 11:47:56 +02:00
committed by GitHub
parent 87ec0af697
commit 052e28d2e3
95 changed files with 2423 additions and 341 deletions

View File

@ -0,0 +1,40 @@
<?php
namespace Tests\Feature;
use App\Enums\ServiceStatus;
use App\Models\Service;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class MetricsTest extends TestCase
{
use RefreshDatabase;
public function test_visit_metrics(): void
{
$this->actingAs($this->user);
Service::factory()->create([
'server_id' => $this->server->id,
'name' => 'vito-agent',
'type' => 'monitoring',
'version' => 'latest',
'status' => ServiceStatus::READY,
]);
$this->get(route('servers.metrics', ['server' => $this->server]))
->assertSee('CPU Load')
->assertSee('Memory Usage')
->assertSee('Disk Usage')
->assertSee('Resource Usage');
}
public function test_cannot_visit_metrics(): void
{
$this->actingAs($this->user);
$this->get(route('servers.metrics', ['server' => $this->server]))
->assertRedirect(route('servers.services', ['server' => $this->server]));
}
}

View File

@ -4,7 +4,10 @@
use App\Enums\ServiceStatus;
use App\Facades\SSH;
use App\Models\Server;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Http;
use Tests\TestCase;
class ServicesTest extends TestCase
@ -22,6 +25,7 @@ public function test_see_services_list(): void
->assertSee('php')
->assertSee('supervisor')
->assertSee('redis')
->assertSee('vito-agent')
->assertSee('ufw');
}
@ -235,6 +239,45 @@ public function test_failed_to_disable_service(string $name): void
$this->assertEquals(ServiceStatus::FAILED, $service->status);
}
/**
* @dataProvider installData
*/
public function test_install_service(string $name, string $type, string $version): void
{
Http::fake([
'https://api.github.com/repos/vito/vito-agent/releases/latest' => Http::response([
'tag_name' => '0.1.0',
]),
]);
SSH::fake('Active: active');
$this->actingAs($this->user);
$server = Server::factory()->create([
'user_id' => $this->user->id,
'project_id' => $this->user->current_project_id,
]);
$keys = $server->sshKey();
if (! File::exists($keys['public_key_path']) || ! File::exists($keys['private_key_path'])) {
$server->provider()->generateKeyPair();
}
$this->post(route('servers.services.install', [
'server' => $server,
]), [
'name' => $name,
'type' => $type,
'version' => $version,
])->assertSessionDoesntHaveErrors();
$this->assertDatabaseHas('services', [
'server_id' => $server->id,
'name' => $name,
'type' => $type,
'status' => ServiceStatus::READY,
]);
}
public static function data(): array
{
return [
@ -247,4 +290,50 @@ public static function data(): array
['mysql'],
];
}
public static function installData(): array
{
return [
[
'nginx',
'webserver',
'latest',
],
[
'php',
'php',
'7.4',
],
[
'supervisor',
'process_manager',
'latest',
],
[
'redis',
'memory_database',
'latest',
],
[
'mysql',
'database',
'8.0',
],
[
'mariadb',
'database',
'10.4',
],
[
'postgresql',
'database',
'16',
],
[
'vito-agent',
'monitoring',
'latest',
],
];
}
}