Some checks failed
PR Review Automation / review (pull_request) Has been cancelled
Test / frontend-typecheck (pull_request) Has been cancelled
Test / rust-clippy (pull_request) Has been cancelled
Test / frontend-tests (pull_request) Has been cancelled
Test / rust-fmt-check (pull_request) Has been cancelled
Test / rust-tests (pull_request) Has been cancelled
Complete overhaul of the Kubernetes management page from a basic config panel into a full Lens-style IDE shell with 26 resource types, real-time data, and a comprehensive test suite. Layout & navigation: - Rewrite KubernetesPage as a Lens v5-style shell: collapsible sidebar (Workloads / Services & Networking / Config & Storage / Access Control / Cluster), top hotbar with cluster+namespace selectors, Ctrl+K command palette - All 26 resource types now accessible via sidebar navigation (previously 5) New resource types (Rust + TypeScript + React): - StorageClasses, NetworkPolicies, ResourceQuotas, LimitRanges - 4 new Tauri commands registered in generate_handler![] Component implementations (replacing stubs with real IPC): - Terminal: full xterm.js with multi-tab sessions and exec_pod IPC - YamlEditor: Monaco editor with YAML syntax highlighting - MetricsChart: recharts LineChart/BarChart - ClusterOverview: live node/pod/deployment/namespace counts - ClusterDetails: real kubeconfig + node data - PodDetail, DeploymentDetail, ServiceDetail, ConfigMapDetail, SecretDetail: all connected to real IPC data, zero hardcoded values - CreateResourceModal, EditResourceModal: wired to createResourceCmd / editResourceCmd - RbacViewer: live data from 4 RBAC IPC commands - RbacEditor: create roles/cluster-roles via YAML editor - CommandPalette: 12 real navigation commands, keyboard nav Dependencies added: xterm@5, xterm-addon-fit, xterm-addon-web-links, @monaco-editor/react@4, recharts@2 Tooling: - Replace eslint-plugin-react (incompatible with ESLint 10) with @eslint-react/eslint-plugin; fix eslint.config.js for flat config - Fix pre-existing hoisting lint errors in Security.tsx, PortForwardForm.tsx - Fix eventBus.ts: replace all `any` generics with `unknown` Tests: 251 passing across 35 test files (was 94/19) - 16 new test files covering all new and fixed components (TDD) - npx tsc --noEmit: 0 errors - cargo clippy -- -D warnings: 0 warnings - cargo fmt --check: passes - eslint src/ --max-warnings 0: 0 issues
146 lines
4.6 KiB
TypeScript
146 lines
4.6 KiB
TypeScript
import { describe, it, expect, vi, beforeEach } from "vitest";
|
|
import { render, screen, fireEvent, waitFor } from "@testing-library/react";
|
|
import { invoke } from "@tauri-apps/api/core";
|
|
import { CreateResourceModal } from "@/components/Kubernetes/CreateResourceModal";
|
|
|
|
vi.mock("@monaco-editor/react", () => ({
|
|
default: ({
|
|
value,
|
|
onChange,
|
|
}: {
|
|
value?: string;
|
|
onChange?: (v: string | undefined) => void;
|
|
}) => (
|
|
<textarea
|
|
data-testid="monaco-editor"
|
|
value={value ?? ""}
|
|
onChange={(e) => onChange?.(e.target.value)}
|
|
/>
|
|
),
|
|
}));
|
|
|
|
type MockedInvoke = typeof invoke & {
|
|
mockResolvedValue: (v: unknown) => void;
|
|
mockRejectedValue: (e: Error) => void;
|
|
mockReturnValue: (v: unknown) => void;
|
|
};
|
|
|
|
describe("CreateResourceModal", () => {
|
|
const defaultProps = {
|
|
isOpen: true,
|
|
clusterId: "cluster-1",
|
|
namespace: "default",
|
|
onClose: vi.fn(),
|
|
};
|
|
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
it("renders the Form tab and YAML tab", () => {
|
|
render(<CreateResourceModal {...defaultProps} />);
|
|
expect(screen.getByRole("button", { name: /^form$/i })).toBeInTheDocument();
|
|
expect(screen.getByRole("button", { name: /^yaml$/i })).toBeInTheDocument();
|
|
});
|
|
|
|
it("resource type dropdown has expected options", async () => {
|
|
render(<CreateResourceModal {...defaultProps} />);
|
|
// The Select trigger shows the current value "pod" as its accessible name
|
|
const trigger = screen.getAllByRole("button").find(
|
|
(btn) => btn.textContent?.toLowerCase().includes("pod") && !btn.textContent?.toLowerCase().includes("yaml")
|
|
);
|
|
expect(trigger).toBeDefined();
|
|
fireEvent.click(trigger!);
|
|
await waitFor(() => {
|
|
// After opening the dropdown, all items should be in the document
|
|
expect(screen.getByText("Deployment")).toBeInTheDocument();
|
|
expect(screen.getByText("Service")).toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
it("Apply button calls createResourceCmd with correct args from YAML tab", async () => {
|
|
(invoke as MockedInvoke).mockResolvedValue(undefined);
|
|
|
|
render(<CreateResourceModal {...defaultProps} />);
|
|
|
|
// Switch to YAML tab
|
|
fireEvent.click(screen.getByRole("button", { name: /^yaml$/i }));
|
|
|
|
// Type YAML content
|
|
const editor = await screen.findByTestId("monaco-editor");
|
|
fireEvent.change(editor, { target: { value: "apiVersion: v1\nkind: Pod" } });
|
|
|
|
fireEvent.click(screen.getByRole("button", { name: /create resource/i }));
|
|
|
|
await waitFor(() => {
|
|
expect(invoke).toHaveBeenCalledWith("create_resource", {
|
|
clusterId: "cluster-1",
|
|
namespace: "default",
|
|
resourceType: "pod",
|
|
yamlContent: "apiVersion: v1\nkind: Pod",
|
|
});
|
|
});
|
|
});
|
|
|
|
it("shows error message when IPC call fails", async () => {
|
|
(invoke as MockedInvoke).mockRejectedValue(new Error("cluster unreachable"));
|
|
|
|
render(<CreateResourceModal {...defaultProps} />);
|
|
|
|
// Switch to YAML tab so we skip the "name required" guard
|
|
fireEvent.click(screen.getByRole("button", { name: /^yaml$/i }));
|
|
fireEvent.change(screen.getByTestId("monaco-editor"), {
|
|
target: { value: "kind: Pod" },
|
|
});
|
|
|
|
fireEvent.click(screen.getByRole("button", { name: /create resource/i }));
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByText(/cluster unreachable/i)).toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
it("calls onClose after successful IPC call", async () => {
|
|
(invoke as MockedInvoke).mockResolvedValue(undefined);
|
|
const onClose = vi.fn();
|
|
|
|
render(<CreateResourceModal {...defaultProps} onClose={onClose} />);
|
|
|
|
fireEvent.click(screen.getByRole("button", { name: /^yaml$/i }));
|
|
fireEvent.change(screen.getByTestId("monaco-editor"), {
|
|
target: { value: "kind: Pod" },
|
|
});
|
|
fireEvent.click(screen.getByRole("button", { name: /create resource/i }));
|
|
|
|
await waitFor(() => {
|
|
expect(onClose).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|
|
|
|
it("shows loading state during IPC call", async () => {
|
|
let resolveIpc!: () => void;
|
|
(invoke as MockedInvoke).mockReturnValue(
|
|
new Promise<void>((res) => {
|
|
resolveIpc = res;
|
|
})
|
|
);
|
|
|
|
render(<CreateResourceModal {...defaultProps} />);
|
|
|
|
fireEvent.click(screen.getByRole("button", { name: /^yaml$/i }));
|
|
fireEvent.change(screen.getByTestId("monaco-editor"), {
|
|
target: { value: "kind: Pod" },
|
|
});
|
|
fireEvent.click(screen.getByRole("button", { name: /create resource/i }));
|
|
|
|
// Button should be disabled while pending
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getByRole("button", { name: /creating|create resource/i })
|
|
).toBeDisabled();
|
|
});
|
|
|
|
resolveIpc();
|
|
});
|
|
});
|