mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-05-19 08:34:53 +00:00
308cd8a611
- Introduced `recalculateActivity` method in `Meetup` model to centralize activity and event timestamp updates. - Added `MeetupEventObserver` to trigger activity recalculation on event save/delete. - Updated `/meetups:update-activity` command to leverage the new model method for cleanup. - Enhanced tests to cover various `MeetupEvent` scenarios affecting activity states.
136 lines
4.5 KiB
PHP
136 lines
4.5 KiB
PHP
<?php
|
|
|
|
use App\Enums\RecurrenceType;
|
|
use App\Models\Meetup;
|
|
use App\Models\MeetupEvent;
|
|
|
|
it('marks a meetup as active when it has a past event within the last year', function () {
|
|
$meetup = Meetup::factory()->create(['is_active' => false, 'last_event_at' => null]);
|
|
MeetupEvent::factory()->create([
|
|
'meetup_id' => $meetup->id,
|
|
'start' => now()->subMonths(3),
|
|
'recurrence_type' => null,
|
|
]);
|
|
|
|
$this->artisan('meetups:update-activity')->assertSuccessful();
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeTrue()
|
|
->and($meetup->last_event_at)->not->toBeNull();
|
|
});
|
|
|
|
it('marks a meetup as inactive when the last event is older than a year and no future event exists', function () {
|
|
$meetup = Meetup::factory()->create(['is_active' => true, 'last_event_at' => now()]);
|
|
MeetupEvent::factory()->create([
|
|
'meetup_id' => $meetup->id,
|
|
'start' => now()->subYears(2),
|
|
'recurrence_type' => null,
|
|
]);
|
|
|
|
$this->artisan('meetups:update-activity')->assertSuccessful();
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeFalse()
|
|
->and($meetup->last_event_at)->not->toBeNull();
|
|
});
|
|
|
|
it('keeps a meetup active when it only has a future event', function () {
|
|
$meetup = Meetup::factory()->create(['is_active' => false, 'last_event_at' => null]);
|
|
MeetupEvent::factory()->create([
|
|
'meetup_id' => $meetup->id,
|
|
'start' => now()->addDays(14),
|
|
'recurrence_type' => null,
|
|
]);
|
|
|
|
$this->artisan('meetups:update-activity')->assertSuccessful();
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeTrue()
|
|
->and($meetup->last_event_at)->toBeNull();
|
|
});
|
|
|
|
it('marks a meetup as inactive when a recurring event has no end date but is older than a year', function () {
|
|
$meetup = Meetup::factory()->create(['is_active' => true, 'last_event_at' => now()]);
|
|
MeetupEvent::factory()->create([
|
|
'meetup_id' => $meetup->id,
|
|
'start' => now()->subYears(3),
|
|
'recurrence_type' => RecurrenceType::Monthly,
|
|
'recurrence_end_date' => null,
|
|
]);
|
|
|
|
$this->artisan('meetups:update-activity')->assertSuccessful();
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeFalse();
|
|
});
|
|
|
|
it('keeps a meetup active when a recurring event has an end date in the future', function () {
|
|
$meetup = Meetup::factory()->create(['is_active' => false, 'last_event_at' => null]);
|
|
MeetupEvent::factory()->create([
|
|
'meetup_id' => $meetup->id,
|
|
'start' => now()->subYears(3),
|
|
'recurrence_type' => RecurrenceType::Monthly,
|
|
'recurrence_end_date' => now()->addMonths(6),
|
|
]);
|
|
|
|
$this->artisan('meetups:update-activity')->assertSuccessful();
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeTrue();
|
|
});
|
|
|
|
it('marks a meetup as inactive when no events exist at all', function () {
|
|
$meetup = Meetup::factory()->create(['is_active' => true, 'last_event_at' => now()]);
|
|
|
|
$this->artisan('meetups:update-activity')->assertSuccessful();
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeFalse()
|
|
->and($meetup->last_event_at)->toBeNull();
|
|
});
|
|
|
|
it('flips a meetup from inactive to active immediately when a future event is created', function () {
|
|
$meetup = Meetup::factory()->create(['is_active' => false, 'last_event_at' => null]);
|
|
|
|
MeetupEvent::factory()->create([
|
|
'meetup_id' => $meetup->id,
|
|
'start' => now()->addDays(7),
|
|
'recurrence_type' => null,
|
|
]);
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeTrue();
|
|
});
|
|
|
|
it('flips a meetup back to inactive when its only future event is deleted', function () {
|
|
$meetup = Meetup::factory()->create(['is_active' => false, 'last_event_at' => null]);
|
|
$event = MeetupEvent::factory()->create([
|
|
'meetup_id' => $meetup->id,
|
|
'start' => now()->addDays(7),
|
|
'recurrence_type' => null,
|
|
]);
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeTrue();
|
|
|
|
$event->delete();
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeFalse();
|
|
});
|
|
|
|
it('marks a meetup as inactive when a recurring event has ended more than a year ago', function () {
|
|
$meetup = Meetup::factory()->create(['is_active' => true, 'last_event_at' => now()]);
|
|
MeetupEvent::factory()->create([
|
|
'meetup_id' => $meetup->id,
|
|
'start' => now()->subYears(3),
|
|
'recurrence_type' => RecurrenceType::Monthly,
|
|
'recurrence_end_date' => now()->subYears(2),
|
|
]);
|
|
|
|
$this->artisan('meetups:update-activity')->assertSuccessful();
|
|
|
|
$meetup->refresh();
|
|
expect($meetup->is_active)->toBeFalse();
|
|
});
|