29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
import { beforeAll, describe, expect, it } from 'vitest';
|
|
import { getLearningPathRepository } from '../../../src/data/repositories';
|
|
import { LearningPathRepository } from '../../../src/data/content/learning-path-repository';
|
|
import { setupTestApp } from '../../setup-tests';
|
|
import { Language } from '@dwengo-1/common/util/language';
|
|
import { testLearningPath01 } from '../../test_assets/content/learning-paths.testdata';
|
|
|
|
describe('LearningPathRepository', () => {
|
|
let learningPathRepository: LearningPathRepository;
|
|
|
|
beforeAll(async () => {
|
|
await setupTestApp();
|
|
learningPathRepository = getLearningPathRepository();
|
|
});
|
|
|
|
it('should return nothing because no match for hruid and language', async () => {
|
|
const learningPath = await learningPathRepository.findByHruidAndLanguage('test_id', Language.Dutch);
|
|
|
|
expect(learningPath).toBeNull();
|
|
});
|
|
|
|
it('should return requested learning path', async () => {
|
|
const learningPath = await learningPathRepository.findByHruidAndLanguage(testLearningPath01.hruid, testLearningPath01.language as Language);
|
|
|
|
expect(learningPath).toBeTruthy();
|
|
expect(learningPath?.title).toBe(testLearningPath01.title);
|
|
expect(learningPath?.description).toBe(testLearningPath01.description);
|
|
});
|
|
});
|