mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
50c9bc0336
* chore: jest => vitest * chore: replace jest-when
30 lines
1,021 B
TypeScript
30 lines
1,021 B
TypeScript
import { StorageCore } from 'src/cores/storage.core';
|
|
import { vitest } from 'vitest';
|
|
|
|
vitest.mock('src/constants', () => ({
|
|
APP_MEDIA_LOCATION: '/photos',
|
|
}));
|
|
|
|
describe('StorageCore', () => {
|
|
describe('isImmichPath', () => {
|
|
it('should return true for APP_MEDIA_LOCATION path', () => {
|
|
const immichPath = '/photos';
|
|
expect(StorageCore.isImmichPath(immichPath)).toBe(true);
|
|
});
|
|
|
|
it('should return true for paths within the APP_MEDIA_LOCATION', () => {
|
|
const immichPath = '/photos/new/';
|
|
expect(StorageCore.isImmichPath(immichPath)).toBe(true);
|
|
});
|
|
|
|
it('should return false for paths outside the APP_MEDIA_LOCATION and same starts', () => {
|
|
const nonImmichPath = '/photos_new';
|
|
expect(StorageCore.isImmichPath(nonImmichPath)).toBe(false);
|
|
});
|
|
|
|
it('should return false for paths outside the APP_MEDIA_LOCATION', () => {
|
|
const nonImmichPath = '/some/other/path';
|
|
expect(StorageCore.isImmichPath(nonImmichPath)).toBe(false);
|
|
});
|
|
});
|
|
});
|