2023-09-20 13:16:33 +02:00
|
|
|
import { LibraryEntity, LibraryType } from '@app/infra/entities';
|
|
|
|
import { userStub } from './user.stub';
|
|
|
|
|
|
|
|
export const libraryStub = {
|
|
|
|
uploadLibrary1: Object.freeze<LibraryEntity>({
|
|
|
|
id: 'library-id',
|
|
|
|
name: 'test_library',
|
|
|
|
assets: [],
|
|
|
|
owner: userStub.user1,
|
|
|
|
ownerId: 'user-id',
|
|
|
|
type: LibraryType.UPLOAD,
|
|
|
|
importPaths: [],
|
|
|
|
createdAt: new Date('2022-01-01'),
|
|
|
|
updatedAt: new Date('2022-01-01'),
|
|
|
|
refreshedAt: null,
|
|
|
|
isVisible: true,
|
|
|
|
exclusionPatterns: [],
|
|
|
|
}),
|
|
|
|
externalLibrary1: Object.freeze<LibraryEntity>({
|
|
|
|
id: 'library-id',
|
|
|
|
name: 'test_library',
|
|
|
|
assets: [],
|
|
|
|
owner: userStub.externalPath1,
|
|
|
|
ownerId: 'user-id',
|
|
|
|
type: LibraryType.EXTERNAL,
|
|
|
|
importPaths: [],
|
|
|
|
createdAt: new Date('2023-01-01'),
|
|
|
|
updatedAt: new Date('2023-01-01'),
|
|
|
|
refreshedAt: null,
|
|
|
|
isVisible: true,
|
|
|
|
exclusionPatterns: [],
|
|
|
|
}),
|
2024-01-31 09:15:54 +01:00
|
|
|
externalLibrary2: Object.freeze<LibraryEntity>({
|
|
|
|
id: 'library-id2',
|
|
|
|
name: 'test_library2',
|
|
|
|
assets: [],
|
|
|
|
owner: userStub.externalPath1,
|
|
|
|
ownerId: 'user-id',
|
|
|
|
type: LibraryType.EXTERNAL,
|
|
|
|
importPaths: [],
|
|
|
|
createdAt: new Date('2021-01-01'),
|
|
|
|
updatedAt: new Date('2022-01-01'),
|
|
|
|
refreshedAt: null,
|
|
|
|
isVisible: true,
|
|
|
|
exclusionPatterns: [],
|
|
|
|
}),
|
|
|
|
externalLibraryWithImportPaths1: Object.freeze<LibraryEntity>({
|
|
|
|
id: 'library-id-with-paths1',
|
|
|
|
name: 'library-with-import-paths1',
|
|
|
|
assets: [],
|
|
|
|
owner: userStub.externalPath1,
|
|
|
|
ownerId: 'user-id',
|
|
|
|
type: LibraryType.EXTERNAL,
|
|
|
|
importPaths: ['/foo', '/bar'],
|
|
|
|
createdAt: new Date('2023-01-01'),
|
|
|
|
updatedAt: new Date('2023-01-01'),
|
|
|
|
refreshedAt: null,
|
|
|
|
isVisible: true,
|
|
|
|
exclusionPatterns: [],
|
|
|
|
}),
|
|
|
|
externalLibraryWithImportPaths2: Object.freeze<LibraryEntity>({
|
|
|
|
id: 'library-id-with-paths2',
|
|
|
|
name: 'library-with-import-paths2',
|
|
|
|
assets: [],
|
|
|
|
owner: userStub.externalPath1,
|
|
|
|
ownerId: 'user-id',
|
|
|
|
type: LibraryType.EXTERNAL,
|
|
|
|
importPaths: ['/xyz', '/asdf'],
|
|
|
|
createdAt: new Date('2023-01-01'),
|
|
|
|
updatedAt: new Date('2023-01-01'),
|
|
|
|
refreshedAt: null,
|
|
|
|
isVisible: true,
|
|
|
|
exclusionPatterns: [],
|
|
|
|
}),
|
|
|
|
externalLibraryWithExclusionPattern: Object.freeze<LibraryEntity>({
|
|
|
|
id: 'library-id',
|
|
|
|
name: 'test_library',
|
|
|
|
assets: [],
|
|
|
|
owner: userStub.externalPath1,
|
|
|
|
ownerId: 'user-id',
|
|
|
|
type: LibraryType.EXTERNAL,
|
|
|
|
importPaths: [],
|
|
|
|
createdAt: new Date('2023-01-01'),
|
|
|
|
updatedAt: new Date('2023-01-01'),
|
|
|
|
refreshedAt: null,
|
|
|
|
isVisible: true,
|
|
|
|
exclusionPatterns: ['**/dir1/**'],
|
|
|
|
}),
|
|
|
|
patternPath: Object.freeze<LibraryEntity>({
|
|
|
|
id: 'library-id1337',
|
|
|
|
name: 'importpath-exclusion-library1',
|
|
|
|
assets: [],
|
|
|
|
owner: userStub.externalPath1,
|
|
|
|
ownerId: 'user-id',
|
|
|
|
type: LibraryType.EXTERNAL,
|
|
|
|
importPaths: ['/xyz', '/asdf'],
|
|
|
|
createdAt: new Date('2023-01-01'),
|
|
|
|
updatedAt: new Date('2023-01-01'),
|
|
|
|
refreshedAt: null,
|
|
|
|
isVisible: true,
|
|
|
|
exclusionPatterns: ['**/dir1/**'],
|
|
|
|
}),
|
2023-09-20 13:16:33 +02:00
|
|
|
};
|