Skip to content

Commit 3d32fed

Browse files
authored
feat: Add jest jsongenerator (#403)
* Added jest tests for JsonGenerator * Added jest tests and update Item.jsx for JsonGenerator
1 parent 10efa6b commit 3d32fed

File tree

5 files changed

+145
-0
lines changed

5 files changed

+145
-0
lines changed

jest.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ const config = {
1111
setupFilesAfterEnv: ["<rootDir>/jest.setup.js"],
1212
testEnvironment: "jest-environment-jsdom",
1313

14+
moduleNameMapper: {
15+
"^@/(.*)$": "<rootDir>/src/$1", // Maps '@/' to the 'src' folder
16+
},
17+
1418
// coverage init settings
1519
// collectCoverage: true,
1620
// coverageDirectory: "coverage",

src/app/customizer/JsonGenerator/components/Item.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ const Item = ({ field, handleChange, removeField, controls, categoryData }) => {
4545
</select>
4646
<button
4747
onClick={() => removeField(field.id)}
48+
aria-label="Remove Field"
4849
className="text-gray-500 hover:text-red-400"
4950
>
5051
<CiCircleRemove
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
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+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import React from "react";
2+
import { render, screen } from "@testing-library/react";
3+
import Heroish from "../components/Heroish";
4+
5+
// Test suite for Heroish Component
6+
describe("Heroish Component", () => {
7+
// Test that main heading renders
8+
test("renders the main heading", () => {
9+
render(<Heroish />);
10+
const heading = screen.getByRole("heading", { name: "Json Generator" });
11+
expect(heading).toBeInTheDocument();
12+
});
13+
14+
// Test that description paragraph renders
15+
test("renders the description paragraph", () => {
16+
render(<Heroish />);
17+
const descriptionText =
18+
"Generate custom JSON data quickly and easily. Populate your applications with realistic-looking data for prototyping, testing, and more.";
19+
const description = screen.getByText(descriptionText);
20+
expect(description).toBeInTheDocument();
21+
});
22+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import React from "react";
2+
import { render, screen, fireEvent, waitFor } from "@testing-library/react";
3+
import JsonGeneratorMain from "../page";
4+
5+
// Test suite for JsonGeneratorMain Component
6+
describe("JsonGeneratorMain Component", () => {
7+
// Test component renders and displays correct title
8+
test("renders without crashing and displays correct title", () => {
9+
render(<JsonGeneratorMain />);
10+
const allTitleElements = screen.getAllByText("Json Generator");
11+
expect(allTitleElements).toHaveLength(1);
12+
});
13+
14+
// Test dark mode toggle functionality
15+
test("passes isDarkMode prop correctly to child components", async () => {
16+
render(<JsonGeneratorMain />);
17+
const toggleButton = screen.getByRole("button", {
18+
name: /toggle dark mode/i,
19+
});
20+
const mainElement = screen.getByRole("main");
21+
22+
// Initial state: light mode
23+
expect(mainElement).toHaveClass("bg-white", "text-gray-800");
24+
25+
// Toggle dark mode
26+
fireEvent.click(toggleButton);
27+
28+
await waitFor(() => {
29+
const navBar = screen.getByRole("navigation");
30+
expect(navBar).toHaveClass("bg-gray-800");
31+
});
32+
33+
expect(mainElement).toHaveClass("bg-gray-900", "text-gray-400");
34+
});
35+
});

0 commit comments

Comments
 (0)