🔥 **Cleanup & Tests:** Removed the obsolete auth.register component and its related route, feature tests, and browser tests. Disabled public registration and added tests to ensure /register returns a 404. Added new tests for service, lecturer, city, venue, and meetup CRUD flows.

This commit is contained in:
BT
2026-05-03 20:09:07 +02:00
parent a4cbb10604
commit a363c99453
13 changed files with 344 additions and 120 deletions
@@ -0,0 +1,58 @@
<?php
use App\Models\Lecturer;
it('creates a new lecturer end-to-end with valid data', function () {
actingAsUser();
$page = visit('/de/lecturer-create');
$page->fill('[wire\\:model="name"]', 'BrowserTester Saylor')
->fill('[wire\\:model="subtitle"]', 'Browser Test Subject')
->fill('[wire\\:model="intro"]', 'A short intro line.')
->click('[data-flux-button][type="submit"]')
->wait(2)
->assertNoJavaScriptErrors();
expect(Lecturer::query()->where('name', 'BrowserTester Saylor')->exists())->toBeTrue();
});
it('shows a required error when submitting without a lecturer name', function () {
actingAsUser();
$page = visit('/de/lecturer-create');
$page->click('[data-flux-button][type="submit"]')
->wait(1)
->assertNoJavaScriptErrors();
expect(Lecturer::query()->count())->toBe(0);
});
it('rejects creation when the lecturer name already exists', function () {
actingAsUser();
Lecturer::factory()->create(['name' => 'Existing Saylor']);
$page = visit('/de/lecturer-create');
$page->fill('[wire\\:model="name"]', 'Existing Saylor')
->click('[data-flux-button][type="submit"]')
->wait(1)
->assertNoJavaScriptErrors();
expect(Lecturer::query()->where('name', 'Existing Saylor')->count())->toBe(1);
});
it('rejects creation with an invalid website URL', function () {
actingAsUser();
$page = visit('/de/lecturer-create');
$page->fill('[wire\\:model="name"]', 'Bad URL Lecturer')
->fill('[wire\\:model="website"]', 'not-a-url')
->click('[data-flux-button][type="submit"]')
->wait(1)
->assertNoJavaScriptErrors();
expect(Lecturer::query()->where('name', 'Bad URL Lecturer')->exists())->toBeFalse();
});