Notification preferences: - Create notification_preferences table (post_published, post_failed, account_disconnected booleans per user) - NotificationPreferenceController with firstOrCreate on first visit - SendNotification job respects email preferences before sending - Settings page with toggle switches, i18n in 3 languages - 8 new tests for preferences (controller + wantsEmailFor + job integration) Post published notification: - PostPublished mail + maizzle template - Notify owner on successful publish via SendNotification job - PostPublished type added to notification enum Header & Layout: - Rename AppSidebarHeader to AppHeader with left/center/right slots - showSidebarTrigger prop to hide sidebar toggle - Calendar: controls in header (left: nav, center: date, right: tabs + new post) - Fixed header with scrollable content (flex h-screen pattern) - fullWidth pages use overflow-y-auto (fixes month view scroll) UI improvements: - Action buttons moved to header-right: posts, hashtags, labels - Settings breadcrumbs: "Settings > Profile" pattern - Calendar: remove duplicate New Post button from day view - Remove size="sm" from Schedule/Publish buttons - Remove bg-background from header (inherits from SidebarInset) - Add Cancel button to labels and hashtags create/edit dialogs - Add common.cancel i18n key - Clean up orphaned Calendar breadcrumbs - Fix SocialAccountsGrid buttons to use shadcn Button ghost All 753 tests passing.
127 lines
4.3 KiB
PHP
127 lines
4.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Enums\Notification\Channel;
|
|
use App\Enums\Notification\Type;
|
|
use App\Enums\User\Setup;
|
|
use App\Jobs\SendNotification;
|
|
use App\Mail\PostPublished;
|
|
use App\Models\Notification;
|
|
use App\Models\NotificationPreference;
|
|
use App\Models\Post;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
beforeEach(function () {
|
|
$this->user = User::factory()->create(['setup' => Setup::Completed]);
|
|
$this->workspace = Workspace::factory()->create(['user_id' => $this->user->id]);
|
|
$this->workspace->members()->attach($this->user->id, ['role' => 'owner']);
|
|
$this->user->update(['current_workspace_id' => $this->workspace->id]);
|
|
});
|
|
|
|
test('notification preferences page requires authentication', function () {
|
|
$response = $this->get(route('app.notifications.preferences'));
|
|
|
|
$response->assertRedirect(route('login'));
|
|
});
|
|
|
|
test('notification preferences page renders', function () {
|
|
$response = $this->actingAs($this->user)->get(route('app.notifications.preferences'));
|
|
|
|
$response->assertOk();
|
|
$response->assertInertia(fn ($page) => $page
|
|
->component('settings/Notifications')
|
|
->has('preferences')
|
|
);
|
|
});
|
|
|
|
test('notification preferences are created with defaults on first visit', function () {
|
|
expect(NotificationPreference::where('user_id', $this->user->id)->count())->toBe(0);
|
|
|
|
$this->actingAs($this->user)->get(route('app.notifications.preferences'));
|
|
|
|
$preference = NotificationPreference::where('user_id', $this->user->id)->first();
|
|
expect($preference)->not->toBeNull();
|
|
expect($preference->post_published)->toBeTrue();
|
|
expect($preference->post_failed)->toBeTrue();
|
|
expect($preference->account_disconnected)->toBeTrue();
|
|
});
|
|
|
|
test('user can update notification preferences', function () {
|
|
$response = $this->actingAs($this->user)->put(route('app.notifications.preferences.update'), [
|
|
'post_published' => false,
|
|
'post_failed' => true,
|
|
'account_disconnected' => false,
|
|
]);
|
|
|
|
$response->assertRedirect();
|
|
|
|
$preference = NotificationPreference::where('user_id', $this->user->id)->first();
|
|
expect($preference->post_published)->toBeFalse();
|
|
expect($preference->post_failed)->toBeTrue();
|
|
expect($preference->account_disconnected)->toBeFalse();
|
|
});
|
|
|
|
test('update validates boolean fields', function () {
|
|
$response = $this->actingAs($this->user)->put(route('app.notifications.preferences.update'), [
|
|
'post_published' => 'invalid',
|
|
'post_failed' => true,
|
|
'account_disconnected' => true,
|
|
]);
|
|
|
|
$response->assertSessionHasErrors('post_published');
|
|
});
|
|
|
|
test('wantsEmailFor respects preferences', function () {
|
|
NotificationPreference::create([
|
|
'user_id' => $this->user->id,
|
|
'post_published' => false,
|
|
'post_failed' => true,
|
|
'account_disconnected' => false,
|
|
]);
|
|
|
|
expect($this->user->wantsEmailFor('post_published'))->toBeFalse();
|
|
expect($this->user->wantsEmailFor('post_failed'))->toBeTrue();
|
|
expect($this->user->wantsEmailFor('post_partially_published'))->toBeTrue(); // maps to post_failed
|
|
expect($this->user->wantsEmailFor('account_disconnected'))->toBeFalse();
|
|
});
|
|
|
|
test('wantsEmailFor defaults to true when no preferences exist', function () {
|
|
expect($this->user->wantsEmailFor('post_published'))->toBeTrue();
|
|
expect($this->user->wantsEmailFor('post_failed'))->toBeTrue();
|
|
expect($this->user->wantsEmailFor('account_disconnected'))->toBeTrue();
|
|
});
|
|
|
|
test('send notification respects email preferences', function () {
|
|
Mail::fake();
|
|
|
|
NotificationPreference::create([
|
|
'user_id' => $this->user->id,
|
|
'post_published' => false,
|
|
'post_failed' => true,
|
|
'account_disconnected' => true,
|
|
]);
|
|
|
|
$post = Post::factory()->create([
|
|
'workspace_id' => $this->workspace->id,
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
// Should NOT send email (post_published disabled)
|
|
(new SendNotification(
|
|
user: $this->user,
|
|
workspaceId: $this->workspace->id,
|
|
type: Type::PostPublished,
|
|
channel: Channel::Both,
|
|
title: 'Test',
|
|
body: 'Test',
|
|
mailable: new PostPublished($post),
|
|
))->handle();
|
|
|
|
Mail::assertNothingQueued();
|
|
|
|
// In-app notification should still be created
|
|
expect(Notification::count())->toBe(1);
|
|
});
|