Files
NetMesh/components/vault/vaultReorderDrag.test.ts
zhaolei 3c72efcb7f
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
[Init] Initial commit - NetMesh terminal manager
2026-09-13 18:24:01 +08:00

135 lines
4.0 KiB
TypeScript

import test from "node:test";
import assert from "node:assert/strict";
import {
getVaultDropIntent,
getVaultDropPosition,
handleVaultHostDropToGroup,
handleVaultRootDrop,
} from "./vaultReorderDrag.ts";
const makeElement = (rect: Partial<DOMRect>): HTMLElement => ({
getBoundingClientRect: () => ({
left: 100,
right: 200,
top: 40,
bottom: 100,
width: 100,
height: 60,
x: 100,
y: 40,
toJSON: () => ({}),
...rect,
}),
}) as HTMLElement;
test("vault drop position uses horizontal halves in grid and vertical halves in list", () => {
const element = makeElement({});
assert.equal(getVaultDropPosition(element, 120, 90, true), "before");
assert.equal(getVaultDropPosition(element, 180, 50, true), "after");
assert.equal(getVaultDropPosition(element, 180, 50, false), "before");
assert.equal(getVaultDropPosition(element, 120, 90, false), "after");
});
test("vault drop intent uses edges for sorting and middle for nesting", () => {
const element = makeElement({});
assert.equal(getVaultDropIntent(element, 110, 70, true), "before");
assert.equal(getVaultDropIntent(element, 190, 70, true), "after");
assert.equal(getVaultDropIntent(element, 150, 70, true), "inside");
assert.equal(getVaultDropIntent(element, 150, 45, false), "before");
assert.equal(getVaultDropIntent(element, 150, 95, false), "after");
assert.equal(getVaultDropIntent(element, 150, 70, false), "inside");
});
test("root host drop resets host drag state after moving the host to all hosts", () => {
const calls: string[] = [];
handleVaultRootDrop({
dataTransfer: {
getData: (type: string) => (type === "host-id" ? "host-1" : ""),
},
preventDefault: () => calls.push("preventDefault"),
setDragOverDropTarget: (target) => calls.push(`drop:${String(target)}`),
moveGroup: (groupPath, targetPath) => {
calls.push(`group:${groupPath}:${String(targetPath)}`);
},
moveHostToGroup: (hostId, targetPath) => {
calls.push(`host:${hostId}:${String(targetPath)}`);
},
resetHostDragState: () => calls.push("resetHostDragState"),
});
assert.deepEqual(calls, [
"preventDefault",
"drop:null",
"host:host-1:null",
"resetHostDragState",
]);
});
test("root group drop moves the group to all hosts without resetting host drag state", () => {
const calls: string[] = [];
handleVaultRootDrop({
dataTransfer: {
getData: (type: string) => (type === "group-path" ? "team/prod" : ""),
},
preventDefault: () => calls.push("preventDefault"),
setDragOverDropTarget: (target) => calls.push(`drop:${String(target)}`),
moveGroup: (groupPath, targetPath) => {
calls.push(`group:${groupPath}:${String(targetPath)}`);
},
moveHostToGroup: (hostId, targetPath) => {
calls.push(`host:${hostId}:${String(targetPath)}`);
},
resetHostDragState: () => calls.push("resetHostDragState"),
});
assert.deepEqual(calls, [
"preventDefault",
"drop:null",
"group:team/prod:null",
]);
});
test("group host drop resets host drag state after moving the host to the group", () => {
const calls: string[] = [];
const handled = handleVaultHostDropToGroup({
dataTransfer: {
getData: (type: string) => (type === "host-id" ? "host-1" : ""),
},
groupPath: "team/prod",
moveHostToGroup: (hostId, targetPath) => {
calls.push(`host:${hostId}:${String(targetPath)}`);
},
resetHostDragState: () => calls.push("resetHostDragState"),
});
assert.equal(handled, true);
assert.deepEqual(calls, [
"host:host-1:team/prod",
"resetHostDragState",
]);
});
test("group drop without a host leaves host drag state alone", () => {
const calls: string[] = [];
const handled = handleVaultHostDropToGroup({
dataTransfer: {
getData: () => "",
},
groupPath: "team/prod",
moveHostToGroup: (hostId, targetPath) => {
calls.push(`host:${hostId}:${String(targetPath)}`);
},
resetHostDragState: () => calls.push("resetHostDragState"),
});
assert.equal(handled, false);
assert.deepEqual(calls, []);
});