mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
67 lines
1.6 KiB
PHP
67 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Enums\ServerProvider;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Facades\Http;
|
|
use JsonException;
|
|
use Tests\TestCase;
|
|
|
|
class ServerProvidersTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
/**
|
|
* @throws JsonException
|
|
*/
|
|
public function test_connect_hetzner(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
Http::fake();
|
|
|
|
$this->post(route('server-providers.connect'), [
|
|
'provider' => ServerProvider::HETZNER,
|
|
'name' => 'profile',
|
|
'token' => 'token',
|
|
])->assertSessionHasNoErrors();
|
|
|
|
$this->assertDatabaseHas('server_providers', [
|
|
'provider' => ServerProvider::HETZNER,
|
|
'profile' => 'profile',
|
|
]);
|
|
}
|
|
|
|
public function test_see_providers_list(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
$provider = \App\Models\ServerProvider::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
$this->get(route('server-providers'))
|
|
->assertSee($provider->profile);
|
|
}
|
|
|
|
/**
|
|
* @throws JsonException
|
|
*/
|
|
public function test_delete_provider(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
$provider = \App\Models\ServerProvider::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
$this->delete(route('server-providers.delete', $provider->id))
|
|
->assertSessionHasNoErrors();
|
|
|
|
$this->assertDatabaseMissing('server_providers', [
|
|
'id' => $provider->id,
|
|
]);
|
|
}
|
|
}
|