mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
253 lines
8.3 KiB
TypeScript
253 lines
8.3 KiB
TypeScript
|
|
import React from 'react';
|
||
|
|
import { render, screen, fireEvent, waitFor, act } from '@testing-library/react';
|
||
|
|
import '@testing-library/jest-dom';
|
||
|
|
import { MemoryRouter, useNavigate, useParams } from 'react-router-dom';
|
||
|
|
import ManageRoom from 'src/pages/Teacher/ManageRoom/ManageRoom';
|
||
|
|
import { StudentType } from 'src/Types/StudentType';
|
||
|
|
import { QuizType } from 'src/Types/QuizType';
|
||
|
|
import webSocketService, { AnswerReceptionFromBackendType } from 'src/services/WebsocketService';
|
||
|
|
import ApiService from 'src/services/ApiService';
|
||
|
|
import { Socket } from 'socket.io-client';
|
||
|
|
|
||
|
|
jest.mock('src/services/WebsocketService');
|
||
|
|
jest.mock('src/services/ApiService');
|
||
|
|
jest.mock('react-router-dom', () => ({
|
||
|
|
...jest.requireActual('react-router-dom'),
|
||
|
|
useNavigate: jest.fn(),
|
||
|
|
useParams: jest.fn(),
|
||
|
|
}));
|
||
|
|
|
||
|
|
const mockSocket = {
|
||
|
|
on: jest.fn(),
|
||
|
|
off: jest.fn(),
|
||
|
|
emit: jest.fn(),
|
||
|
|
connect: jest.fn(),
|
||
|
|
disconnect: jest.fn(),
|
||
|
|
} as unknown as Socket;
|
||
|
|
|
||
|
|
const mockQuiz: QuizType = {
|
||
|
|
_id: 'test-quiz-id',
|
||
|
|
title: 'Test Quiz',
|
||
|
|
content: ['::Q1:: Question 1 { =Answer1 ~Answer2 }', '::Q2:: Question 2 { =Answer1 ~Answer2 }'],
|
||
|
|
folderId: 'folder-id',
|
||
|
|
folderName: 'folder-name',
|
||
|
|
userId: 'user-id',
|
||
|
|
created_at: new Date(),
|
||
|
|
updated_at: new Date()
|
||
|
|
};
|
||
|
|
|
||
|
|
const mockStudents: StudentType[] = [
|
||
|
|
{ id: '1', name: 'Student 1', answers: [] },
|
||
|
|
{ id: '2', name: 'Student 2', answers: [] },
|
||
|
|
];
|
||
|
|
|
||
|
|
const mockAnswerData: AnswerReceptionFromBackendType = {
|
||
|
|
answer: 'Answer1',
|
||
|
|
idQuestion: 1,
|
||
|
|
idUser: '1',
|
||
|
|
username: 'Student 1',
|
||
|
|
};
|
||
|
|
|
||
|
|
describe('ManageRoom', () => {
|
||
|
|
const navigate = jest.fn();
|
||
|
|
const useParamsMock = useParams as jest.Mock;
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
jest.clearAllMocks();
|
||
|
|
(useNavigate as jest.Mock).mockReturnValue(navigate);
|
||
|
|
useParamsMock.mockReturnValue({ id: 'test-quiz-id' });
|
||
|
|
(ApiService.getQuiz as jest.Mock).mockResolvedValue(mockQuiz);
|
||
|
|
(webSocketService.connect as jest.Mock).mockReturnValue(mockSocket);
|
||
|
|
});
|
||
|
|
|
||
|
|
test('prepares to launch quiz and fetches quiz data', async () => {
|
||
|
|
await act(async () => {
|
||
|
|
render(
|
||
|
|
<MemoryRouter>
|
||
|
|
<ManageRoom />
|
||
|
|
</MemoryRouter>
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
const createSuccessCallback = (mockSocket.on as jest.Mock).mock.calls.find(call => call[0] === 'create-success')[1];
|
||
|
|
createSuccessCallback('test-room-name');
|
||
|
|
});
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(ApiService.getQuiz).toHaveBeenCalledWith('test-quiz-id');
|
||
|
|
});
|
||
|
|
|
||
|
|
const launchButton = screen.getByText('Lancer');
|
||
|
|
fireEvent.click(launchButton);
|
||
|
|
|
||
|
|
const rythmeButton = screen.getByText('Rythme du professeur');
|
||
|
|
fireEvent.click(rythmeButton);
|
||
|
|
|
||
|
|
const secondLaunchButton = screen.getAllByText('Lancer');
|
||
|
|
fireEvent.click(secondLaunchButton[1]);
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(screen.getByText('Test Quiz')).toBeInTheDocument();
|
||
|
|
expect(screen.getByText('Salle: test-room-name')).toBeInTheDocument();
|
||
|
|
expect(screen.getByText('0/60')).toBeInTheDocument();
|
||
|
|
expect(screen.getByText('Question 1/2')).toBeInTheDocument();
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
test('handles create-success event', async () => {
|
||
|
|
await act(async () => {
|
||
|
|
render(
|
||
|
|
<MemoryRouter>
|
||
|
|
<ManageRoom />
|
||
|
|
</MemoryRouter>
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
const createSuccessCallback = (mockSocket.on as jest.Mock).mock.calls.find(call => call[0] === 'create-success')[1];
|
||
|
|
createSuccessCallback('test-room-name');
|
||
|
|
});
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(screen.getByText('Salle: test-room-name')).toBeInTheDocument();
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
test('handles user-joined event', async () => {
|
||
|
|
await act(async () => {
|
||
|
|
render(
|
||
|
|
<MemoryRouter>
|
||
|
|
<ManageRoom />
|
||
|
|
</MemoryRouter>
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
const createSuccessCallback = (mockSocket.on as jest.Mock).mock.calls.find(call => call[0] === 'create-success')[1];
|
||
|
|
createSuccessCallback('test-room-name');
|
||
|
|
});
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
const userJoinedCallback = (mockSocket.on as jest.Mock).mock.calls.find(call => call[0] === 'user-joined')[1];
|
||
|
|
userJoinedCallback(mockStudents[0]);
|
||
|
|
});
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(screen.getByText('Student 1')).toBeInTheDocument();
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
const launchButton = screen.getByText('Lancer');
|
||
|
|
fireEvent.click(launchButton);
|
||
|
|
|
||
|
|
const rythmeButton = screen.getByText('Rythme du professeur');
|
||
|
|
fireEvent.click(rythmeButton);
|
||
|
|
|
||
|
|
const secondLaunchButton = screen.getAllByText('Lancer');
|
||
|
|
fireEvent.click(secondLaunchButton[1]);
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(screen.getByText('1/60')).toBeInTheDocument();
|
||
|
|
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
test('handles submit-answer-room event', async () => {
|
||
|
|
const consoleSpy = jest.spyOn(console, 'log');
|
||
|
|
await act(async () => {
|
||
|
|
render(
|
||
|
|
<MemoryRouter>
|
||
|
|
<ManageRoom />
|
||
|
|
</MemoryRouter>
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
const createSuccessCallback = (mockSocket.on as jest.Mock).mock.calls.find(call => call[0] === 'create-success')[1];
|
||
|
|
createSuccessCallback('test-room-name');
|
||
|
|
});
|
||
|
|
|
||
|
|
const launchButton = screen.getByText('Lancer');
|
||
|
|
fireEvent.click(launchButton);
|
||
|
|
|
||
|
|
const rythmeButton = screen.getByText('Rythme du professeur');
|
||
|
|
fireEvent.click(rythmeButton);
|
||
|
|
|
||
|
|
const secondLaunchButton = screen.getAllByText('Lancer');
|
||
|
|
fireEvent.click(secondLaunchButton[1]);
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
const userJoinedCallback = (mockSocket.on as jest.Mock).mock.calls.find(call => call[0] === 'user-joined')[1];
|
||
|
|
userJoinedCallback(mockStudents[0]);
|
||
|
|
});
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
const submitAnswerCallback = (mockSocket.on as jest.Mock).mock.calls.find(call => call[0] === 'submit-answer-room')[1];
|
||
|
|
submitAnswerCallback(mockAnswerData);
|
||
|
|
});
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(consoleSpy).toHaveBeenCalledWith('Received answer from Student 1 for question 1: Answer1');
|
||
|
|
});
|
||
|
|
|
||
|
|
consoleSpy.mockRestore();
|
||
|
|
});
|
||
|
|
|
||
|
|
test('handles next question', async () => {
|
||
|
|
await act(async () => {
|
||
|
|
render(
|
||
|
|
<MemoryRouter>
|
||
|
|
<ManageRoom />
|
||
|
|
</MemoryRouter>
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
const createSuccessCallback = (mockSocket.on as jest.Mock).mock.calls.find(call => call[0] === 'create-success')[1];
|
||
|
|
createSuccessCallback('test-room-name');
|
||
|
|
});
|
||
|
|
|
||
|
|
const launchButton = screen.getByText('Lancer');
|
||
|
|
fireEvent.click(launchButton);
|
||
|
|
|
||
|
|
const rythmeButton = screen.getByText('Rythme du professeur');
|
||
|
|
fireEvent.click(rythmeButton);
|
||
|
|
|
||
|
|
const secondLaunchButton = screen.getAllByText('Lancer');
|
||
|
|
fireEvent.click(secondLaunchButton[1]);
|
||
|
|
|
||
|
|
const nextQuestionButton = screen.getByText('Prochaine question');
|
||
|
|
fireEvent.click(nextQuestionButton);
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(screen.getByText('Question 2/2')).toBeInTheDocument();
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
test('handles disconnect', async () => {
|
||
|
|
await act(async () => {
|
||
|
|
render(
|
||
|
|
<MemoryRouter>
|
||
|
|
<ManageRoom />
|
||
|
|
</MemoryRouter>
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
const createSuccessCallback = (mockSocket.on as jest.Mock).mock.calls.find(call => call[0] === 'create-success')[1];
|
||
|
|
createSuccessCallback('test-room-name');
|
||
|
|
});
|
||
|
|
|
||
|
|
const disconnectButton = screen.getByText('Quitter');
|
||
|
|
fireEvent.click(disconnectButton);
|
||
|
|
|
||
|
|
const confirmButton = screen.getAllByText('Confirmer');
|
||
|
|
fireEvent.click(confirmButton[1]);
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(webSocketService.disconnect).toHaveBeenCalled();
|
||
|
|
expect(navigate).toHaveBeenCalledWith('/teacher/dashboard');
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|