mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
22 lines
844 B
TypeScript
22 lines
844 B
TypeScript
import { IDatabaseRepository } from 'src/interfaces/database.interface';
|
|
import { Mocked, vitest } from 'vitest';
|
|
|
|
export const newDatabaseRepositoryMock = (): Mocked<IDatabaseRepository> => {
|
|
return {
|
|
reconnect: vitest.fn(),
|
|
getExtensionVersion: vitest.fn(),
|
|
getExtensionVersionRange: vitest.fn(),
|
|
getPostgresVersion: vitest.fn().mockResolvedValue('14.10 (Debian 14.10-1.pgdg120+1)'),
|
|
getPostgresVersionRange: vitest.fn().mockReturnValue('>=14.0.0'),
|
|
createExtension: vitest.fn().mockResolvedValue(void 0),
|
|
updateVectorExtension: vitest.fn(),
|
|
reindex: vitest.fn(),
|
|
shouldReindex: vitest.fn(),
|
|
runMigrations: vitest.fn(),
|
|
withLock: vitest.fn().mockImplementation((_, function_: <R>() => Promise<R>) => function_()),
|
|
tryLock: vitest.fn(),
|
|
isBusy: vitest.fn(),
|
|
wait: vitest.fn(),
|
|
};
|
|
};
|