Phase 7 was scoped to guard aggregate children, which the Doctrine filter cannot reach. Measuring first — as the plan required — moved the target: all 22 children and their 20 repositories were already sound. Every list query anchors on its root, and ServiceItemRepository even joins service_sections and filters on the pair by hand. A repository-level guard would have found nothing. The real exposure was one layer up. Where a uuid arrives from a request body or query string, the entity it names is loaded by uuid alone, and the filter is no help: aggregate children have no tenant column, and a panel user who never chose an environment is not filtered at all. Three leaks, each proven by removing the fix and watching the new tests go red: - GET /api/v1/appointment-service-slots accepted service_item_uuids from any environment. Existence, bookable state and duration leaked through the error messages and the returned slots. The booking path in the same controller had guarded this since it was written; the slot path never did. - POST /api/v1/my/appointment attached service_section_uuid, service_item_uuid, staff_uuid and the service list without any check, and persisted them onto the appointment. A write, not just a read. - PatientService did the same in all three of its loops — pricing, session create, session update — so another environment's service price entered the invoice and its SessionService row was stored, staff included. TenantOwnershipChecker is the single place that answers "does this belong to the current environment?". It reads getEntityType()/getEntityId(), so ServiceItem now delegates that pair to its section: an aggregate child exposing the tenant it inherits. An entity that exposes no pair throws rather than returning false — silence here builds an always-closed guard, which is its own bug. TenantLookupInventoryTest keeps a per-file count of these lookups. It earned its place immediately: the first run found more sites than the manual grep had, and reviewing them turned up the third PatientService loop. StaffController looked unguarded until read properly — ownsStaff sits two lines below the null check. One assertion was wrong before it was right: the create-path test read `$session['services'] ?? []`, which passes vacuously. It now counts the stored rows through the repository, and fails without the fix. Tests: 879 passing. PHPStan unchanged at its 17 pre-existing errors. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
168 lines
7.3 KiB
PHP
168 lines
7.3 KiB
PHP
<?php
|
|
|
|
namespace App\Tests\Patient;
|
|
|
|
use App\ClinicService\Entity\ServiceItem;
|
|
use App\ClinicService\Entity\ServiceSection;
|
|
use App\Doctor\Entity\Doctor;
|
|
use App\Patient\Entity\PatientRecord;
|
|
use App\Patient\Entity\PatientSession;
|
|
use App\Staff\Entity\ClinicStaff;
|
|
use App\Tests\ApiTestCase;
|
|
|
|
/**
|
|
* سرویسهای یک مراجعه با uuid از بدنهٔ درخواست میآیند. service_items فرزند
|
|
* aggregate است (→ service_sections) و ستون محیط ندارد، پس TenantFilter پوششش
|
|
* نمیدهد؛ کالای مصرفی این قاعده را از قبل رعایت میکرد ولی سرویس نه — قیمتِ
|
|
* سرویسِ محیط دیگر وارد محاسبهٔ فاکتور میشد و روی SessionService ذخیره میماند.
|
|
*/
|
|
class SessionServiceTenantTest extends ApiTestCase
|
|
{
|
|
/** @return array{0: \App\Auth\Entity\User, 1: Doctor, 2: PatientRecord} */
|
|
private function recordFor(): array
|
|
{
|
|
$owner = $this->createUser(['ROLE_DOCTOR']);
|
|
$doctor = new Doctor($owner, 'دکتر مراجعه');
|
|
$this->em->persist($doctor);
|
|
$this->em->flush();
|
|
|
|
$patient = $this->createUser(['ROLE_USER']);
|
|
$record = new PatientRecord('doctor', $doctor->getId(), $patient, 'doctor', $doctor->getId());
|
|
$this->em->persist($record);
|
|
$this->em->flush();
|
|
|
|
return [$owner, $doctor, $record];
|
|
}
|
|
|
|
private function serviceFor(Doctor $doctor, string $name, int $price): ServiceItem
|
|
{
|
|
$section = new ServiceSection('doctor', $doctor->getId(), 'بخش ' . $name);
|
|
$this->em->persist($section);
|
|
|
|
$item = new ServiceItem($section, $name, $price);
|
|
$this->em->persist($item);
|
|
$this->em->flush();
|
|
|
|
return $item;
|
|
}
|
|
|
|
private function createSession(\App\Auth\Entity\User $owner, PatientRecord $record, array $body = []): array
|
|
{
|
|
$res = $this->authJson(
|
|
'POST',
|
|
'/api/v1/patient/' . $record->getUuid() . '/session',
|
|
$owner,
|
|
$body + ['visit_price_rials' => 500_000],
|
|
);
|
|
self::assertSame(201, $this->responseCode(), 'ساخت مراجعه باید موفق باشد');
|
|
|
|
return $res['data'];
|
|
}
|
|
|
|
/** ✅ سرویس خودی وارد فاکتور میشود. */
|
|
public function testOwnServiceIsPriced(): void
|
|
{
|
|
[$owner, $doctor, $record] = $this->recordFor();
|
|
$mine = $this->serviceFor($doctor, 'سرویس خودی', 900_000);
|
|
|
|
$session = $this->createSession($owner, $record, [
|
|
'services' => [['service_item_uuid' => $mine->getUuid(), 'quantity' => 1]],
|
|
]);
|
|
|
|
self::assertSame(900_000, $session['services_total_rials'], 'سرویس خودی باید قیمت بخورد');
|
|
}
|
|
|
|
/** ❌ سرویسِ محیط دیگر نه در قیمت میآید نه ذخیره میشود. */
|
|
public function testAnotherEnvironmentsServiceIsIgnoredOnCreate(): void
|
|
{
|
|
[$owner, , $record] = $this->recordFor();
|
|
[, $stranger] = $this->recordFor();
|
|
$foreign = $this->serviceFor($stranger, 'سرویس بیگانه', 900_000);
|
|
|
|
$session = $this->createSession($owner, $record, [
|
|
'services' => [['service_item_uuid' => $foreign->getUuid(), 'quantity' => 1]],
|
|
]);
|
|
|
|
self::assertSame(0, $session['services_total_rials'], 'قیمت سرویس بیگانه نباید اضافه شود');
|
|
|
|
// قیمتگذاری و ذخیرهسازی دو حلقهٔ جدا در PatientService هستند؛ این یکی
|
|
// ذخیره را میسنجد و مستقیم از دیتابیس میخواند تا به شکل پاسخ وابسته نباشد.
|
|
self::assertSame(0, $this->storedServiceCount($session['uuid']), 'نباید روی مراجعه ذخیره شود');
|
|
}
|
|
|
|
private function storedServiceCount(string $sessionUuid): int
|
|
{
|
|
$this->em->clear();
|
|
$session = $this->em->getRepository(PatientSession::class)->findOneBy(['uuid' => $sessionUuid]);
|
|
|
|
return $session === null ? -1 : $session->getServices()->count();
|
|
}
|
|
|
|
/** ❌ همان قاعده در ویرایش مراجعه. */
|
|
public function testAnotherEnvironmentsServiceIsIgnoredOnUpdate(): void
|
|
{
|
|
[$owner, , $record] = $this->recordFor();
|
|
[, $stranger] = $this->recordFor();
|
|
$foreign = $this->serviceFor($stranger, 'سرویس بیگانه', 900_000);
|
|
|
|
$session = $this->createSession($owner, $record);
|
|
|
|
$res = $this->authJson('PATCH', '/api/v1/session/' . $session['uuid'], $owner, [
|
|
'services' => [['service_item_uuid' => $foreign->getUuid(), 'quantity' => 1]],
|
|
]);
|
|
self::assertSame(200, $this->responseCode());
|
|
|
|
self::assertSame(0, $res['data']['services_total_rials'], 'سرویس بیگانه نباید در فاکتور بنشیند');
|
|
self::assertSame([], $res['data']['services'] ?? [], 'و نباید روی مراجعه ذخیره شود');
|
|
}
|
|
|
|
/** ⚠️ مرزی: سرویس خودی میماند حتی وقتی یک بیگانه هم در فهرست است. */
|
|
public function testOwnServiceSurvivesAlongsideAForeignOne(): void
|
|
{
|
|
[$owner, $doctor, $record] = $this->recordFor();
|
|
[, $stranger] = $this->recordFor();
|
|
$mine = $this->serviceFor($doctor, 'سرویس خودی', 300_000);
|
|
$foreign = $this->serviceFor($stranger, 'سرویس بیگانه', 900_000);
|
|
|
|
$session = $this->createSession($owner, $record);
|
|
|
|
$res = $this->authJson('PATCH', '/api/v1/session/' . $session['uuid'], $owner, [
|
|
'services' => [
|
|
['service_item_uuid' => $mine->getUuid(), 'quantity' => 1],
|
|
['service_item_uuid' => $foreign->getUuid(), 'quantity' => 1],
|
|
],
|
|
]);
|
|
self::assertSame(200, $this->responseCode());
|
|
|
|
self::assertSame(300_000, $res['data']['services_total_rials'], 'فقط سرویس خودی باید بماند');
|
|
self::assertCount(1, $res['data']['services'] ?? []);
|
|
}
|
|
|
|
/** ❌ پرسنلِ محیط دیگر هم روی سرویس نمینشیند. */
|
|
public function testAnotherEnvironmentsStaffIsNotAttached(): void
|
|
{
|
|
[$owner, $doctor, $record] = $this->recordFor();
|
|
[, $stranger] = $this->recordFor();
|
|
$mine = $this->serviceFor($doctor, 'سرویس خودی', 300_000);
|
|
|
|
$foreignStaff = new ClinicStaff('doctor', $stranger->getId(), 'پرسنل بیگانه');
|
|
$this->em->persist($foreignStaff);
|
|
$this->em->flush();
|
|
|
|
$session = $this->createSession($owner, $record);
|
|
|
|
$res = $this->authJson('PATCH', '/api/v1/session/' . $session['uuid'], $owner, [
|
|
'services' => [[
|
|
'service_item_uuid' => $mine->getUuid(),
|
|
'staff_uuid' => $foreignStaff->getUuid(),
|
|
'quantity' => 1,
|
|
]],
|
|
]);
|
|
self::assertSame(200, $this->responseCode());
|
|
|
|
$service = ($res['data']['services'] ?? [])[0] ?? null;
|
|
self::assertNotNull($service, 'سرویس خودی باید ثبت شود');
|
|
self::assertNull($service['staff_uuid'] ?? null, 'پرسنل بیگانه نباید چسبیده باشد');
|
|
}
|
|
}
|