mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 20:36:48 +01:00
30 lines
986 B
TypeScript
30 lines
986 B
TypeScript
|
import { StorageCore } from 'src/cores/storage.core';
|
||
|
|
||
|
jest.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);
|
||
|
});
|
||
|
});
|
||
|
});
|