mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 10:21:37 +00:00
154 lines
4.0 KiB
PHP
154 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Enums\ScriptExecutionStatus;
|
|
use App\Facades\SSH;
|
|
use App\Models\Script;
|
|
use App\Models\ScriptExecution;
|
|
use App\Web\Pages\Scripts\Executions;
|
|
use App\Web\Pages\Scripts\Index;
|
|
use App\Web\Pages\Scripts\Widgets\ScriptExecutionsList;
|
|
use App\Web\Pages\Scripts\Widgets\ScriptsList;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Livewire\Livewire;
|
|
use Tests\TestCase;
|
|
|
|
class ScriptTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_see_scripts(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
$script = Script::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
$this->get(Index::getUrl())
|
|
->assertSuccessful()
|
|
->assertSee($script->name);
|
|
}
|
|
|
|
public function test_create_script(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
Livewire::test(Index::class)
|
|
->callAction('create', [
|
|
'name' => 'Test Script',
|
|
'content' => 'echo "Hello, World!"',
|
|
])
|
|
->assertSuccessful();
|
|
|
|
$this->assertDatabaseHas('scripts', [
|
|
'name' => 'Test Script',
|
|
'content' => 'echo "Hello, World!"',
|
|
]);
|
|
}
|
|
|
|
public function test_edit_script(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
$script = Script::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
Livewire::test(ScriptsList::class)
|
|
->callTableAction('edit', $script->id, [
|
|
'name' => 'New Name',
|
|
'content' => 'echo "Hello, new World!"',
|
|
])
|
|
->assertSuccessful();
|
|
|
|
$this->assertDatabaseHas('scripts', [
|
|
'id' => $script->id,
|
|
'name' => 'New Name',
|
|
'content' => 'echo "Hello, new World!"',
|
|
]);
|
|
}
|
|
|
|
public function test_delete_script(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
$script = Script::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
$scriptExecution = ScriptExecution::factory()->create([
|
|
'script_id' => $script->id,
|
|
'status' => ScriptExecutionStatus::EXECUTING,
|
|
]);
|
|
|
|
Livewire::test(ScriptsList::class)
|
|
->callTableAction('delete', $script->id)
|
|
->assertSuccessful();
|
|
|
|
$this->assertDatabaseMissing('scripts', [
|
|
'id' => $script->id,
|
|
]);
|
|
|
|
$this->assertDatabaseMissing('script_executions', [
|
|
'id' => $scriptExecution->id,
|
|
]);
|
|
}
|
|
|
|
public function test_execute_script_and_view_log(): void
|
|
{
|
|
SSH::fake('script output');
|
|
|
|
$this->actingAs($this->user);
|
|
|
|
$script = Script::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
Livewire::test(Executions::class, [
|
|
'script' => $script,
|
|
])
|
|
->callAction('execute', [
|
|
'server' => $this->server->id,
|
|
'user' => 'root',
|
|
])
|
|
->assertSuccessful();
|
|
|
|
$this->assertDatabaseHas('script_executions', [
|
|
'script_id' => $script->id,
|
|
'status' => ScriptExecutionStatus::COMPLETED,
|
|
]);
|
|
|
|
$this->assertDatabaseHas('server_logs', [
|
|
'server_id' => $this->server->id,
|
|
]);
|
|
|
|
$execution = $script->lastExecution;
|
|
|
|
Livewire::test(ScriptExecutionsList::class, [
|
|
'script' => $script,
|
|
])
|
|
->callTableAction('logs', $execution->id)
|
|
->assertSuccessful();
|
|
}
|
|
|
|
public function test_see_executions(): void
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
$script = Script::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
$scriptExecution = ScriptExecution::factory()->create([
|
|
'script_id' => $script->id,
|
|
'status' => ScriptExecutionStatus::EXECUTING,
|
|
]);
|
|
|
|
$this->get(Executions::getUrl(['script' => $script]))
|
|
->assertSuccessful()
|
|
->assertSee($scriptExecution->status);
|
|
}
|
|
}
|