|
| 1 | +import React from "react"; |
| 2 | +import { render, screen, fireEvent, waitFor } from "@testing-library/react"; |
| 3 | +import CardForm from "../components/CardForm"; |
| 4 | +import { saveAs } from "file-saver"; |
| 5 | + |
| 6 | +// Mock external dependencies |
| 7 | +jest.mock("file-saver", () => ({ |
| 8 | + saveAs: jest.fn(), |
| 9 | +})); |
| 10 | + |
| 11 | +// Test suite for CardForm Component |
| 12 | +describe("CardForm Component", () => { |
| 13 | + beforeEach(() => { |
| 14 | + jest.clearAllMocks(); |
| 15 | + }); |
| 16 | + |
| 17 | + // Renders FieldsSection correctly |
| 18 | + test("renders the FieldsSection component", () => { |
| 19 | + render(<CardForm isDarkMode={false} />); |
| 20 | + expect(screen.getByText("Field Name")).toBeInTheDocument(); |
| 21 | + expect(screen.getByText("Field Type")).toBeInTheDocument(); |
| 22 | + }); |
| 23 | + |
| 24 | + // Renders initial fields correctly |
| 25 | + test("renders the initial fields from Init.jsx", () => { |
| 26 | + render(<CardForm isDarkMode={false} />); |
| 27 | + const allTextInputs = screen.getAllByRole("textbox"); |
| 28 | + const fieldNameInputs = allTextInputs.filter( |
| 29 | + (input) => input.getAttribute("name") === "fieldName", |
| 30 | + ); |
| 31 | + expect(fieldNameInputs.length).toBe(3); |
| 32 | + const initialFieldNames = fieldNameInputs.map((input) => input.value); |
| 33 | + expect(initialFieldNames).toEqual(["id", "first_name", "last_name"]); |
| 34 | + }); |
| 35 | + |
| 36 | + // Adds a new field when button clicked |
| 37 | + test('adds a new field when "ADD ANOTHER FIELD" button is clicked', () => { |
| 38 | + render(<CardForm isDarkMode={false} />); |
| 39 | + const addButton = screen.getByRole("button", { |
| 40 | + name: /add another field/i, |
| 41 | + }); |
| 42 | + fireEvent.click(addButton); |
| 43 | + const fieldInputs = screen.getAllByRole("textbox"); |
| 44 | + expect(fieldInputs.length).toBeGreaterThan(1); |
| 45 | + }); |
| 46 | + |
| 47 | + // Removes a field when remove button clicked |
| 48 | + test("removes a field when the remove button is clicked", () => { |
| 49 | + render(<CardForm isDarkMode={false} />); |
| 50 | + const removeButtons = screen.getAllByRole("button", { |
| 51 | + name: /remove field/i, |
| 52 | + }); |
| 53 | + const initialFieldCount = removeButtons.length; |
| 54 | + fireEvent.click(removeButtons[0]); |
| 55 | + const updatedRemoveButtons = screen.queryAllByRole("button", { |
| 56 | + name: /remove field/i, |
| 57 | + }); |
| 58 | + expect(updatedRemoveButtons.length).toBe(initialFieldCount - 1); |
| 59 | + }); |
| 60 | + |
| 61 | + // Generates JSON and downloads file |
| 62 | + test('generates JSON data and downloads file when "Export" button is clicked', async () => { |
| 63 | + render(<CardForm isDarkMode={false} />); |
| 64 | + const generateButton = screen.getByRole("button", { name: /export/i }); |
| 65 | + fireEvent.click(generateButton); |
| 66 | + await waitFor(() => { |
| 67 | + expect(saveAs).toHaveBeenCalledTimes(1); |
| 68 | + }); |
| 69 | + const filename = saveAs.mock.calls[0][1]; |
| 70 | + expect(filename).toBe("WebDevTools.json"); |
| 71 | + }); |
| 72 | + |
| 73 | + // Shows preview when "Preview" button clicked |
| 74 | + test('shows preview when "Preview" button is clicked', async () => { |
| 75 | + render(<CardForm isDarkMode={false} />); |
| 76 | + const fieldTypeSelects = screen.getAllByRole("combobox"); |
| 77 | + fieldTypeSelects.forEach((select) => { |
| 78 | + fireEvent.change(select, { target: { value: "int" } }); |
| 79 | + }); |
| 80 | + const modalHeading = await screen.findByText(/preview/i); |
| 81 | + expect(modalHeading).toBeInTheDocument(); |
| 82 | + }); |
| 83 | +}); |
0 commit comments