mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Kysely } from 'kysely';
 | 
						|
import { SyncEntityType, SyncRequestType } from 'src/enum';
 | 
						|
import { UserRepository } from 'src/repositories/user.repository';
 | 
						|
import { DB } from 'src/schema';
 | 
						|
import { SyncTestContext } from 'test/medium.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.AuthUserV1, () => {
 | 
						|
  it('should detect and sync the first user', async () => {
 | 
						|
    const { auth, user, ctx } = await setup(await getKyselyDB());
 | 
						|
 | 
						|
    const response = await ctx.syncStream(auth, [SyncRequestType.AuthUsersV1]);
 | 
						|
    expect(response).toHaveLength(1);
 | 
						|
    expect(response).toEqual([
 | 
						|
      {
 | 
						|
        ack: expect.any(String),
 | 
						|
        data: {
 | 
						|
          id: user.id,
 | 
						|
          isAdmin: user.isAdmin,
 | 
						|
          deletedAt: user.deletedAt,
 | 
						|
          name: user.name,
 | 
						|
          avatarColor: user.avatarColor,
 | 
						|
          email: user.email,
 | 
						|
          pinCode: user.pinCode,
 | 
						|
          hasProfileImage: false,
 | 
						|
          profileChangedAt: (user.profileChangedAt as Date).toISOString(),
 | 
						|
          oauthId: user.oauthId,
 | 
						|
          quotaSizeInBytes: user.quotaSizeInBytes,
 | 
						|
          quotaUsageInBytes: user.quotaUsageInBytes,
 | 
						|
          storageLabel: user.storageLabel,
 | 
						|
        },
 | 
						|
        type: 'AuthUserV1',
 | 
						|
      },
 | 
						|
    ]);
 | 
						|
 | 
						|
    await ctx.syncAckAll(auth, response);
 | 
						|
    await expect(ctx.syncStream(auth, [SyncRequestType.AuthUsersV1])).resolves.toEqual([]);
 | 
						|
  });
 | 
						|
 | 
						|
  it('should sync a change and then another change to that same user', async () => {
 | 
						|
    const { auth, user, ctx } = await setup(await getKyselyDB());
 | 
						|
 | 
						|
    const userRepo = ctx.get(UserRepository);
 | 
						|
 | 
						|
    const response = await ctx.syncStream(auth, [SyncRequestType.AuthUsersV1]);
 | 
						|
    expect(response).toHaveLength(1);
 | 
						|
    expect(response).toEqual([
 | 
						|
      {
 | 
						|
        ack: expect.any(String),
 | 
						|
        data: expect.objectContaining({
 | 
						|
          id: user.id,
 | 
						|
          isAdmin: false,
 | 
						|
        }),
 | 
						|
        type: 'AuthUserV1',
 | 
						|
      },
 | 
						|
    ]);
 | 
						|
 | 
						|
    await ctx.syncAckAll(auth, response);
 | 
						|
 | 
						|
    await userRepo.update(user.id, { isAdmin: true });
 | 
						|
 | 
						|
    const newResponse = await ctx.syncStream(auth, [SyncRequestType.AuthUsersV1]);
 | 
						|
    expect(newResponse).toHaveLength(1);
 | 
						|
    expect(newResponse).toEqual([
 | 
						|
      {
 | 
						|
        ack: expect.any(String),
 | 
						|
        data: expect.objectContaining({
 | 
						|
          id: user.id,
 | 
						|
          isAdmin: true,
 | 
						|
        }),
 | 
						|
        type: 'AuthUserV1',
 | 
						|
      },
 | 
						|
    ]);
 | 
						|
  });
 | 
						|
});
 |