tftsr-devops_investigation/tests/unit/SecretDetail.test.tsx

74 lines
1.9 KiB
TypeScript
Raw Normal View History

feat(kubernetes): implement Lens Desktop v5 feature-parity UI 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
2026-06-07 21:41:28 +00:00
import React from "react";
import { describe, it, expect, vi, beforeEach } from "vitest";
import { render, screen, fireEvent } from "@testing-library/react";
import { SecretDetail } from "@/components/Kubernetes/SecretDetail";
import type { SecretInfo } from "@/lib/tauriCommands";
vi.mock("@tauri-apps/api/core");
const mockSecret: SecretInfo = {
name: "db-credentials",
namespace: "production",
type: "Opaque",
data_keys: 3,
age: "7d",
};
describe("SecretDetail", () => {
beforeEach(() => {
vi.clearAllMocks();
});
it("renders secret name", () => {
render(
<SecretDetail
clusterId="cluster-1"
namespace="production"
secret={mockSecret}
onClose={() => {}}
/>
);
expect(screen.getByRole("heading", { name: /secret: db-credentials/i })).toBeDefined();
});
it("shows masked values (*****) by default for all keys", () => {
render(
<SecretDetail
clusterId="cluster-1"
namespace="production"
secret={mockSecret}
onClose={() => {}}
/>
);
const masked = screen.getAllByText("*****");
expect(masked.length).toBe(3);
});
it("shows key count (data_keys) in data tab", () => {
render(
<SecretDetail
clusterId="cluster-1"
namespace="production"
secret={mockSecret}
onClose={() => {}}
/>
);
expect(screen.getByTestId("secret-key-count")).toBeDefined();
expect(screen.getByTestId("secret-key-count").textContent).toContain("3");
});
it("shows secret type in metadata tab", () => {
render(
<SecretDetail
clusterId="cluster-1"
namespace="production"
secret={mockSecret}
onClose={() => {}}
/>
);
const metadataTab = screen.getByRole("button", { name: /^metadata$/i });
fireEvent.click(metadataTab);
expect(screen.getByText("Opaque")).toBeDefined();
});
});