mirror of
https://github.com/immich-app/immich.git
synced 2025-07-31 15:08:44 -04:00
87 lines
3.0 KiB
TypeScript
87 lines
3.0 KiB
TypeScript
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<DB>;
|
|
|
|
const setup = async (db?: Kysely<DB>) => {
|
|
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);
|
|
});
|
|
});
|