mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
Some checks failed
CI/CD Pipeline for Backend / build_and_push_backend (push) Failing after 19s
CI/CD Pipeline for Nginx Router / build_and_push_nginx (push) Failing after 18s
CI/CD Pipeline for Frontend / build_and_push_frontend (push) Failing after 18s
Tests / lint-and-tests (client) (push) Failing after 1m5s
Tests / lint-and-tests (server) (push) Failing after 59s
137 lines
4.9 KiB
TypeScript
137 lines
4.9 KiB
TypeScript
// TrueFalseQuestion.test.tsx
|
|
import React, { useState } from 'react';
|
|
import { render, fireEvent, screen, act } from '@testing-library/react';
|
|
import '@testing-library/jest-dom';
|
|
import { MemoryRouter } from 'react-router-dom';
|
|
import TrueFalseQuestionDisplay from 'src/components/QuestionsDisplay/TrueFalseQuestionDisplay/TrueFalseQuestionDisplay';
|
|
import { parse, TrueFalseQuestion } from 'gift-pegjs';
|
|
import { AnswerType } from 'src/pages/Student/JoinRoom/JoinRoom';
|
|
|
|
describe('TrueFalseQuestion Component', () => {
|
|
const mockHandleSubmitAnswer = jest.fn();
|
|
const sampleStem = 'Sample True False Question';
|
|
const trueFalseQuestion =
|
|
parse(`${sampleStem}{T}`)[0] as TrueFalseQuestion;
|
|
|
|
|
|
const TestWrapper = ({ showAnswer }: { showAnswer: boolean }) => {
|
|
const [showAnswerState, setShowAnswerState] = useState(showAnswer);
|
|
|
|
const handleOnSubmitAnswer = (answer: AnswerType) => {
|
|
mockHandleSubmitAnswer(answer);
|
|
setShowAnswerState(true);
|
|
};
|
|
|
|
return (
|
|
<MemoryRouter>
|
|
<TrueFalseQuestionDisplay
|
|
question={trueFalseQuestion}
|
|
handleOnSubmitAnswer={handleOnSubmitAnswer}
|
|
showAnswer={showAnswerState}
|
|
/>
|
|
</MemoryRouter>
|
|
);
|
|
};
|
|
|
|
beforeEach(() => {
|
|
render(<TestWrapper showAnswer={false} />);
|
|
});
|
|
|
|
it('renders correctly', () => {
|
|
expect(screen.getByText(sampleStem)).toBeInTheDocument();
|
|
expect(screen.getByText('Vrai')).toBeInTheDocument();
|
|
expect(screen.getByText('Faux')).toBeInTheDocument();
|
|
expect(screen.getByText('Répondre')).toBeInTheDocument();
|
|
});
|
|
|
|
it('Submit button should be disabled if no option is selected', () => {
|
|
const submitButton = screen.getByText('Répondre');
|
|
expect(submitButton).toBeDisabled();
|
|
});
|
|
|
|
it('not submit answer if no option is selected', () => {
|
|
const submitButton = screen.getByText('Répondre');
|
|
act(() => {
|
|
fireEvent.click(submitButton);
|
|
});
|
|
|
|
expect(mockHandleSubmitAnswer).not.toHaveBeenCalled();
|
|
mockHandleSubmitAnswer.mockClear();
|
|
});
|
|
|
|
it('submits answer correctly for True', () => {
|
|
const trueButton = screen.getByText('Vrai');
|
|
const submitButton = screen.getByText('Répondre');
|
|
|
|
act(() => {
|
|
fireEvent.click(trueButton);
|
|
});
|
|
|
|
act(() => {
|
|
fireEvent.click(submitButton);
|
|
});
|
|
|
|
expect(mockHandleSubmitAnswer).toHaveBeenCalledWith([true]);
|
|
mockHandleSubmitAnswer.mockClear();
|
|
});
|
|
|
|
it('submits answer correctly for False', () => {
|
|
const falseButton = screen.getByText('Faux');
|
|
const submitButton = screen.getByText('Répondre');
|
|
act(() => {
|
|
fireEvent.click(falseButton);
|
|
});
|
|
act(() => {
|
|
fireEvent.click(submitButton);
|
|
});
|
|
|
|
expect(mockHandleSubmitAnswer).toHaveBeenCalledWith([false]);
|
|
mockHandleSubmitAnswer.mockClear();
|
|
});
|
|
|
|
|
|
it('should show ✅ next to the correct answer and ❌ next to the wrong answers when showAnswer is true', async () => {
|
|
const choiceButton = screen.getByText('Vrai').closest('button');
|
|
if (!choiceButton) throw new Error('T button not found');
|
|
|
|
// Click on choiceButton
|
|
act(() => {
|
|
fireEvent.click(choiceButton);
|
|
});
|
|
|
|
const button = screen.getByText("Répondre");
|
|
|
|
act(() => {
|
|
fireEvent.click(button);
|
|
});
|
|
|
|
// Wait for the DOM to update
|
|
const correctAnswer = screen.getByText("Vrai").closest('button');
|
|
expect(correctAnswer).toBeInTheDocument();
|
|
expect(correctAnswer?.textContent).toContain('✅');
|
|
|
|
const wrongAnswer1 = screen.getByText("Faux").closest('button');
|
|
expect(wrongAnswer1).toBeInTheDocument();
|
|
expect(wrongAnswer1?.textContent).toContain('❌');
|
|
});
|
|
|
|
it('should not show ✅ or ❌ when Répondre button is not clicked', async () => {
|
|
const choiceButton = screen.getByText('Vrai').closest('button');
|
|
if (!choiceButton) throw new Error('Choice button not found');
|
|
|
|
// Click on choiceButton
|
|
act(() => {
|
|
fireEvent.click(choiceButton);
|
|
});
|
|
|
|
// Check for correct answer
|
|
const correctAnswer = screen.getByText("Vrai").closest('button');
|
|
expect(correctAnswer).toBeInTheDocument();
|
|
expect(correctAnswer?.textContent).not.toContain('✅');
|
|
|
|
// Check for wrong answers
|
|
const wrongAnswer1 = screen.getByText("Faux");
|
|
expect(wrongAnswer1).toBeInTheDocument();
|
|
expect(wrongAnswer1?.textContent).not.toContain('❌');
|
|
});
|
|
});
|