Add Meet video visit scheduling for Care appointments.
Deploy Ladill Care / deploy (push) Successful in 38s

Schedule and start video visits via the Meet service API, persist join links on appointments, and propagate the shared copy-button component.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-03 22:53:42 +00:00
co-authored by Cursor
parent 661e6ef0e8
commit 2d06c92ddb
13 changed files with 473 additions and 3 deletions
+148
View File
@@ -0,0 +1,148 @@
<?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\Practitioner;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Http;
use Tests\TestCase;
class CareAppointmentMeetTest extends TestCase
{
use RefreshDatabase;
protected User $user;
protected Organization $organization;
protected Branch $branch;
protected Patient $patient;
protected function setUp(): void
{
parent::setUp();
$this->withoutMiddleware(EnsurePlatformSession::class);
config([
'meet.url' => 'https://meet.test/api/service/v1',
'meet.key' => 'test-care-key',
]);
$this->user = User::create([
'public_id' => 'test-user-meet',
'name' => 'Test User',
'email' => 'meet@example.com',
]);
$this->organization = Organization::create([
'owner_ref' => $this->user->public_id,
'name' => 'Test Clinic',
'slug' => 'test-clinic-meet',
'timezone' => 'UTC',
'settings' => ['onboarded' => true],
]);
Member::create([
'owner_ref' => $this->user->public_id,
'organization_id' => $this->organization->id,
'user_ref' => $this->user->public_id,
'role' => 'receptionist',
]);
$this->branch = Branch::create([
'owner_ref' => $this->user->public_id,
'organization_id' => $this->organization->id,
'name' => 'Main Branch',
'is_active' => true,
]);
Department::create([
'owner_ref' => $this->user->public_id,
'branch_id' => $this->branch->id,
'name' => 'General Outpatient',
'type' => 'outpatient',
'is_active' => true,
]);
$this->patient = Patient::create([
'uuid' => (string) \Illuminate\Support\Str::uuid(),
'owner_ref' => $this->user->public_id,
'organization_id' => $this->organization->id,
'branch_id' => $this->branch->id,
'patient_number' => 'LC-2026-00099',
'first_name' => 'Ama',
'last_name' => 'Mensah',
'email' => 'ama@example.com',
]);
}
public function test_can_schedule_video_visit_for_appointment(): void
{
Http::fake([
'meet.test/*' => Http::response([
'room' => ['uuid' => 'room-uuid-1'],
'join_url' => 'https://meet.test/join/abc',
], 201),
]);
$appointment = $this->createAppointment();
$this->actingAs($this->user)
->post(route('care.appointments.schedule-meet', $appointment))
->assertRedirect(route('care.appointments.show', $appointment));
$appointment->refresh();
$this->assertSame('room-uuid-1', $appointment->meet_room_uuid);
$this->assertSame('https://meet.test/join/abc', $appointment->meet_join_url);
$this->assertDatabaseHas('care_audit_logs', ['action' => 'appointment.meet_scheduled']);
}
public function test_can_start_instant_video_visit(): void
{
Http::fake([
'meet.test/*' => Http::sequence()
->push([
'room' => ['uuid' => 'room-uuid-2'],
'join_url' => 'https://meet.test/join/live',
], 201)
->push([
'join_url' => 'https://meet.test/join/live-now',
], 200),
]);
Member::where('user_ref', $this->user->public_id)->update(['role' => 'doctor']);
$appointment = $this->createAppointment(Appointment::STATUS_WAITING);
$this->actingAs($this->user)
->post(route('care.appointments.start-meet', $appointment))
->assertRedirect('https://meet.test/join/live-now');
$appointment->refresh();
$this->assertSame('room-uuid-2', $appointment->meet_room_uuid);
}
protected function createAppointment(string $status = Appointment::STATUS_SCHEDULED): Appointment
{
return Appointment::create([
'uuid' => (string) \Illuminate\Support\Str::uuid(),
'owner_ref' => $this->user->public_id,
'organization_id' => $this->organization->id,
'branch_id' => $this->branch->id,
'patient_id' => $this->patient->id,
'type' => Appointment::TYPE_SCHEDULED,
'status' => $status,
'scheduled_at' => now()->addHour(),
'reason' => 'Follow-up',
]);
}
}