Spaces:
Sleeping
Sleeping
| /** | |
| * Unit tests for MCP packing tools: create_packing_item, update_packing_item, | |
| * toggle_packing_item, delete_packing_item. | |
| */ | |
| import { describe, it, expect, vi, beforeAll, beforeEach, afterAll } from 'vitest'; | |
| 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: () => null, | |
| 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-jwt-secret-for-trek-testing-only', | |
| ENCRYPTION_KEY: 'a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6a7b8c9d0e1f2a3b4c5d6a7b8c9d0e1f2', | |
| updateJwtSecret: () => {}, | |
| })); | |
| const { broadcastMock } = vi.hoisted(() => ({ broadcastMock: vi.fn() })); | |
| vi.mock('../../../src/websocket', () => ({ broadcast: broadcastMock })); | |
| import { createTables } from '../../../src/db/schema'; | |
| import { runMigrations } from '../../../src/db/migrations'; | |
| import { resetTestDb } from '../../helpers/test-db'; | |
| import { createUser, createTrip, createPackingItem } from '../../helpers/factories'; | |
| import { createMcpHarness, parseToolResult, type McpHarness } from '../../helpers/mcp-harness'; | |
| beforeAll(() => { | |
| createTables(testDb); | |
| runMigrations(testDb); | |
| }); | |
| beforeEach(() => { | |
| resetTestDb(testDb); | |
| broadcastMock.mockClear(); | |
| delete process.env.DEMO_MODE; | |
| }); | |
| afterAll(() => { | |
| testDb.close(); | |
| }); | |
| async function withHarness(userId: number, fn: (h: McpHarness) => Promise<void>) { | |
| const h = await createMcpHarness({ userId, withResources: false }); | |
| try { await fn(h); } finally { await h.cleanup(); } | |
| } | |
| // --------------------------------------------------------------------------- | |
| // create_packing_item | |
| // --------------------------------------------------------------------------- | |
| describe('Tool: create_packing_item', () => { | |
| it('creates a packing item', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ | |
| name: 'create_packing_item', | |
| arguments: { tripId: trip.id, name: 'Passport', category: 'Documents' }, | |
| }); | |
| const data = parseToolResult(result) as any; | |
| expect(data.item.name).toBe('Passport'); | |
| expect(data.item.category).toBe('Documents'); | |
| expect(data.item.checked).toBe(0); | |
| }); | |
| }); | |
| it('defaults category to "General"', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ | |
| name: 'create_packing_item', | |
| arguments: { tripId: trip.id, name: 'Sunscreen' }, | |
| }); | |
| const data = parseToolResult(result) as any; | |
| expect(data.item.category).toBe('General'); | |
| }); | |
| }); | |
| it('broadcasts packing:created event', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| await withHarness(user.id, async (h) => { | |
| await h.client.callTool({ name: 'create_packing_item', arguments: { tripId: trip.id, name: 'Hat' } }); | |
| expect(broadcastMock).toHaveBeenCalledWith(trip.id, 'packing:created', expect.any(Object)); | |
| }); | |
| }); | |
| it('returns access denied for non-member', async () => { | |
| const { user } = createUser(testDb); | |
| const { user: other } = createUser(testDb); | |
| const trip = createTrip(testDb, other.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ name: 'create_packing_item', arguments: { tripId: trip.id, name: 'X' } }); | |
| expect(result.isError).toBe(true); | |
| }); | |
| }); | |
| it('blocks demo user', async () => { | |
| process.env.DEMO_MODE = 'true'; | |
| const { user } = createUser(testDb, { email: 'demo@nomad.app' }); | |
| const trip = createTrip(testDb, user.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ name: 'create_packing_item', arguments: { tripId: trip.id, name: 'X' } }); | |
| expect(result.isError).toBe(true); | |
| }); | |
| }); | |
| }); | |
| // --------------------------------------------------------------------------- | |
| // update_packing_item | |
| // --------------------------------------------------------------------------- | |
| describe('Tool: update_packing_item', () => { | |
| it('updates packing item name and category', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const item = createPackingItem(testDb, trip.id, { name: 'Old', category: 'Clothes' }); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ | |
| name: 'update_packing_item', | |
| arguments: { tripId: trip.id, itemId: item.id, name: 'New Name', category: 'Electronics' }, | |
| }); | |
| const data = parseToolResult(result) as any; | |
| expect(data.item.name).toBe('New Name'); | |
| expect(data.item.category).toBe('Electronics'); | |
| }); | |
| }); | |
| it('broadcasts packing:updated event', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const item = createPackingItem(testDb, trip.id); | |
| await withHarness(user.id, async (h) => { | |
| await h.client.callTool({ name: 'update_packing_item', arguments: { tripId: trip.id, itemId: item.id, name: 'Updated' } }); | |
| expect(broadcastMock).toHaveBeenCalledWith(trip.id, 'packing:updated', expect.any(Object)); | |
| }); | |
| }); | |
| it('returns error for item not found', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ name: 'update_packing_item', arguments: { tripId: trip.id, itemId: 99999, name: 'X' } }); | |
| expect(result.isError).toBe(true); | |
| }); | |
| }); | |
| it('returns access denied for non-member', async () => { | |
| const { user } = createUser(testDb); | |
| const { user: other } = createUser(testDb); | |
| const trip = createTrip(testDb, other.id); | |
| const item = createPackingItem(testDb, trip.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ name: 'update_packing_item', arguments: { tripId: trip.id, itemId: item.id, name: 'X' } }); | |
| expect(result.isError).toBe(true); | |
| }); | |
| }); | |
| }); | |
| // --------------------------------------------------------------------------- | |
| // toggle_packing_item | |
| // --------------------------------------------------------------------------- | |
| describe('Tool: toggle_packing_item', () => { | |
| it('checks a packing item', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const item = createPackingItem(testDb, trip.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ | |
| name: 'toggle_packing_item', | |
| arguments: { tripId: trip.id, itemId: item.id, checked: true }, | |
| }); | |
| const data = parseToolResult(result) as any; | |
| expect(data.item.checked).toBe(1); | |
| }); | |
| }); | |
| it('unchecks a packing item', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const item = createPackingItem(testDb, trip.id); | |
| testDb.prepare('UPDATE packing_items SET checked = 1 WHERE id = ?').run(item.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ | |
| name: 'toggle_packing_item', | |
| arguments: { tripId: trip.id, itemId: item.id, checked: false }, | |
| }); | |
| const data = parseToolResult(result) as any; | |
| expect(data.item.checked).toBe(0); | |
| }); | |
| }); | |
| it('broadcasts packing:updated event', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const item = createPackingItem(testDb, trip.id); | |
| await withHarness(user.id, async (h) => { | |
| await h.client.callTool({ name: 'toggle_packing_item', arguments: { tripId: trip.id, itemId: item.id, checked: true } }); | |
| expect(broadcastMock).toHaveBeenCalledWith(trip.id, 'packing:updated', expect.any(Object)); | |
| }); | |
| }); | |
| it('returns error for item not found', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ name: 'toggle_packing_item', arguments: { tripId: trip.id, itemId: 99999, checked: true } }); | |
| expect(result.isError).toBe(true); | |
| }); | |
| }); | |
| it('returns access denied for non-member', async () => { | |
| const { user } = createUser(testDb); | |
| const { user: other } = createUser(testDb); | |
| const trip = createTrip(testDb, other.id); | |
| const item = createPackingItem(testDb, trip.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ name: 'toggle_packing_item', arguments: { tripId: trip.id, itemId: item.id, checked: true } }); | |
| expect(result.isError).toBe(true); | |
| }); | |
| }); | |
| }); | |
| // --------------------------------------------------------------------------- | |
| // delete_packing_item | |
| // --------------------------------------------------------------------------- | |
| describe('Tool: delete_packing_item', () => { | |
| it('deletes an existing packing item', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const item = createPackingItem(testDb, trip.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ name: 'delete_packing_item', arguments: { tripId: trip.id, itemId: item.id } }); | |
| const data = parseToolResult(result) as any; | |
| expect(data.success).toBe(true); | |
| expect(testDb.prepare('SELECT id FROM packing_items WHERE id = ?').get(item.id)).toBeUndefined(); | |
| }); | |
| }); | |
| it('broadcasts packing:deleted event', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| const item = createPackingItem(testDb, trip.id); | |
| await withHarness(user.id, async (h) => { | |
| await h.client.callTool({ name: 'delete_packing_item', arguments: { tripId: trip.id, itemId: item.id } }); | |
| expect(broadcastMock).toHaveBeenCalledWith(trip.id, 'packing:deleted', expect.any(Object)); | |
| }); | |
| }); | |
| it('returns error for item not found', async () => { | |
| const { user } = createUser(testDb); | |
| const trip = createTrip(testDb, user.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ name: 'delete_packing_item', arguments: { tripId: trip.id, itemId: 99999 } }); | |
| expect(result.isError).toBe(true); | |
| }); | |
| }); | |
| it('returns access denied for non-member', async () => { | |
| const { user } = createUser(testDb); | |
| const { user: other } = createUser(testDb); | |
| const trip = createTrip(testDb, other.id); | |
| const item = createPackingItem(testDb, trip.id); | |
| await withHarness(user.id, async (h) => { | |
| const result = await h.client.callTool({ name: 'delete_packing_item', arguments: { tripId: trip.id, itemId: item.id } }); | |
| expect(result.isError).toBe(true); | |
| }); | |
| }); | |
| }); | |