mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 12:26:47 +01:00
4cb0f37918
* move watcher init to micro
* document watcher recovery
* chore: fix lint
* add try lock
* use global library watch lock
* fix: ensure lock stays on
* fix: mocks
* unit test for library watch lock
* move statement to correct test
* fix: correct return type of try lock
* fix: tests
* add library teardown
* add chokidar error handler
* make event strings an enum
* wait for event refactor
* refactor event type mocks
* expect correct error
* don't release lock in teardown
* chore: lint
* use enum
* fix mock
* fix lint
* fix watcher await
* remove await
* simplify typing
* remove async
* Revert "remove async"
This reverts commit 84ab5abac4
.
* can now change watch settings at runtime
* fix lint
* only watch libraries if enabled
---------
Co-authored-by: mertalev <101130780+mertalev@users.noreply.github.com>
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
20 lines
758 B
TypeScript
20 lines
758 B
TypeScript
import { IDatabaseRepository, Version } from '@app/domain';
|
|
|
|
export const newDatabaseRepositoryMock = (): jest.Mocked<IDatabaseRepository> => {
|
|
return {
|
|
getExtensionVersion: jest.fn(),
|
|
getAvailableExtensionVersion: jest.fn(),
|
|
getPreferredVectorExtension: jest.fn(),
|
|
getPostgresVersion: jest.fn().mockResolvedValue(new Version(14, 0, 0)),
|
|
createExtension: jest.fn().mockImplementation(() => Promise.resolve()),
|
|
updateExtension: jest.fn(),
|
|
updateVectorExtension: jest.fn(),
|
|
reindex: jest.fn(),
|
|
shouldReindex: jest.fn(),
|
|
runMigrations: jest.fn(),
|
|
withLock: jest.fn().mockImplementation((_, function_: <R>() => Promise<R>) => function_()),
|
|
tryLock: jest.fn(),
|
|
isBusy: jest.fn(),
|
|
wait: jest.fn(),
|
|
};
|
|
};
|