mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Http;
|
|
|
|
use App\Http\Livewire\SshKeys\AddKey;
|
|
use App\Http\Livewire\SshKeys\KeysList;
|
|
use App\Models\SshKey;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Livewire\Livewire;
|
|
use Tests\TestCase;
|
|
|
|
class SshKeysTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_create_ssh_key(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
Livewire::test(AddKey::class)
|
|
->set('name', 'test')
|
|
->set(
|
|
'public_key',
|
|
'ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSUGPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XAt3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/EnmZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbxNrRFi9wrf+M7Q== test@test.local'
|
|
)
|
|
->call('add')
|
|
->assertSuccessful();
|
|
}
|
|
|
|
public function test_get_public_keys_list(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
$key = SshKey::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
Livewire::test(KeysList::class)
|
|
->assertSee([
|
|
$key->name,
|
|
]);
|
|
}
|
|
|
|
public function test_delete_key(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
$key = SshKey::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
Livewire::test(KeysList::class)
|
|
->set('deleteId', $key->id)
|
|
->call('delete')
|
|
->assertSuccessful();
|
|
|
|
$this->assertDatabaseMissing('ssh_keys', [
|
|
'id' => $key->id,
|
|
]);
|
|
}
|
|
}
|