Files
ladill-care/tests/Feature/CareChildWelfareSuiteTest.php
T
isaaccladandCursor c0e5d8ef00
Deploy Ladill Care / deploy (push) Successful in 54s
Add full Ambulance and Child Welfare specialty clinical suites.
EMS clinic workflow (dispatch → scene → transport → handover) plus completed CWC suite, with shell stages, clinical records, reports/print, demo seed, and suite tests.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-19 22:25:52 +00:00

242 lines
8.2 KiB
PHP

<?php
namespace Tests\Feature;
use App\Http\Middleware\EnsurePlatformSession;
use App\Models\Appointment;
use App\Models\Branch;
use App\Models\Department;
use App\Models\Member;
use App\Models\Organization;
use App\Models\Patient;
use App\Models\SpecialtyClinicalRecord;
use App\Models\User;
use App\Models\Visit;
use App\Services\Care\SpecialtyModuleService;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class CareChildWelfareSuiteTest extends TestCase
{
use RefreshDatabase;
protected User $owner;
protected Organization $organization;
protected Branch $branch;
protected Patient $patient;
protected Visit $visit;
protected function setUp(): void
{
parent::setUp();
$this->withoutMiddleware(EnsurePlatformSession::class);
$this->owner = User::create([
'public_id' => 'cwc-owner',
'name' => 'Owner',
'email' => 'cwc-owner@example.com',
]);
$this->organization = Organization::create([
'owner_ref' => $this->owner->public_id,
'name' => 'Child Welfare Clinic',
'slug' => 'child-welfare-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,
'child_welfare',
);
$department = Department::query()
->where('branch_id', $this->branch->id)
->where('type', 'child_welfare')
->firstOrFail();
$this->patient = Patient::create([
'owner_ref' => $this->owner->public_id,
'organization_id' => $this->organization->id,
'branch_id' => $this->branch->id,
'patient_number' => 'P-CWC-SUITE',
'first_name' => 'Kwame',
'last_name' => 'Mensah',
'gender' => 'male',
'date_of_birth' => '2024-01-15',
]);
$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_assessment_tabs_render(): void
{
$this->actingAs($this->owner)
->get(route('care.specialty.workspace', [
'module' => 'child_welfare',
'visit' => $this->visit,
'tab' => 'overview',
]))
->assertOk()
->assertSee('Child Welfare overview')
->assertSee('data-care-stage-bar', false)
->assertSee('Start intake')
->assertSee('Child Welfare reports');
$this->actingAs($this->owner)
->get(route('care.specialty.workspace', [
'module' => 'child_welfare',
'visit' => $this->visit,
'tab' => 'assessment',
]))
->assertOk()
->assertSee('Age (months)')
->assertSee('Growth status')
->assertSee('Safeguarding flag');
}
public function test_assessment_sets_stage_and_safeguarding_alert(): void
{
$this->actingAs($this->owner)
->post(route('care.specialty.clinical.save', [
'module' => 'child_welfare',
'visit' => $this->visit,
]), [
'tab' => 'assessment',
'payload' => [
'age_months' => 18,
'weight_kg' => 8.2,
'height_cm' => 76,
'growth_status' => 'Underweight',
'nutrition_risk' => 'High',
'exam_findings' => 'Thin; dry skin; alert',
'safeguarding_flag' => 'Concern',
'assessment_summary' => 'Underweight with nutrition risk — counselling and follow-up',
],
])
->assertRedirect();
$this->assertSame('assessment', $this->visit->fresh()->specialty_stage);
$record = SpecialtyClinicalRecord::query()
->where('visit_id', $this->visit->id)
->where('record_type', 'cwc_assessment')
->firstOrFail();
$codes = collect($record->alerts)->pluck('code')->all();
$this->assertContains('cwc.safeguarding', $codes);
$this->assertContains('cwc.nutrition_risk', $codes);
}
public function test_stage_advance_and_followup_completes_visit(): void
{
$this->actingAs($this->owner)
->post(route('care.specialty.child-welfare.stage', $this->visit), [
'stage' => 'followup',
])
->assertRedirect(route('care.specialty.workspace', [
'module' => 'child_welfare',
'visit' => $this->visit,
'tab' => 'followup',
]));
$this->assertSame('followup', $this->visit->fresh()->specialty_stage);
$this->actingAs($this->owner)
->post(route('care.specialty.child-welfare.followup', $this->visit), [
'tab' => 'followup',
'payload' => [
'review_type' => 'Growth recheck',
'interventions_delivered' => 'Nutrition counselling; MUAC recheck',
'progress' => 'Weight improving',
'outcome' => 'Completed uneventfully',
'next_visit' => '4 weeks',
],
])
->assertRedirect(route('care.specialty.workspace', [
'module' => 'child_welfare',
'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' => 'cwc_followup',
'status' => SpecialtyClinicalRecord::STATUS_COMPLETED,
]);
}
public function test_reports_and_print(): void
{
$this->actingAs($this->owner)
->get(route('care.specialty.child-welfare.reports'))
->assertOk()
->assertSee('Child Welfare reports')
->assertSee('Arrivals today');
$this->actingAs($this->owner)
->get(route('care.specialty.child-welfare.print', $this->visit))
->assertOk()
->assertSee('Child Welfare 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', 'child_welfare'))
->assertOk()
->assertDontSee('Child Welfare overview');
}
}