fix(server): include trashed assets in forced thumbnail generation (#10389)

* fix(server): include trashed assets in forced thumbnail generation

* deleted -> trashed
This commit is contained in:
Michel Heusschen
2024-06-16 17:37:51 +02:00
committed by GitHub
parent 83a851b556
commit 010eb1e0d6
3 changed files with 66 additions and 1 deletions
+25
View File
@@ -107,6 +107,31 @@ describe(MediaService.name, () => {
]);
});
it('should queue trashed assets when force is true', async () => {
assetMock.getAll.mockResolvedValue({
items: [assetStub.trashed],
hasNextPage: false,
});
personMock.getAll.mockResolvedValue({
items: [],
hasNextPage: false,
});
await sut.handleQueueGenerateThumbnails({ force: true });
expect(assetMock.getAll).toHaveBeenCalledWith(
{ skip: 0, take: 1000 },
expect.objectContaining({ withDeleted: true }),
);
expect(assetMock.getWithout).not.toHaveBeenCalled();
expect(jobMock.queueAll).toHaveBeenCalledWith([
{
name: JobName.GENERATE_PREVIEW,
data: { id: assetStub.trashed.id },
},
]);
});
it('should queue all people with missing thumbnail path', async () => {
assetMock.getWithout.mockResolvedValue({
items: [assetStub.image],