Deploy Ladill Care / deploy (push) Successful in 35s
Board lists used type-only departments while KPIs used provisioned department IDs, so Waiting could show N with an empty WAITING column. Co-authored-by: Cursor <cursoragent@cursor.com>
303 lines
10 KiB
PHP
303 lines
10 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 CareWomensHealthSuiteTest 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' => 'wh-owner',
|
|
'name' => 'Owner',
|
|
'email' => 'wh-owner@example.com',
|
|
]);
|
|
|
|
$this->organization = Organization::create([
|
|
'owner_ref' => $this->owner->public_id,
|
|
'name' => "Women's Health Clinic",
|
|
'slug' => 'womens-health-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,
|
|
'womens_health',
|
|
);
|
|
|
|
$department = Department::query()
|
|
->where('branch_id', $this->branch->id)
|
|
->where('type', 'womens_health')
|
|
->firstOrFail();
|
|
|
|
$this->patient = Patient::create([
|
|
'owner_ref' => $this->owner->public_id,
|
|
'organization_id' => $this->organization->id,
|
|
'branch_id' => $this->branch->id,
|
|
'patient_number' => 'P-MAT-SUITE',
|
|
'first_name' => 'Ama',
|
|
'last_name' => 'Boateng',
|
|
'gender' => 'female',
|
|
'date_of_birth' => '1994-08-11',
|
|
]);
|
|
|
|
$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' => 'womens_health',
|
|
'visit' => $this->visit,
|
|
'tab' => 'overview',
|
|
]))
|
|
->assertOk()
|
|
->assertSee('Health overview')
|
|
->assertSee('data-care-stage-bar', false)
|
|
->assertSee('Check-in')
|
|
->assertSee('ANC history')
|
|
->assertSee('Start ANC history')
|
|
->assertSee('Health reports');
|
|
|
|
$this->actingAs($this->owner)
|
|
->get(route('care.specialty.workspace', [
|
|
'module' => 'womens_health',
|
|
'visit' => $this->visit,
|
|
'tab' => 'history',
|
|
]))
|
|
->assertOk()
|
|
->assertSee('Gravida')
|
|
->assertSee('Gestational age');
|
|
}
|
|
|
|
public function test_exam_sets_stage_and_danger_alerts(): void
|
|
{
|
|
$this->actingAs($this->owner)
|
|
->post(route('care.specialty.clinical.save', [
|
|
'module' => 'womens_health',
|
|
'visit' => $this->visit,
|
|
]), [
|
|
'tab' => 'exam',
|
|
'payload' => [
|
|
'bp' => '158/102',
|
|
'fundal_height' => 32,
|
|
'presentation' => 'Cephalic',
|
|
'danger_signs' => 'Headache and visual spots',
|
|
'findings' => 'Hypertension with oedema',
|
|
],
|
|
])
|
|
->assertRedirect();
|
|
|
|
$this->assertSame('exam', $this->visit->fresh()->specialty_stage);
|
|
|
|
$record = SpecialtyClinicalRecord::query()
|
|
->where('visit_id', $this->visit->id)
|
|
->where('record_type', 'obstetric_exam')
|
|
->firstOrFail();
|
|
|
|
$codes = collect($record->alerts)->pluck('code')->all();
|
|
$this->assertContains('mat.danger_signs', $codes);
|
|
$this->assertContains('mat.hypertension', $codes);
|
|
}
|
|
|
|
public function test_stage_advance_and_postnatal_completes_visit(): void
|
|
{
|
|
$this->actingAs($this->owner)
|
|
->post(route('care.specialty.womens_health.stage', $this->visit), [
|
|
'stage' => 'postnatal',
|
|
])
|
|
->assertRedirect(route('care.specialty.workspace', [
|
|
'module' => 'womens_health',
|
|
'visit' => $this->visit,
|
|
'tab' => 'postnatal',
|
|
]));
|
|
|
|
$this->assertSame('postnatal', $this->visit->fresh()->specialty_stage);
|
|
|
|
$this->actingAs($this->owner)
|
|
->post(route('care.specialty.womens_health.postnatal', $this->visit), [
|
|
'tab' => 'postnatal',
|
|
'payload' => [
|
|
'episode_type' => 'Postnatal review',
|
|
'delivery_mode' => 'SVD',
|
|
'maternal_condition' => 'Stable',
|
|
'baby_condition' => 'Well',
|
|
'outcome' => 'Completed — discharged',
|
|
'plan' => 'Routine postnatal advice',
|
|
],
|
|
])
|
|
->assertRedirect(route('care.specialty.workspace', [
|
|
'module' => 'womens_health',
|
|
'visit' => $this->visit,
|
|
'tab' => 'postnatal',
|
|
]));
|
|
|
|
$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' => 'postnatal_note',
|
|
'status' => SpecialtyClinicalRecord::STATUS_COMPLETED,
|
|
]);
|
|
}
|
|
|
|
public function test_reports_and_print(): void
|
|
{
|
|
$this->actingAs($this->owner)
|
|
->get(route('care.specialty.womens_health.reports'))
|
|
->assertOk()
|
|
->assertSee('Health reports')
|
|
->assertSee('Arrivals today');
|
|
|
|
$this->actingAs($this->owner)
|
|
->get(route('care.specialty.womens_health.print', $this->visit))
|
|
->assertOk()
|
|
->assertSee('Health 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', 'womens_health'))
|
|
->assertOk()
|
|
->assertDontSee('Health overview');
|
|
}
|
|
|
|
public function test_queue_board_lists_waiting_on_provisioned_non_type_departments(): void
|
|
{
|
|
// KPIs use specialty_module_provisioning.department_ids; the board used to
|
|
// only load departments by type=womens_health, so hero said "Waiting: N"
|
|
// while WAITING stayed empty.
|
|
$legacyDesk = Department::create([
|
|
'owner_ref' => $this->owner->public_id,
|
|
'organization_id' => $this->organization->id,
|
|
'branch_id' => $this->branch->id,
|
|
'name' => 'ANC desk',
|
|
'type' => 'maternity',
|
|
'is_active' => true,
|
|
]);
|
|
|
|
$settings = $this->organization->settings ?? [];
|
|
$provisioning = $settings['specialty_module_provisioning']['womens_health'] ?? [];
|
|
$provisioning['department_ids'] = [$legacyDesk->id];
|
|
$settings['specialty_module_provisioning']['womens_health'] = $provisioning;
|
|
$this->organization->update(['settings' => $settings]);
|
|
$this->organization->refresh();
|
|
|
|
$patient = Patient::create([
|
|
'owner_ref' => $this->owner->public_id,
|
|
'organization_id' => $this->organization->id,
|
|
'branch_id' => $this->branch->id,
|
|
'patient_number' => 'P-WH-QUEUE',
|
|
'first_name' => 'Efua',
|
|
'last_name' => 'Asante',
|
|
'gender' => 'female',
|
|
'date_of_birth' => '1990-03-12',
|
|
]);
|
|
|
|
$visit = Visit::create([
|
|
'owner_ref' => $this->owner->public_id,
|
|
'organization_id' => $this->organization->id,
|
|
'branch_id' => $this->branch->id,
|
|
'patient_id' => $patient->id,
|
|
'status' => Visit::STATUS_OPEN,
|
|
'checked_in_at' => now(),
|
|
]);
|
|
|
|
Appointment::create([
|
|
'owner_ref' => $this->owner->public_id,
|
|
'organization_id' => $this->organization->id,
|
|
'branch_id' => $this->branch->id,
|
|
'patient_id' => $patient->id,
|
|
'department_id' => $legacyDesk->id,
|
|
'visit_id' => $visit->id,
|
|
'type' => Appointment::TYPE_WALK_IN,
|
|
'status' => Appointment::STATUS_WAITING,
|
|
'scheduled_at' => now(),
|
|
'waiting_at' => now(),
|
|
'checked_in_at' => now(),
|
|
]);
|
|
|
|
$this->actingAs($this->owner)
|
|
->get(route('care.specialty.show', 'womens_health'))
|
|
->assertOk()
|
|
->assertSee('Efua Asante')
|
|
->assertDontSee('No patients waiting.');
|
|
}
|
|
}
|