A parent registers once and manages lessons for one or more children, who need no login of their own. A child is a real wp_users row with the student role but no usable login — so student_id keeps meaning "a WordPress user" on every table, and booking, credits, policies and enrolments work unchanged. A us_guardians link table maps guardian to child. The signup form gains a parent/guardian tick that reveals a block per child, with the account-signup questions asked per child rather than per guardian — they describe the student, not the account holder. Signup policies are recorded once per child with the guardian as the acceptor, which is the record that actually means something. A family that half-creates is rolled back entirely rather than leaving a guardian who cannot re-register. The booking and enrolment forms gain a "Who is this for?" picker listing children first, so the default selection is never the parent — booking for the wrong child is correctable, quietly billing a parent for their kid's lesson is not. POST /bookings and POST /enrollments take an optional student_id honoured only for that child's guardian; anything else is a 403. That check is the authorisation boundary of the feature. Payments and credits gain a payer: the charge names the child it was for and the guardian who owes it, so per-child reporting is unchanged while notices, receipts and the payment step reach the parent. Credit is held by the payer, so one child's cancellation can settle a sibling's charge, and the daily billing scan sends a guardian one notice covering every child. Closes #132 Co-Authored-By: Claude Opus 5 <[email protected]>
58 lines
1.7 KiB
PHP
58 lines
1.7 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Unsupervised\Schedular\Tests\Unit\Guardian;
|
|
|
|
use Unsupervised\Schedular\Guardian\GuardianLink;
|
|
use Unsupervised\Schedular\Tests\Unit\TestCase;
|
|
|
|
class GuardianLinkTest extends TestCase
|
|
{
|
|
public function testFromRowCoercesWpdbStrings(): void
|
|
{
|
|
$link = GuardianLink::fromRow((object) [
|
|
'id' => '7',
|
|
'guardian_id' => '5',
|
|
'student_id' => '42',
|
|
'relationship' => 'Parent',
|
|
'created_at' => '2026-07-29 09:00:00',
|
|
]);
|
|
|
|
self::assertSame(7, $link->id);
|
|
self::assertSame(5, $link->guardianId);
|
|
self::assertSame(42, $link->studentId);
|
|
self::assertSame('Parent', $link->relationship);
|
|
self::assertSame('2026-07-29 09:00:00', $link->createdAt);
|
|
}
|
|
|
|
public function testRelationshipDefaultsToEmptyWhenTheColumnIsNull(): void
|
|
{
|
|
$link = GuardianLink::fromRow((object) [
|
|
'id' => '7',
|
|
'guardian_id' => '5',
|
|
'student_id' => '42',
|
|
'relationship' => null,
|
|
'created_at' => null,
|
|
]);
|
|
|
|
self::assertSame('', $link->relationship);
|
|
self::assertNull($link->createdAt);
|
|
}
|
|
|
|
public function testToArrayExposesEveryColumn(): void
|
|
{
|
|
$link = new GuardianLink(guardianId: 5, studentId: 42, relationship: 'Parent', createdAt: '2026-07-29 09:00:00', id: 7);
|
|
|
|
self::assertSame(
|
|
[
|
|
'id' => 7,
|
|
'guardian_id' => 5,
|
|
'student_id' => 42,
|
|
'relationship' => 'Parent',
|
|
'created_at' => '2026-07-29 09:00:00',
|
|
],
|
|
$link->toArray()
|
|
);
|
|
}
|
|
}
|