feat: tests voor backend/controllers/groups.ts geimplementeerd (4 FAILS)

This commit is contained in:
Adriaan Jacquet 2025-03-23 18:55:08 +01:00
parent 136be2d937
commit 9648f31cfd
3 changed files with 174 additions and 14 deletions

View file

@ -1,18 +1,14 @@
import { setupTestApp } from '../setup-tests.js';
import { describe, it, expect, beforeAll, beforeEach, vi, Mock } from 'vitest';
import { createClassHandler, getClassHandler, getClassStudentsHandler, getTeacherInvitationsHandler } from '../../src/controllers/classes.js';
import { createClassHandler, getAllClassesHandler, getClassHandler, getClassStudentsHandler, getTeacherInvitationsHandler } from '../../src/controllers/classes.js';
import { Request, Response } from 'express';
import { getClassTeacherInvitations } from '../../src/services/class.js';
import { getAllClasses } from '../../src/services/class.js';
async function fetchClass(id: string) {
const data = await fetch(`localhost:3000/class/${id}`);
return data;
}
vi.mock('./getClass', () => ({
getClass: vi.fn(),
}));
describe('Class controllers', () => {
let req: Partial<Request>;
let res: Partial<Response>;
@ -146,4 +142,18 @@ describe('Class controllers', () => {
expect(statusMock).toHaveBeenCalledWith(404);
expect(jsonMock).toHaveBeenCalledWith({ error: 'Class not found' });
});
it('should return a list of classes', async () => {
req = {
query: {},
};
await getAllClassesHandler(req as Request, res as Response);
expect(jsonMock).toHaveBeenCalled();
const result = jsonMock.mock.lastCall![0];
expect("classes" in result).toBeTruthy();
})
})