mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-06-11 02:50:29 +00:00
3a507cced2
- 🔍 Added `resolveInScope` method to `ResolvesEntities` for scoped entity resolution with stricter control. - 👥 Introduced `AddMeetupToMineTool` MCP tool for adding external meetups to "My Meetups." - 🛠️ Updated `ListMyMeetupsTool` and `ShowMyMeetupTool` to include both created and joined meetups. - 📚 Updated `Meetup` model with `associatedWith` scope for querying user-related meetups. - ✅ Expanded feature tests for meetup membership, creator permissions, and scoped tool usage. - 🛡️ Unified access checks across Livewire and APIs to restrict editing meetup details to creators or super-admins. - 🔗 Registered `AddMeetupToMineTool` in `EinundzwanzigServer`.
111 lines
3.6 KiB
PHP
111 lines
3.6 KiB
PHP
<?php
|
|
|
|
use App\Models\City;
|
|
use App\Models\Country;
|
|
use App\Models\Meetup;
|
|
use App\Models\MeetupEvent;
|
|
use App\Models\User;
|
|
use Livewire\Livewire;
|
|
|
|
beforeEach(function () {
|
|
$this->country = Country::factory()->create(['code' => 'de']);
|
|
$this->city = City::factory()->create(['country_id' => $this->country->id]);
|
|
$this->meetup = Meetup::factory()->create(['city_id' => $this->city->id]);
|
|
$this->event = MeetupEvent::factory()->create(['meetup_id' => $this->meetup->id]);
|
|
});
|
|
|
|
it('mounts meetups.landingpage with a meetup', function () {
|
|
Livewire::test('meetups.landingpage', ['meetup' => $this->meetup])->assertStatus(200);
|
|
});
|
|
|
|
it('mounts meetups.landingpage-event with meetup and event', function () {
|
|
Livewire::test('meetups.landingpage-event', [
|
|
'meetup' => $this->meetup,
|
|
'event' => $this->event,
|
|
])->assertStatus(200);
|
|
});
|
|
|
|
it('mounts meetups.create when authenticated', function () {
|
|
actingAsUser();
|
|
Livewire::test('meetups.create')->assertStatus(200);
|
|
});
|
|
|
|
it('mounts meetups.edit for the creator of the meetup', function () {
|
|
$creator = actingAsUser();
|
|
$meetup = Meetup::factory()->create([
|
|
'city_id' => $this->city->id,
|
|
'created_by' => $creator->id,
|
|
]);
|
|
$meetup->users()->attach($creator);
|
|
|
|
Livewire::test('meetups.edit', ['meetup' => $meetup])->assertStatus(200);
|
|
});
|
|
|
|
it('mounts meetups.edit for the creator even without a My-Meetups pivot entry', function () {
|
|
$creator = actingAsUser();
|
|
$meetup = Meetup::factory()->create([
|
|
'city_id' => $this->city->id,
|
|
'created_by' => $creator->id,
|
|
]);
|
|
|
|
Livewire::test('meetups.edit', ['meetup' => $meetup])->assertStatus(200);
|
|
});
|
|
|
|
it('aborts meetups.edit with 403 for a member who did not create the meetup', function () {
|
|
$creator = User::factory()->create();
|
|
$member = actingAsUser();
|
|
$meetup = Meetup::factory()->create([
|
|
'city_id' => $this->city->id,
|
|
'created_by' => $creator->id,
|
|
]);
|
|
$meetup->users()->attach($member);
|
|
|
|
Livewire::test('meetups.edit', ['meetup' => $meetup])->assertStatus(403);
|
|
});
|
|
|
|
it('aborts meetups.edit with 403 when the user is neither creator nor super-admin', function () {
|
|
actingAsUser();
|
|
|
|
Livewire::test('meetups.edit', ['meetup' => $this->meetup])->assertStatus(403);
|
|
});
|
|
|
|
it('mounts meetups.create-edit-events for new event', function () {
|
|
actingAsUser();
|
|
Livewire::test('meetups.create-edit-events', ['meetup' => $this->meetup])->assertStatus(200);
|
|
});
|
|
|
|
it('mounts meetups.create-edit-events for existing event', function () {
|
|
actingAsUser();
|
|
Livewire::test('meetups.create-edit-events', [
|
|
'meetup' => $this->meetup,
|
|
'event' => $this->event,
|
|
])->assertStatus(200);
|
|
});
|
|
|
|
it('does not crash with PropertyNotFoundException when startDate is set to null in series mode', function () {
|
|
actingAsUser();
|
|
Livewire::test('meetups.create-edit-events', ['meetup' => $this->meetup])
|
|
->set('seriesMode', true)
|
|
->set('endDate', '2026-10-27')
|
|
->set('startDate', null)
|
|
->assertStatus(200)
|
|
->assertSet('startDate', null);
|
|
});
|
|
|
|
it('does not crash when endDate is set to null in series mode', function () {
|
|
actingAsUser();
|
|
Livewire::test('meetups.create-edit-events', ['meetup' => $this->meetup])
|
|
->set('seriesMode', true)
|
|
->set('endDate', null)
|
|
->assertStatus(200)
|
|
->assertSet('endDate', null);
|
|
});
|
|
|
|
it('does not crash when startTime is set to null', function () {
|
|
actingAsUser();
|
|
Livewire::test('meetups.create-edit-events', ['meetup' => $this->meetup])
|
|
->set('startTime', null)
|
|
->assertStatus(200)
|
|
->assertSet('startTime', null);
|
|
});
|