withoutMiddleware(EnsurePlatformSession::class); $this->owner = User::create([ 'public_id' => 'psy-owner', 'name' => 'Owner', 'email' => 'psy-owner@example.com', ]); $this->organization = Organization::create([ 'owner_ref' => $this->owner->public_id, 'name' => 'Psychiatry Clinic', 'slug' => 'psychiatry-clinic', 'settings' => [ 'onboarded' => true, 'facility_type' => 'clinic', 'plan' => 'pro', 'plan_expires_at' => now()->addMonth()->toIso8601String(), 'queue_integration_enabled' => true, ], ]); Member::create([ 'owner_ref' => $this->owner->public_id, 'organization_id' => $this->organization->id, 'user_ref' => $this->owner->public_id, 'role' => 'hospital_admin', 'branch_id' => null, ]); $this->branch = Branch::create([ 'owner_ref' => $this->owner->public_id, 'organization_id' => $this->organization->id, 'name' => 'Main', 'is_active' => true, ]); app(SpecialtyModuleService::class)->activate( $this->organization, $this->owner->public_id, 'psychiatry', ); $department = Department::query() ->where('branch_id', $this->branch->id) ->where('type', 'psychiatry') ->firstOrFail(); $this->patient = Patient::create([ 'owner_ref' => $this->owner->public_id, 'organization_id' => $this->organization->id, 'branch_id' => $this->branch->id, 'patient_number' => 'P-PSY-SUITE', 'first_name' => 'Adwoa', 'last_name' => 'Mensah', 'gender' => 'female', 'date_of_birth' => '1988-11-02', ]); $this->visit = Visit::create([ 'owner_ref' => $this->owner->public_id, 'organization_id' => $this->organization->id, 'branch_id' => $this->branch->id, 'patient_id' => $this->patient->id, 'status' => Visit::STATUS_IN_PROGRESS, 'checked_in_at' => now(), 'specialty_stage' => 'check_in', ]); Appointment::create([ 'owner_ref' => $this->owner->public_id, 'organization_id' => $this->organization->id, 'branch_id' => $this->branch->id, 'patient_id' => $this->patient->id, 'department_id' => $department->id, 'visit_id' => $this->visit->id, 'type' => Appointment::TYPE_WALK_IN, 'status' => Appointment::STATUS_IN_CONSULTATION, 'scheduled_at' => now(), 'waiting_at' => now(), 'checked_in_at' => now(), 'started_at' => now(), ]); } public function test_overview_and_history_tabs_render(): void { $this->actingAs($this->owner) ->get(route('care.specialty.workspace', [ 'module' => 'psychiatry', 'visit' => $this->visit, 'tab' => 'overview', ])) ->assertOk() ->assertSee('Psychiatry overview') ->assertSee('data-care-stage-bar', false) ->assertSee('History / MSE') ->assertSee('Start history / MSE') ->assertSee('Psychiatry reports'); $this->actingAs($this->owner) ->get(route('care.specialty.workspace', [ 'module' => 'psychiatry', 'visit' => $this->visit, 'tab' => 'history', ])) ->assertOk() ->assertSee('Presenting complaint') ->assertSee('MSE summary'); } public function test_risk_sets_stage_and_alerts(): void { $this->actingAs($this->owner) ->post(route('care.specialty.clinical.save', [ 'module' => 'psychiatry', 'visit' => $this->visit, ]), [ 'tab' => 'risk', 'payload' => [ 'overall_risk' => 'High', 'self_harm' => 'Ideation', 'harm_others' => 'None identified', 'risk_summary' => 'High risk — safety planning required', 'immediate_actions' => 'Safety plan; senior review', ], ]) ->assertRedirect(); $this->assertSame('risk', $this->visit->fresh()->specialty_stage); $record = SpecialtyClinicalRecord::query() ->where('visit_id', $this->visit->id) ->where('record_type', 'risk_assessment') ->firstOrFail(); $codes = collect($record->alerts)->pluck('code')->all(); $this->assertContains('psy.risk_high', $codes); } public function test_stage_advance_and_followup_completes_visit(): void { $this->actingAs($this->owner) ->post(route('care.specialty.psychiatry.stage', $this->visit), [ 'stage' => 'review', ]) ->assertRedirect(route('care.specialty.workspace', [ 'module' => 'psychiatry', 'visit' => $this->visit, 'tab' => 'followup', ])); $this->assertSame('review', $this->visit->fresh()->specialty_stage); $this->actingAs($this->owner) ->post(route('care.specialty.psychiatry.followup', $this->visit), [ 'tab' => 'followup', 'payload' => [ 'review_type' => 'Clinic follow-up', 'progress' => 'Mood improved; ideation resolved', 'current_risk' => 'Low', 'outcome' => 'Follow-up arranged', 'next_steps' => 'Return in 2 weeks', ], ]) ->assertRedirect(route('care.specialty.workspace', [ 'module' => 'psychiatry', 'visit' => $this->visit, 'tab' => 'followup', ])); $this->assertSame('completed', $this->visit->fresh()->specialty_stage); $this->assertSame(Visit::STATUS_COMPLETED, $this->visit->fresh()->status); $this->assertDatabaseHas('care_specialty_clinical_records', [ 'visit_id' => $this->visit->id, 'record_type' => 'psych_followup', 'status' => SpecialtyClinicalRecord::STATUS_COMPLETED, ]); } public function test_reports_and_print(): void { $this->actingAs($this->owner) ->get(route('care.specialty.psychiatry.reports')) ->assertOk() ->assertSee('Psychiatry reports') ->assertSee('Arrivals today'); $this->actingAs($this->owner) ->get(route('care.specialty.psychiatry.print', $this->visit)) ->assertOk() ->assertSee('Psychiatry summary') ->assertSee($this->patient->fullName()); } public function test_list_index_does_not_auto_open_patient(): void { $this->actingAs($this->owner) ->get(route('care.specialty.show', 'psychiatry')) ->assertOk() ->assertDontSee('Psychiatry overview'); } }