Files
crewli/api/tests/Unit/FormBuilder/Publishing/SchemaHasLinkedEventTest.php
bert.hausmans 81a8120f98 feat(form-builder): add PublishGuard framework + 9 concrete guards (WS-6)
Per-purpose schema validation composes a PurposeGuardProvider returning
a list of guards. Errors collected (not first-fail) so the builder UI
surfaces every issue per save. ConditionalRequirement composes higher-
order without proliferating one-off classes.

RequiresIdentityKeyBinding checks the is_identity_key flag specifically;
the binding-existence check is handled additively by the existing
assertRequiredBindingsPresent in FormSchemaService.

SchemaHasLinkedEvent checks owner_type='event' + owner_id (FormSchema
uses polymorphic owner; there is no direct event_id column).

i18n messages live in lang/nl/form_builder_publish_guards.php.

Refs: RFC-WS-6.md §3 (Q13), §4 (V1, V3)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-25 22:55:42 +02:00

40 lines
1.0 KiB
PHP

<?php
declare(strict_types=1);
namespace Tests\Unit\FormBuilder\Publishing;
use App\FormBuilder\Publishing\SchemaHasLinkedEvent;
use App\Models\Event;
use App\Models\FormBuilder\FormSchema;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
final class SchemaHasLinkedEventTest extends TestCase
{
use RefreshDatabase;
public function test_passes_when_owner_type_event_with_owner_id(): void
{
$event = Event::factory()->create();
$schema = FormSchema::factory()->create([
'owner_type' => 'event',
'owner_id' => $event->id,
]);
$result = (new SchemaHasLinkedEvent())->evaluate($schema);
$this->assertTrue($result->passed);
}
public function test_fails_when_owner_type_is_not_event(): void
{
$schema = FormSchema::factory()->create([
'owner_type' => 'organisation',
'owner_id' => null,
]);
$result = (new SchemaHasLinkedEvent())->evaluate($schema);
$this->assertFalse($result->passed);
}
}