* test: add VariableNode test suite * test: add ToolbarPlugin test suite * test: add AutoLinkPlugin test suite * test: add AddVariablesDropdown test suite * test: add Editor test suite * chore: Remove unnecessary comments in ToolbarPlugin.test.tsx --------- Co-authored-by: Amit Sharma <74371312+Amit91848@users.noreply.github.com>
74 lines
2.8 KiB
TypeScript
74 lines
2.8 KiB
TypeScript
import { render, screen, fireEvent, waitFor } from "@testing-library/react";
|
|
import { vi, describe, it, expect } from "vitest";
|
|
|
|
import { AddVariablesDropdown } from "./AddVariablesDropdown";
|
|
|
|
vi.mock("@calcom/lib/hooks/useLocale", () => ({
|
|
useLocale: () => ({
|
|
t: (key: string) => key,
|
|
}),
|
|
}));
|
|
|
|
// Mock the Dropdown component
|
|
vi.mock("../../form/dropdown", () => ({
|
|
Dropdown: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
DropdownMenuTrigger: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
DropdownMenuContent: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
DropdownMenuItem: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
|
|
}));
|
|
|
|
describe("AddVariablesDropdown", () => {
|
|
const mockAddVariable = vi.fn();
|
|
const variables = ["var1", "var2", "var3"];
|
|
|
|
it("renders correctly", () => {
|
|
render(<AddVariablesDropdown addVariable={mockAddVariable} variables={variables} />);
|
|
expect(screen.getByText("add_variable")).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders text editor version correctly", () => {
|
|
render(<AddVariablesDropdown addVariable={mockAddVariable} variables={variables} isTextEditor />);
|
|
expect(screen.getByText("add_variable")).toBeInTheDocument();
|
|
expect(screen.getByText("+")).toBeInTheDocument();
|
|
});
|
|
|
|
it("opens dropdown on click", async () => {
|
|
render(<AddVariablesDropdown addVariable={mockAddVariable} variables={variables} />);
|
|
fireEvent.click(screen.getByText("add_variable"));
|
|
await waitFor(() => {
|
|
expect(screen.getByText("add_dynamic_variables".toLocaleUpperCase())).toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
it("renders all variables", async () => {
|
|
render(<AddVariablesDropdown addVariable={mockAddVariable} variables={variables} />);
|
|
fireEvent.click(screen.getByText("add_variable"));
|
|
await waitFor(() => {
|
|
for (const variable of variables) {
|
|
expect(
|
|
screen.getByText((content) => content.includes(`{${variable}_variable}`.toUpperCase()))
|
|
).toBeInTheDocument();
|
|
}
|
|
});
|
|
});
|
|
|
|
it("calls addVariable when a variable is clicked", async () => {
|
|
render(<AddVariablesDropdown addVariable={mockAddVariable} variables={variables} />);
|
|
fireEvent.click(screen.getByText("add_variable"));
|
|
await waitFor(() => {
|
|
fireEvent.click(screen.getByText((content) => content.includes("{VAR1_VARIABLE}")));
|
|
});
|
|
expect(mockAddVariable).toHaveBeenCalledWith("var1_variable");
|
|
});
|
|
|
|
it("renders variable info for each variable", async () => {
|
|
render(<AddVariablesDropdown addVariable={mockAddVariable} variables={variables} />);
|
|
fireEvent.click(screen.getByText("add_variable"));
|
|
await waitFor(() => {
|
|
for (const variable of variables) {
|
|
expect(screen.getByText(`${variable}_info`)).toBeInTheDocument();
|
|
}
|
|
});
|
|
});
|
|
});
|