[Init] Initial commit - NetMesh terminal manager
Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
This commit is contained in:
114
components/systemManager/SystemManagerSidePanel.test.tsx
Normal file
114
components/systemManager/SystemManagerSidePanel.test.tsx
Normal file
@@ -0,0 +1,114 @@
|
||||
import assert from "node:assert/strict";
|
||||
import { readFileSync } from "node:fs";
|
||||
import test from "node:test";
|
||||
import React from "react";
|
||||
import { renderToStaticMarkup } from "react-dom/server";
|
||||
|
||||
import { I18nProvider } from "../../application/i18n/I18nProvider.tsx";
|
||||
import { normalizeTerminalSettings } from "../../domain/models/terminal.ts";
|
||||
import type { Host, TerminalSession } from "../../types.ts";
|
||||
import { TooltipProvider } from "../ui/tooltip.tsx";
|
||||
import { SystemManagerSidePanel } from "./SystemManagerSidePanel.tsx";
|
||||
|
||||
const session: TerminalSession = {
|
||||
id: "session-1",
|
||||
hostId: "host-1",
|
||||
hostLabel: "Demo",
|
||||
username: "root",
|
||||
hostname: "demo.local",
|
||||
status: "connected",
|
||||
protocol: "ssh",
|
||||
};
|
||||
|
||||
const host: Host = {
|
||||
id: "host-1",
|
||||
label: "Demo",
|
||||
hostname: "demo.local",
|
||||
username: "root",
|
||||
tags: [],
|
||||
os: "linux",
|
||||
};
|
||||
|
||||
test("system side panel renders the graphical overview as the first tab", () => {
|
||||
const markup = renderToStaticMarkup(
|
||||
<I18nProvider locale="en">
|
||||
<TooltipProvider>
|
||||
<SystemManagerSidePanel
|
||||
session={session}
|
||||
sessionHost={host}
|
||||
isVisible={false}
|
||||
terminalSettings={normalizeTerminalSettings()}
|
||||
snippets={[]}
|
||||
/>
|
||||
</TooltipProvider>
|
||||
</I18nProvider>,
|
||||
);
|
||||
|
||||
assert.match(markup, /Overview/);
|
||||
assert.match(markup, /data-section="system-manager-overview"/);
|
||||
assert.doesNotMatch(markup, /Live server health/);
|
||||
assert.doesNotMatch(markup, /System overview/);
|
||||
});
|
||||
|
||||
test("overview tab reuses the shared server stats source", () => {
|
||||
const source = readFileSync(new URL("./SystemOverviewTab.tsx", import.meta.url), "utf8");
|
||||
|
||||
assert.match(source, /function MetricCard\(\{[\s\S]*trendValues,\s*trendMax,\s*tone,/);
|
||||
assert.match(source, /useServerStats\(\{/);
|
||||
assert.match(source, /setHistory\(\[\]\)/);
|
||||
assert.match(source, /if \(!isVisible \|\| !hasStats\) return/);
|
||||
assert.match(source, /SystemPanelInlineError[\s\S]*onRetry=\{\(\) => void refresh\(\)\}/);
|
||||
assert.match(source, /aggregateMountedDiskUsage\(stats\.disks\)/);
|
||||
assert.doesNotMatch(source, /stats\.disks\.slice\(/);
|
||||
assert.doesNotMatch(source, /usePolling/);
|
||||
assert.doesNotMatch(source, /backend\.getServerStats/);
|
||||
});
|
||||
|
||||
test("overview network interfaces show cumulative RX/TX totals alongside rates", () => {
|
||||
const source = readFileSync(new URL("./SystemOverviewTab.tsx", import.meta.url), "utf8");
|
||||
|
||||
assert.match(source, /stats\.netInterfaces\.slice\(0, 5\)\.map/);
|
||||
assert.match(source, /formatBytes\(iface\.rxBytes\)/);
|
||||
assert.match(source, /formatBytes\(iface\.txBytes\)/);
|
||||
assert.match(source, /formatThroughput\(iface\.rxSpeed\)/);
|
||||
assert.match(source, /formatThroughput\(iface\.txSpeed\)/);
|
||||
});
|
||||
|
||||
test("overview tab stays mounted and only pauses polling while another system tab is active", () => {
|
||||
const source = readFileSync(new URL("./SystemManagerSidePanel.tsx", import.meta.url), "utf8");
|
||||
|
||||
// Must not hard-unmount Overview on tab switch (causes empty-state flash).
|
||||
assert.doesNotMatch(source, /resolvedTab === 'overview' && \(/);
|
||||
assert.match(source, /isVisible=\{isVisible && resolvedTab === 'overview'\}/);
|
||||
assert.match(source, /<SystemOverviewTab/);
|
||||
assert.match(source, /resolvedTab !== 'overview' && 'hidden'/);
|
||||
});
|
||||
|
||||
test("system manager tab bar switches icon-only from real overflow measure", () => {
|
||||
const source = readFileSync(new URL("./SystemManagerSidePanel.tsx", import.meta.url), "utf8");
|
||||
const indexCss = readFileSync(new URL("../../index.css", import.meta.url), "utf8");
|
||||
|
||||
assert.match(source, /system-manager-tab-bar/);
|
||||
assert.match(source, /system-manager-tab-label/);
|
||||
assert.match(source, /measureSystemManagerTabBarLabeledFit/);
|
||||
assert.match(source, /resolveSystemManagerTabBarIconOnly/);
|
||||
assert.match(source, /SYSTEM_MANAGER_TAB_BAR_ICON_ONLY_CLASS/);
|
||||
assert.match(source, /scrollSystemManagerTabIntoView/);
|
||||
assert.match(source, /applyHorizontalWheelToScrollContainer/);
|
||||
assert.match(indexCss, /\.system-manager-tab-bar--icon-only \.system-manager-tab-label\s*\{[\s\S]*display:\s*none/);
|
||||
assert.doesNotMatch(indexCss, /@container system-manager-tabs/);
|
||||
});
|
||||
|
||||
test("system manager tab bar reuses toolbar customize context menu", () => {
|
||||
const source = readFileSync(new URL("./SystemManagerSidePanel.tsx", import.meta.url), "utf8");
|
||||
|
||||
assert.match(source, /ToolbarCustomizeContextMenu/);
|
||||
assert.match(source, /ToolbarOverflowMenu/);
|
||||
assert.match(source, /useToolbarItemLayout/);
|
||||
assert.match(source, /STORAGE_KEY_SYSTEM_MANAGER_TAB_LAYOUT/);
|
||||
assert.match(source, /SYSTEM_MANAGER_TAB_LAYOUT_DEFAULTS/);
|
||||
assert.match(source, /handleSetTabPlacement/);
|
||||
assert.match(source, /tabLayout\.move/);
|
||||
assert.match(source, /data-section="system-manager-tabs"/);
|
||||
assert.match(source, /system-manager-tab-overflow/);
|
||||
});
|
||||
Reference in New Issue
Block a user