import { Kysely } from 'kysely'; import { SyncEntityType, SyncRequestType } from 'src/enum'; import { PersonRepository } from 'src/repositories/person.repository'; import { DB } from 'src/schema'; import { SyncTestContext } from 'test/medium.factory'; import { factory } from 'test/small.factory'; import { getKyselyDB } from 'test/utils'; let defaultDatabase: Kysely; const setup = async (db?: Kysely) => { const ctx = new SyncTestContext(db || defaultDatabase); const { auth, user, session } = await ctx.newSyncAuthUser(); return { auth, user, session, ctx }; }; beforeAll(async () => { defaultDatabase = await getKyselyDB(); }); describe(SyncEntityType.PersonV1, () => { it('should detect and sync the first person', async () => { const { auth, ctx } = await setup(); const { person } = await ctx.newPerson({ ownerId: auth.user.id }); const response = await ctx.syncStream(auth, [SyncRequestType.PeopleV1]); expect(response).toHaveLength(1); expect(response).toEqual([ { ack: expect.any(String), data: expect.objectContaining({ id: person.id, name: person.name, isHidden: person.isHidden, birthDate: person.birthDate, faceAssetId: person.faceAssetId, isFavorite: person.isFavorite, ownerId: auth.user.id, color: person.color, }), type: 'PersonV1', }, ]); await ctx.syncAckAll(auth, response); await expect(ctx.syncStream(auth, [SyncRequestType.PeopleV1])).resolves.toEqual([]); }); it('should detect and sync a deleted person', async () => { const { auth, ctx } = await setup(); const personRepo = ctx.get(PersonRepository); const { person } = await ctx.newPerson({ ownerId: auth.user.id }); await personRepo.delete([person.id]); const response = await ctx.syncStream(auth, [SyncRequestType.PeopleV1]); expect(response).toHaveLength(1); expect(response).toEqual([ { ack: expect.any(String), data: { personId: person.id, }, type: 'PersonDeleteV1', }, ]); await ctx.syncAckAll(auth, response); await expect(ctx.syncStream(auth, [SyncRequestType.PeopleV1])).resolves.toEqual([]); }); it('should not sync a person or person delete for an unrelated user', async () => { const { auth, ctx } = await setup(); const personRepo = ctx.get(PersonRepository); const { user: user2 } = await ctx.newUser(); const { session } = await ctx.newSession({ userId: user2.id }); const { person } = await ctx.newPerson({ ownerId: user2.id }); const auth2 = factory.auth({ session, user: user2 }); expect(await ctx.syncStream(auth2, [SyncRequestType.PeopleV1])).toHaveLength(1); expect(await ctx.syncStream(auth, [SyncRequestType.PeopleV1])).toHaveLength(0); await personRepo.delete([person.id]); expect(await ctx.syncStream(auth2, [SyncRequestType.PeopleV1])).toHaveLength(1); expect(await ctx.syncStream(auth, [SyncRequestType.PeopleV1])).toHaveLength(0); }); });