2023-05-15 19:30:53 +02:00
|
|
|
import { BadRequestException } from '@nestjs/common';
|
|
|
|
import { authStub, newPartnerRepositoryMock, partnerStub } from '../../test';
|
|
|
|
import { PartnerDirection } from './partner.core';
|
|
|
|
import { IPartnerRepository } from './partner.repository';
|
|
|
|
import { PartnerService } from './partner.service';
|
|
|
|
|
|
|
|
const responseDto = {
|
|
|
|
admin: {
|
|
|
|
createdAt: '2021-01-01',
|
|
|
|
deletedAt: undefined,
|
|
|
|
email: 'admin@test.com',
|
|
|
|
firstName: 'admin_first_name',
|
|
|
|
id: 'admin_id',
|
|
|
|
isAdmin: true,
|
|
|
|
lastName: 'admin_last_name',
|
|
|
|
oauthId: '',
|
|
|
|
profileImagePath: '',
|
|
|
|
shouldChangePassword: false,
|
|
|
|
updatedAt: '2021-01-01',
|
2023-05-22 05:18:10 +02:00
|
|
|
storageLabel: 'admin',
|
2023-05-15 19:30:53 +02:00
|
|
|
},
|
|
|
|
user1: {
|
|
|
|
createdAt: '2021-01-01',
|
|
|
|
deletedAt: undefined,
|
|
|
|
email: 'immich@test.com',
|
|
|
|
firstName: 'immich_first_name',
|
2023-05-22 05:18:10 +02:00
|
|
|
id: 'user-id',
|
2023-05-15 19:30:53 +02:00
|
|
|
isAdmin: false,
|
|
|
|
lastName: 'immich_last_name',
|
|
|
|
oauthId: '',
|
|
|
|
profileImagePath: '',
|
|
|
|
shouldChangePassword: false,
|
|
|
|
updatedAt: '2021-01-01',
|
2023-05-22 05:18:10 +02:00
|
|
|
storageLabel: null,
|
2023-05-15 19:30:53 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
describe(PartnerService.name, () => {
|
|
|
|
let sut: PartnerService;
|
|
|
|
let partnerMock: jest.Mocked<IPartnerRepository>;
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
partnerMock = newPartnerRepositoryMock();
|
|
|
|
sut = new PartnerService(partnerMock);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work', () => {
|
|
|
|
expect(sut).toBeDefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getAll', () => {
|
|
|
|
it("should return a list of partners with whom I've shared my library", async () => {
|
|
|
|
partnerMock.getAll.mockResolvedValue([partnerStub.adminToUser1, partnerStub.user1ToAdmin1]);
|
|
|
|
await expect(sut.getAll(authStub.user1, PartnerDirection.SharedBy)).resolves.toEqual([responseDto.admin]);
|
|
|
|
expect(partnerMock.getAll).toHaveBeenCalledWith(authStub.user1.id);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return a list of partners who have shared their libraries with me', async () => {
|
|
|
|
partnerMock.getAll.mockResolvedValue([partnerStub.adminToUser1, partnerStub.user1ToAdmin1]);
|
|
|
|
await expect(sut.getAll(authStub.user1, PartnerDirection.SharedWith)).resolves.toEqual([responseDto.admin]);
|
|
|
|
expect(partnerMock.getAll).toHaveBeenCalledWith(authStub.user1.id);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('create', () => {
|
|
|
|
it('should create a new partner', async () => {
|
|
|
|
partnerMock.get.mockResolvedValue(null);
|
|
|
|
partnerMock.create.mockResolvedValue(partnerStub.adminToUser1);
|
|
|
|
|
|
|
|
await expect(sut.create(authStub.admin, authStub.user1.id)).resolves.toEqual(responseDto.user1);
|
|
|
|
|
|
|
|
expect(partnerMock.create).toHaveBeenCalledWith({
|
|
|
|
sharedById: authStub.admin.id,
|
|
|
|
sharedWithId: authStub.user1.id,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should throw an error when the partner already exists', async () => {
|
|
|
|
partnerMock.get.mockResolvedValue(partnerStub.adminToUser1);
|
|
|
|
|
|
|
|
await expect(sut.create(authStub.admin, authStub.user1.id)).rejects.toBeInstanceOf(BadRequestException);
|
|
|
|
|
|
|
|
expect(partnerMock.create).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('remove', () => {
|
|
|
|
it('should remove a partner', async () => {
|
|
|
|
partnerMock.get.mockResolvedValue(partnerStub.adminToUser1);
|
|
|
|
|
|
|
|
await sut.remove(authStub.admin, authStub.user1.id);
|
|
|
|
|
|
|
|
expect(partnerMock.remove).toHaveBeenCalledWith(partnerStub.adminToUser1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should throw an error when the partner does not exist', async () => {
|
|
|
|
partnerMock.get.mockResolvedValue(null);
|
|
|
|
|
|
|
|
await expect(sut.remove(authStub.admin, authStub.user1.id)).rejects.toBeInstanceOf(BadRequestException);
|
|
|
|
|
|
|
|
expect(partnerMock.remove).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|