35 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { beforeAll, describe, expect, it } from 'vitest';
 | |
| import { ClassRepository } from '../../../src/data/classes/class-repository';
 | |
| import { setupTestApp } from '../../setup-tests';
 | |
| import { getClassRepository } from '../../../src/data/repositories';
 | |
| import { getClass01, getClass04 } from '../../test_assets/classes/classes.testdata';
 | |
| 
 | |
| describe('ClassRepository', () => {
 | |
|     let classRepository: ClassRepository;
 | |
| 
 | |
|     beforeAll(async () => {
 | |
|         await setupTestApp();
 | |
|         classRepository = getClassRepository();
 | |
|     });
 | |
| 
 | |
|     it('should return nothing because id does not exist', async () => {
 | |
|         const classVar = await classRepository.findById('test_id');
 | |
| 
 | |
|         expect(classVar).toBeNull();
 | |
|     });
 | |
| 
 | |
|     it('should return requested class', async () => {
 | |
|         const classVar = await classRepository.findById(getClass01().classId);
 | |
| 
 | |
|         expect(classVar).toBeTruthy();
 | |
|         expect(classVar?.displayName).toBe('class01');
 | |
|     });
 | |
| 
 | |
|     it('class should be gone after deletion', async () => {
 | |
|         await classRepository.deleteById(getClass04().classId);
 | |
| 
 | |
|         const classVar = await classRepository.findById(getClass04().classId);
 | |
| 
 | |
|         expect(classVar).toBeNull();
 | |
|     });
 | |
| });
 | 
