55 lines
2.5 KiB
TypeScript
55 lines
2.5 KiB
TypeScript
import { beforeAll, describe, expect, it } from 'vitest';
|
|
import { setupTestApp } from '../../setup-tests';
|
|
import { getClassRepository, getTeacherInvitationRepository, getTeacherRepository } from '../../../src/data/repositories';
|
|
import { TeacherInvitationRepository } from '../../../src/data/classes/teacher-invitation-repository';
|
|
import { TeacherRepository } from '../../../src/data/users/teacher-repository';
|
|
import { ClassRepository } from '../../../src/data/classes/class-repository';
|
|
import { getClass01, getClass02 } from '../../test_assets/classes/classes.testdata';
|
|
|
|
describe('ClassRepository', () => {
|
|
let teacherInvitationRepository: TeacherInvitationRepository;
|
|
let teacherRepository: TeacherRepository;
|
|
let classRepository: ClassRepository;
|
|
|
|
beforeAll(async () => {
|
|
await setupTestApp();
|
|
teacherInvitationRepository = getTeacherInvitationRepository();
|
|
teacherRepository = getTeacherRepository();
|
|
classRepository = getClassRepository();
|
|
});
|
|
|
|
it('should return all invitations from a teacher', async () => {
|
|
const teacher = await teacherRepository.findByUsername('LimpBizkit');
|
|
const invitations = await teacherInvitationRepository.findAllInvitationsBy(teacher!);
|
|
|
|
expect(invitations).toBeTruthy();
|
|
expect(invitations).toHaveLength(2);
|
|
});
|
|
|
|
it('should return all invitations for a teacher', async () => {
|
|
const teacher = await teacherRepository.findByUsername('FooFighters');
|
|
const invitations = await teacherInvitationRepository.findAllInvitationsFor(teacher!);
|
|
|
|
expect(invitations).toBeTruthy();
|
|
expect(invitations).toHaveLength(2);
|
|
});
|
|
|
|
it('should return all invitations for a class', async () => {
|
|
const class_ = await classRepository.findById(getClass02().classId);
|
|
const invitations = await teacherInvitationRepository.findAllInvitationsForClass(class_!);
|
|
|
|
expect(invitations).toBeTruthy();
|
|
expect(invitations).toHaveLength(2);
|
|
});
|
|
|
|
it('should not find a removed invitation', async () => {
|
|
const class_ = await classRepository.findById(getClass01().classId);
|
|
const sender = await teacherRepository.findByUsername('FooFighters');
|
|
const receiver = await teacherRepository.findByUsername('LimpBizkit');
|
|
await teacherInvitationRepository.deleteBy(class_!, sender!, receiver!);
|
|
|
|
const invitation = await teacherInvitationRepository.findAllInvitationsBy(sender!);
|
|
|
|
expect(invitation).toHaveLength(0);
|
|
});
|
|
});
|