mirror of
https://github.com/immich-app/immich.git
synced 2025-12-27 01:11:42 +03:00
79 lines
3.0 KiB
TypeScript
79 lines
3.0 KiB
TypeScript
import { mapAsset } from 'src/dtos/asset-response.dto';
|
|
import { SearchSuggestionType } from 'src/dtos/search.dto';
|
|
import { IAssetRepository } from 'src/interfaces/asset.interface';
|
|
import { IPersonRepository } from 'src/interfaces/person.interface';
|
|
import { ISearchRepository } from 'src/interfaces/search.interface';
|
|
import { SearchService } from 'src/services/search.service';
|
|
import { assetStub } from 'test/fixtures/asset.stub';
|
|
import { authStub } from 'test/fixtures/auth.stub';
|
|
import { personStub } from 'test/fixtures/person.stub';
|
|
import { newTestService } from 'test/utils';
|
|
import { Mocked, beforeEach, vitest } from 'vitest';
|
|
|
|
vitest.useFakeTimers();
|
|
|
|
describe(SearchService.name, () => {
|
|
let sut: SearchService;
|
|
|
|
let assetMock: Mocked<IAssetRepository>;
|
|
let personMock: Mocked<IPersonRepository>;
|
|
let searchMock: Mocked<ISearchRepository>;
|
|
|
|
beforeEach(() => {
|
|
({ sut, assetMock, personMock, searchMock } = newTestService(SearchService));
|
|
});
|
|
|
|
it('should work', () => {
|
|
expect(sut).toBeDefined();
|
|
});
|
|
|
|
describe('searchPerson', () => {
|
|
it('should pass options to search', async () => {
|
|
const { name } = personStub.withName;
|
|
|
|
await sut.searchPerson(authStub.user1, { name, withHidden: false });
|
|
|
|
expect(personMock.getByName).toHaveBeenCalledWith(authStub.user1.user.id, name, { withHidden: false });
|
|
|
|
await sut.searchPerson(authStub.user1, { name, withHidden: true });
|
|
|
|
expect(personMock.getByName).toHaveBeenCalledWith(authStub.user1.user.id, name, { withHidden: true });
|
|
});
|
|
});
|
|
|
|
describe('getExploreData', () => {
|
|
it('should get assets by city and tag', async () => {
|
|
assetMock.getAssetIdByCity.mockResolvedValue({
|
|
fieldName: 'exifInfo.city',
|
|
items: [{ value: 'Paris', data: assetStub.image.id }],
|
|
});
|
|
assetMock.getByIdsWithAllRelations.mockResolvedValue([assetStub.image, assetStub.imageFrom2015]);
|
|
const expectedResponse = [
|
|
{ fieldName: 'exifInfo.city', items: [{ value: 'Paris', data: mapAsset(assetStub.image) }] },
|
|
];
|
|
|
|
const result = await sut.getExploreData(authStub.user1);
|
|
|
|
expect(result).toEqual(expectedResponse);
|
|
});
|
|
});
|
|
|
|
describe('getSearchSuggestions', () => {
|
|
it('should return search suggestions (including null)', async () => {
|
|
searchMock.getCountries.mockResolvedValue(['USA', null]);
|
|
await expect(
|
|
sut.getSearchSuggestions(authStub.user1, { includeNull: true, type: SearchSuggestionType.COUNTRY }),
|
|
).resolves.toEqual(['USA', null]);
|
|
expect(searchMock.getCountries).toHaveBeenCalledWith([authStub.user1.user.id]);
|
|
});
|
|
|
|
it('should return search suggestions (without null)', async () => {
|
|
searchMock.getCountries.mockResolvedValue(['USA', null]);
|
|
await expect(
|
|
sut.getSearchSuggestions(authStub.user1, { includeNull: false, type: SearchSuggestionType.COUNTRY }),
|
|
).resolves.toEqual(['USA']);
|
|
expect(searchMock.getCountries).toHaveBeenCalledWith([authStub.user1.user.id]);
|
|
});
|
|
});
|
|
});
|