php-agentic/tests/Feature/Livewire/SessionDetailTest.php
darbs-claude 2ba1751081
Some checks failed
CI / PHP 8.2 (pull_request) Failing after 0s
CI / PHP 8.3 (pull_request) Failing after 0s
CI / PHP 8.4 (pull_request) Failing after 0s
CI / Assets (pull_request) Failing after 0s
test: add Livewire component tests for all 12 admin components
Closes #11

Adds comprehensive Livewire tests in tests/Feature/Livewire/ covering:
- DashboardTest: stats structure, refresh action, blocked alert, quick links
- PlansTest: auth, filters, activate/complete/archive/delete actions
- PlanDetailTest: auth, plan loading, phase actions, task validation
- SessionsTest: auth, filters, pause/resume/complete/fail actions
- SessionDetailTest: auth, polling, modal states, session control
- ToolAnalyticsTest: auth, setDays, filters, success rate colour helpers
- ApiKeysTest: auth, create/edit/revoke modals, validation, stats
- ApiKeyManagerTest: workspace binding, create form, toggleScope
- ToolCallsTest: auth, filters, viewCall/closeCallDetail, badge helpers
- RequestLogTest: filters, selectRequest/closeDetail interactions
- TemplatesTest: auth, preview/import/create modals, clearFilters
- PlaygroundTest: server loading, API key validation, execute behaviour

Infrastructure:
- LivewireTestCase base class with stub view namespace registration
- HadesUser fixture for auth()->user()->isHades() checks
- Minimal stub blade views in tests/views/ (agentic and mcp namespaces)
- composer.json: add livewire/livewire and pest-plugin-livewire to
  require-dev; fix autoload-dev paths to lowercase tests/ directory

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-23 01:16:33 +00:00

167 lines
4.9 KiB
PHP

<?php
declare(strict_types=1);
namespace Core\Mod\Agentic\Tests\Feature\Livewire;
use Core\Mod\Agentic\Models\AgentSession;
use Core\Mod\Agentic\View\Modal\Admin\SessionDetail;
use Core\Tenant\Models\Workspace;
use Livewire\Livewire;
use Symfony\Component\HttpKernel\Exception\HttpException;
class SessionDetailTest extends LivewireTestCase
{
private Workspace $workspace;
private AgentSession $session;
protected function setUp(): void
{
parent::setUp();
$this->workspace = Workspace::factory()->create();
$this->session = AgentSession::factory()->active()->create([
'workspace_id' => $this->workspace->id,
]);
}
public function test_requires_hades_access(): void
{
$this->expectException(HttpException::class);
Livewire::test(SessionDetail::class, ['id' => $this->session->id]);
}
public function test_renders_successfully_with_hades_user(): void
{
$this->actingAsHades();
Livewire::test(SessionDetail::class, ['id' => $this->session->id])
->assertOk();
}
public function test_mount_loads_session_by_id(): void
{
$this->actingAsHades();
$component = Livewire::test(SessionDetail::class, ['id' => $this->session->id]);
$this->assertEquals($this->session->id, $component->instance()->session->id);
}
public function test_active_session_has_polling_enabled(): void
{
$this->actingAsHades();
$component = Livewire::test(SessionDetail::class, ['id' => $this->session->id]);
$this->assertGreaterThan(0, $component->instance()->pollingInterval);
}
public function test_completed_session_disables_polling(): void
{
$this->actingAsHades();
$completedSession = AgentSession::factory()->completed()->create([
'workspace_id' => $this->workspace->id,
]);
$component = Livewire::test(SessionDetail::class, ['id' => $completedSession->id]);
$this->assertEquals(0, $component->instance()->pollingInterval);
}
public function test_has_default_modal_states(): void
{
$this->actingAsHades();
Livewire::test(SessionDetail::class, ['id' => $this->session->id])
->assertSet('showCompleteModal', false)
->assertSet('showFailModal', false)
->assertSet('showReplayModal', false)
->assertSet('completeSummary', '')
->assertSet('failReason', '');
}
public function test_pause_session_changes_status(): void
{
$this->actingAsHades();
Livewire::test(SessionDetail::class, ['id' => $this->session->id])
->call('pauseSession')
->assertOk();
$this->assertEquals(AgentSession::STATUS_PAUSED, $this->session->fresh()->status);
}
public function test_resume_session_changes_status_from_paused(): void
{
$this->actingAsHades();
$pausedSession = AgentSession::factory()->paused()->create([
'workspace_id' => $this->workspace->id,
]);
Livewire::test(SessionDetail::class, ['id' => $pausedSession->id])
->call('resumeSession')
->assertOk();
$this->assertEquals(AgentSession::STATUS_ACTIVE, $pausedSession->fresh()->status);
}
public function test_open_complete_modal_shows_modal(): void
{
$this->actingAsHades();
Livewire::test(SessionDetail::class, ['id' => $this->session->id])
->call('openCompleteModal')
->assertSet('showCompleteModal', true);
}
public function test_open_fail_modal_shows_modal(): void
{
$this->actingAsHades();
Livewire::test(SessionDetail::class, ['id' => $this->session->id])
->call('openFailModal')
->assertSet('showFailModal', true);
}
public function test_open_replay_modal_shows_modal(): void
{
$this->actingAsHades();
Livewire::test(SessionDetail::class, ['id' => $this->session->id])
->call('openReplayModal')
->assertSet('showReplayModal', true);
}
public function test_work_log_returns_array(): void
{
$this->actingAsHades();
$component = Livewire::test(SessionDetail::class, ['id' => $this->session->id]);
$this->assertIsArray($component->instance()->workLog);
}
public function test_artifacts_returns_array(): void
{
$this->actingAsHades();
$component = Livewire::test(SessionDetail::class, ['id' => $this->session->id]);
$this->assertIsArray($component->instance()->artifacts);
}
public function test_get_status_color_class_returns_string(): void
{
$this->actingAsHades();
$component = Livewire::test(SessionDetail::class, ['id' => $this->session->id]);
$class = $component->instance()->getStatusColorClass(AgentSession::STATUS_ACTIVE);
$this->assertNotEmpty($class);
}
}