Spaces:
Sleeping
Sleeping
| /** | |
| * Unit tests for dayService β DAY-SVC-001 through DAY-SVC-030. | |
| * Uses a real in-memory SQLite DB so SQL logic is exercised faithfully. | |
| */ | |
| import { describe, it, expect, vi, beforeAll, beforeEach, afterAll } from 'vitest'; | |
| // ββ DB setup ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| const { testDb, dbMock } = vi.hoisted(() => { | |
| const Database = require('better-sqlite3'); | |
| const db = new Database(':memory:'); | |
| db.exec('PRAGMA journal_mode = WAL'); | |
| db.exec('PRAGMA foreign_keys = ON'); | |
| db.exec('PRAGMA busy_timeout = 5000'); | |
| const mock = { | |
| db, | |
| closeDb: () => {}, | |
| reinitialize: () => {}, | |
| getPlaceWithTags: (placeId: any) => { | |
| const place: any = db.prepare(` | |
| SELECT p.*, c.name as category_name, c.color as category_color, c.icon as category_icon | |
| FROM places p LEFT JOIN categories c ON p.category_id = c.id WHERE p.id = ? | |
| `).get(placeId); | |
| if (!place) return null; | |
| const tags = db.prepare(`SELECT t.* FROM tags t JOIN place_tags pt ON t.id = pt.tag_id WHERE pt.place_id = ?`).all(placeId); | |
| return { ...place, category: place.category_id ? { id: place.category_id, name: place.category_name, color: place.category_color, icon: place.category_icon } : null, tags }; | |
| }, | |
| canAccessTrip: (tripId: any, userId: number) => | |
| db.prepare(`SELECT t.id, t.user_id FROM trips t LEFT JOIN trip_members m ON m.trip_id = t.id AND m.user_id = ? WHERE t.id = ? AND (t.user_id = ? OR m.user_id IS NOT NULL)`).get(userId, tripId, userId), | |
| isOwner: (tripId: any, userId: number) => | |
| !!db.prepare('SELECT id FROM trips WHERE id = ? AND user_id = ?').get(tripId, userId), | |
| }; | |
| return { testDb: db, dbMock: mock }; | |
| }); | |
| vi.mock('../../../src/db/database', () => dbMock); | |
| vi.mock('../../../src/config', () => ({ | |
| JWT_SECRET: 'test-secret', | |
| ENCRYPTION_KEY: 'a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6a7b8c9d0e1f2a3b4c5d6a7b8c9d0e1f2', | |
| updateJwtSecret: () => {}, | |
| })); | |
| import { createTables } from '../../../src/db/schema'; | |
| import { runMigrations } from '../../../src/db/migrations'; | |
| import { resetTestDb } from '../../helpers/test-db'; | |
| import { createUser, createTrip, createDay, createPlace, createDayAssignment, createDayAccommodation } from '../../helpers/factories'; | |
| import { | |
| verifyTripAccess, | |
| getAssignmentsForDay, | |
| listDays, | |
| createDay as svcCreateDay, | |
| getDay, | |
| updateDay, | |
| deleteDay, | |
| listAccommodations, | |
| validateAccommodationRefs, | |
| createAccommodation, | |
| getAccommodation, | |
| updateAccommodation, | |
| deleteAccommodation, | |
| } from '../../../src/services/dayService'; | |
| beforeAll(() => { | |
| createTables(testDb); | |
| runMigrations(testDb); | |
| }); | |
| beforeEach(() => { | |
| resetTestDb(testDb); | |
| }); | |
| afterAll(() => { | |
| testDb.close(); | |
| }); | |
| // ββ verifyTripAccess ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('verifyTripAccess', () => { | |
| it('DAY-SVC-001 β returns trip row for owner', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const result = verifyTripAccess(trip.id, user.id) as any; | |
| expect(result).toBeDefined(); | |
| expect(result.id).toBe(trip.id); | |
| }); | |
| it('DAY-SVC-002 β returns falsy for non-member', () => { | |
| const { user: owner } = createUser(testDb); | |
| const { user: stranger } = createUser(testDb); | |
| const trip = createTrip(testDb, owner.id); | |
| expect(verifyTripAccess(trip.id, stranger.id)).toBeFalsy(); | |
| }); | |
| }); | |
| // ββ getAssignmentsForDay ββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('getAssignmentsForDay', () => { | |
| it('DAY-SVC-003 β returns empty array when day has no assignments', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| expect(getAssignmentsForDay(day.id)).toEqual([]); | |
| }); | |
| it('DAY-SVC-004 β returns assignments with nested place object', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'Eiffel Tower', lat: 48.8, lng: 2.3 }) as any; | |
| createDayAssignment(testDb, day.id, place.id, { order_index: 0 }); | |
| const assignments = getAssignmentsForDay(day.id) as any[]; | |
| expect(assignments).toHaveLength(1); | |
| expect(assignments[0].place).toBeDefined(); | |
| expect(assignments[0].place.name).toBe('Eiffel Tower'); | |
| expect(assignments[0].place.lat).toBe(48.8); | |
| }); | |
| it('DAY-SVC-005 β assignment includes tags array (empty when place has none)', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'No Tags' }) as any; | |
| createDayAssignment(testDb, day.id, place.id); | |
| const assignments = getAssignmentsForDay(day.id) as any[]; | |
| expect(Array.isArray(assignments[0].place.tags)).toBe(true); | |
| }); | |
| it('DAY-SVC-006 β assignments are ordered by order_index ASC', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const p1 = createPlace(testDb, trip.id, { name: 'Second' }) as any; | |
| const p2 = createPlace(testDb, trip.id, { name: 'First' }) as any; | |
| createDayAssignment(testDb, day.id, p1.id, { order_index: 2 }); | |
| createDayAssignment(testDb, day.id, p2.id, { order_index: 1 }); | |
| const assignments = getAssignmentsForDay(day.id) as any[]; | |
| expect(assignments[0].place.name).toBe('First'); | |
| expect(assignments[1].place.name).toBe('Second'); | |
| }); | |
| }); | |
| // ββ listDays ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('listDays', () => { | |
| it('DAY-SVC-007 β returns { days: [] } for trip with no days', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const result = listDays(trip.id) as any; | |
| expect(result.days).toEqual([]); | |
| }); | |
| it('DAY-SVC-008 β returns days with assignments nested', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| createDay(testDb, trip.id); | |
| const result = listDays(trip.id) as any; | |
| expect(result.days).toHaveLength(1); | |
| expect(Array.isArray(result.days[0].assignments)).toBe(true); | |
| }); | |
| }); | |
| // ββ createDay βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('createDay (service)', () => { | |
| it('DAY-SVC-009 β creates a day with auto-incremented day_number', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const d1 = svcCreateDay(trip.id) as any; | |
| const d2 = svcCreateDay(trip.id) as any; | |
| expect(d1.day_number).toBe(1); | |
| expect(d2.day_number).toBe(2); | |
| }); | |
| it('DAY-SVC-010 β returns day with empty assignments array', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = svcCreateDay(trip.id) as any; | |
| expect(Array.isArray(day.assignments)).toBe(true); | |
| expect(day.assignments).toHaveLength(0); | |
| }); | |
| }); | |
| // ββ getDay / updateDay / deleteDay ββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('getDay', () => { | |
| it('DAY-SVC-011 β returns day when id and tripId match', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const found = getDay(day.id, trip.id) as any; | |
| expect(found).toBeDefined(); | |
| expect(found.id).toBe(day.id); | |
| }); | |
| it('DAY-SVC-012 β returns undefined for non-existent day', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| expect(getDay(99999, trip.id)).toBeUndefined(); | |
| }); | |
| }); | |
| describe('updateDay', () => { | |
| it('DAY-SVC-013 β updates notes and returns updated day with assignments', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const updated = updateDay(day.id, day, { notes: 'Updated notes' }) as any; | |
| expect(updated.notes).toBe('Updated notes'); | |
| expect(Array.isArray(updated.assignments)).toBe(true); | |
| }); | |
| it('DAY-SVC-014 β updates title', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const updated = updateDay(day.id, day, { title: 'Day 1 - City Tour' }) as any; | |
| expect(updated.title).toBe('Day 1 - City Tour'); | |
| }); | |
| }); | |
| describe('deleteDay', () => { | |
| it('DAY-SVC-015 β deletes the day', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| deleteDay(day.id); | |
| expect(getDay(day.id, trip.id)).toBeUndefined(); | |
| }); | |
| }); | |
| // ββ validateAccommodationRefs βββββββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('validateAccommodationRefs', () => { | |
| it('DAY-SVC-016 β returns no errors when all refs are valid', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'Hotel' }) as any; | |
| const errors = validateAccommodationRefs(trip.id, place.id, day.id, day.id); | |
| expect(errors).toHaveLength(0); | |
| }); | |
| it('DAY-SVC-017 β returns error when place does not exist in trip', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const errors = validateAccommodationRefs(trip.id, 99999, day.id, day.id); | |
| expect(errors.some((e: any) => e.field === 'place_id')).toBe(true); | |
| }); | |
| it('DAY-SVC-018 β returns error when start_day_id is invalid', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'Hotel' }) as any; | |
| const errors = validateAccommodationRefs(trip.id, place.id, 99999, day.id); | |
| expect(errors.some((e: any) => e.field === 'start_day_id')).toBe(true); | |
| }); | |
| }); | |
| // ββ createAccommodation βββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('createAccommodation', () => { | |
| it('DAY-SVC-019 β creates accommodation and returns it with place info', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'Grand Hotel' }) as any; | |
| const accom = createAccommodation(trip.id, { | |
| place_id: place.id, | |
| start_day_id: day.id, | |
| end_day_id: day.id, | |
| check_in: '15:00', | |
| check_out: '11:00', | |
| }) as any; | |
| expect(accom).toBeDefined(); | |
| expect(accom.place_name).toBe('Grand Hotel'); | |
| }); | |
| it('DAY-SVC-020 β auto-creates a linked reservation', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'City Hotel' }) as any; | |
| const accom = createAccommodation(trip.id, { | |
| place_id: place.id, start_day_id: day.id, end_day_id: day.id, | |
| }) as any; | |
| const reservation = testDb.prepare('SELECT * FROM reservations WHERE accommodation_id = ?').get(accom.id) as any; | |
| expect(reservation).toBeDefined(); | |
| expect(reservation.type).toBe('hotel'); | |
| expect(reservation.status).toBe('confirmed'); | |
| }); | |
| }); | |
| // ββ getAccommodation ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('getAccommodation', () => { | |
| it('DAY-SVC-021 β returns accommodation for valid id and trip', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'Hotel' }) as any; | |
| const accom = createDayAccommodation(testDb, trip.id, place.id, day.id, day.id) as any; | |
| const found = getAccommodation(accom.id, trip.id) as any; | |
| expect(found).toBeDefined(); | |
| expect(found.id).toBe(accom.id); | |
| }); | |
| it('DAY-SVC-022 β returns undefined for non-existent accommodation', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| expect(getAccommodation(99999, trip.id)).toBeUndefined(); | |
| }); | |
| }); | |
| // ββ updateAccommodation βββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('updateAccommodation', () => { | |
| it('DAY-SVC-023 β updates check-in and check-out times', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'Hotel' }) as any; | |
| const accom = createAccommodation(trip.id, { | |
| place_id: place.id, start_day_id: day.id, end_day_id: day.id, | |
| }) as any; | |
| const existing = getAccommodation(accom.id, trip.id)!; | |
| const updated = updateAccommodation(accom.id, existing as any, { check_in: '16:00', check_out: '12:00' }) as any; | |
| expect(updated).toBeDefined(); | |
| // Verify linked reservation metadata was synced | |
| const reservation = testDb.prepare('SELECT * FROM reservations WHERE accommodation_id = ?').get(accom.id) as any; | |
| expect(reservation).toBeDefined(); | |
| const meta = JSON.parse(reservation.metadata || '{}'); | |
| expect(meta.check_in_time).toBe('16:00'); | |
| expect(meta.check_out_time).toBe('12:00'); | |
| }); | |
| it('DAY-SVC-024 β preserves existing fields when not updated', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'Hotel' }) as any; | |
| const accom = createAccommodation(trip.id, { | |
| place_id: place.id, start_day_id: day.id, end_day_id: day.id, | |
| confirmation: 'ABC123', | |
| }) as any; | |
| const existing = getAccommodation(accom.id, trip.id)!; | |
| updateAccommodation(accom.id, existing as any, { check_in: '14:00' }); | |
| const row = getAccommodation(accom.id, trip.id) as any; | |
| expect(row.confirmation).toBe('ABC123'); | |
| }); | |
| }); | |
| // ββ deleteAccommodation βββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| describe('deleteAccommodation', () => { | |
| it('DAY-SVC-025 β deletes accommodation and its linked reservation', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'Hotel' }) as any; | |
| const accom = createAccommodation(trip.id, { | |
| place_id: place.id, start_day_id: day.id, end_day_id: day.id, | |
| }) as any; | |
| const reservation = testDb.prepare('SELECT id FROM reservations WHERE accommodation_id = ?').get(accom.id) as any; | |
| const result = deleteAccommodation(accom.id); | |
| expect(result.linkedReservationId).toBe(reservation.id); | |
| // Accommodation is gone | |
| expect(getAccommodation(accom.id, trip.id)).toBeUndefined(); | |
| // Reservation is gone | |
| const deletedRes = testDb.prepare('SELECT id FROM reservations WHERE id = ?').get(reservation.id); | |
| expect(deletedRes).toBeUndefined(); | |
| }); | |
| it('DAY-SVC-026 β returns null linkedReservationId when no reservation was linked', () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const day = createDay(testDb, trip.id) as any; | |
| const place = createPlace(testDb, trip.id, { name: 'Hotel' }) as any; | |
| const accom = createDayAccommodation(testDb, trip.id, place.id, day.id, day.id) as any; | |
| // Remove the auto-created reservation so there's no linked one | |
| testDb.prepare('DELETE FROM reservations WHERE accommodation_id = ?').run(accom.id); | |
| const result = deleteAccommodation(accom.id); | |
| expect(result.linkedReservationId).toBeNull(); | |
| }); | |
| }); | |