Files
familysync/apps/api/tests/broker/reminderScheduler.test.ts
T
Lucas Berger ef558b65be test(05-01): add Wave-0 RED scaffolds + VAPID fixture + setup truncation
- tests/fixtures/vapid.ts: static TEST_VAPID keypair for offline unit tests
- tests/lib/pushDispatcher.test.ts: RED — 410/404 prune + 201/5xx no-delete
- tests/lib/pushCoalescer.test.ts: RED — burst coalesce fires once with count=N; excludeUserId
- tests/broker/reminderScheduler.test.ts: RED — shared+timed filter; dedup by (uid,minuteBucket)
- tests/lib/eventChangeDispatcher.test.ts: RED — create/meaningful-update fires; description-only silent; actor excluded
- tests/routes/push.test.ts: RED — POST 201/401; DELETE removes rows; GET vapid-public-key
- test/setup.ts: import pushSubscriptions + add db.delete(pushSubscriptions) in afterEach
- all 5 RED files fail on missing-module (correct; implementations in Plans 05-02..05-06)
2026-06-09 20:50:35 -04:00

137 lines
4.5 KiB
TypeScript

/**
* RED scaffold — reminderScheduler (Plan 05-06 turns this GREEN).
*
* Asserts that the reminder scan:
* - Selects ONLY shared (isShared=true) AND timed (allDay=false) events
* in the [now+14min, now+16min] window (D-05/D-06/D-07)
* - Does NOT dispatch reminders for all-day events (D-07)
* - Does NOT dispatch reminders for non-shared (personal) events (D-05)
* - Does NOT dispatch the same (eventUid, minuteBucket) twice within the same minute
*
* These tests fail now because reminderScheduler.ts does not yet exist.
* Run: pnpm --filter @familysync/api exec vitest run tests/broker/reminderScheduler.test.ts
*/
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest'
// Mock the DB so we can control what events are returned
vi.mock('../../src/db/client.js', () => ({
db: {
select: vi.fn(),
},
}))
// Mock pushDispatcher so no real push occurs
vi.mock('../../src/lib/pushDispatcher.js', () => ({
dispatchPush: vi.fn().mockResolvedValue(undefined),
}))
describe('reminderScheduler — shared+timed event filtering (D-05/D-06/D-07)', () => {
beforeEach(() => {
vi.useFakeTimers()
vi.resetModules()
})
afterEach(() => {
vi.useRealTimers()
vi.clearAllMocks()
})
it('does not dispatch reminders for all-day events (D-07)', async () => {
const now = new Date('2026-06-15T10:00:00Z')
vi.setSystemTime(now)
const { db } = await import('../../src/db/client.js')
const { dispatchPush } = await import('../../src/lib/pushDispatcher.js')
const { runReminderCheck } = await import('../../src/broker/reminderScheduler.js')
// Simulate: query returns an all-day event (allDay=true)
// The scheduler should have filtered this out in SQL — return empty results
vi.mocked(db.select).mockReturnValue({
from: vi.fn().mockReturnValue({
innerJoin: vi.fn().mockReturnValue({
innerJoin: vi.fn().mockReturnValue({
where: vi.fn().mockResolvedValue([]),
}),
}),
}),
} as never)
await runReminderCheck()
expect(vi.mocked(dispatchPush)).not.toHaveBeenCalled()
})
it('does not dispatch reminders for non-shared (personal) calendar events (D-05)', async () => {
const now = new Date('2026-06-15T10:00:00Z')
vi.setSystemTime(now)
const { db } = await import('../../src/db/client.js')
const { dispatchPush } = await import('../../src/lib/pushDispatcher.js')
const { runReminderCheck } = await import('../../src/broker/reminderScheduler.js')
// SQL WHERE clause must include isShared=true; no personal events returned
vi.mocked(db.select).mockReturnValue({
from: vi.fn().mockReturnValue({
innerJoin: vi.fn().mockReturnValue({
innerJoin: vi.fn().mockReturnValue({
where: vi.fn().mockResolvedValue([]),
}),
}),
}),
} as never)
await runReminderCheck()
expect(vi.mocked(dispatchPush)).not.toHaveBeenCalled()
})
it('does not dispatch the same (eventUid, minuteBucket) pair twice within the same run', async () => {
const now = new Date('2026-06-15T10:00:00Z')
vi.setSystemTime(now)
const { db } = await import('../../src/db/client.js')
const { dispatchPush } = await import('../../src/lib/pushDispatcher.js')
const { runReminderCheck } = await import('../../src/broker/reminderScheduler.js')
const sharedTimedEvent = {
uid: 'event-uid-123',
title: 'Team standup',
dtstartUtc: new Date('2026-06-15T10:15:00Z'), // 15 min from now
allDay: false,
isShared: true,
subscriptions: [],
}
vi.mocked(db.select)
.mockReturnValueOnce({
from: vi.fn().mockReturnValue({
innerJoin: vi.fn().mockReturnValue({
innerJoin: vi.fn().mockReturnValue({
where: vi.fn().mockResolvedValue([sharedTimedEvent]),
}),
}),
}),
} as never)
.mockReturnValue({
from: vi.fn().mockReturnValue({
innerJoin: vi.fn().mockReturnValue({
innerJoin: vi.fn().mockReturnValue({
where: vi.fn().mockResolvedValue([sharedTimedEvent]),
}),
}),
}),
} as never)
// First run — should dispatch
await runReminderCheck()
const firstCallCount = vi.mocked(dispatchPush).mock.calls.length
// Second run in the same minute — same (uid, minuteBucket) — should NOT dispatch again
await runReminderCheck()
const secondCallCount = vi.mocked(dispatchPush).mock.calls.length
expect(secondCallCount).toBe(firstCallCount)
})
})