[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:
169
domain/snippetTargets.test.ts
Normal file
169
domain/snippetTargets.test.ts
Normal file
@@ -0,0 +1,169 @@
|
||||
import assert from 'node:assert/strict';
|
||||
import test from 'node:test';
|
||||
import {
|
||||
getRunnableHostsForSnippet,
|
||||
snippetAppliesToHost,
|
||||
snippetAppliesToOutputTrigger,
|
||||
snippetCanRunInTerminal,
|
||||
snippetHasRunTargets,
|
||||
resolveSnippetTargetGroupsForSave,
|
||||
} from './snippetTargets.ts';
|
||||
import type { Host, Snippet } from './models';
|
||||
|
||||
const baseSnippet: Snippet = {
|
||||
id: 's1',
|
||||
label: 'test',
|
||||
command: 'echo hi',
|
||||
package: '',
|
||||
};
|
||||
|
||||
const hosts: Host[] = [
|
||||
{
|
||||
id: 'host-a',
|
||||
label: 'A',
|
||||
hostname: 'a.example',
|
||||
username: 'root',
|
||||
os: 'linux',
|
||||
protocol: 'ssh',
|
||||
group: 'Production/Web',
|
||||
tags: [],
|
||||
},
|
||||
{
|
||||
id: 'host-b',
|
||||
label: 'B',
|
||||
hostname: 'b.example',
|
||||
username: 'root',
|
||||
os: 'linux',
|
||||
protocol: 'serial',
|
||||
tags: [],
|
||||
},
|
||||
];
|
||||
|
||||
test('snippetAppliesToHost returns false when targets are empty', () => {
|
||||
assert.equal(snippetAppliesToHost(baseSnippet, 'host-a'), false);
|
||||
assert.equal(snippetAppliesToHost({ ...baseSnippet, targets: [] }, 'host-a'), false);
|
||||
});
|
||||
|
||||
test('snippetAppliesToHost matches only listed hosts', () => {
|
||||
const snippet = { ...baseSnippet, targets: ['host-a', 'host-b'] };
|
||||
assert.equal(snippetAppliesToHost(snippet, 'host-a'), true);
|
||||
assert.equal(snippetAppliesToHost(snippet, 'host-c'), false);
|
||||
assert.equal(snippetAppliesToHost(snippet, undefined), false);
|
||||
});
|
||||
|
||||
test('snippetAppliesToHost matches all hosts when targetsAllHosts is set', () => {
|
||||
const snippet = { ...baseSnippet, targetsAllHosts: true };
|
||||
assert.equal(snippetAppliesToHost(snippet, 'host-a'), true);
|
||||
assert.equal(snippetAppliesToHost(snippet, 'host-c'), true);
|
||||
assert.equal(snippetAppliesToHost(snippet, undefined), false);
|
||||
});
|
||||
|
||||
test('snippetCanRunInTerminal enforces explicit host and dynamic group scopes', () => {
|
||||
assert.equal(snippetCanRunInTerminal(baseSnippet, hosts[0]!), true);
|
||||
assert.equal(snippetCanRunInTerminal({
|
||||
...baseSnippet,
|
||||
targets: ['host-b'],
|
||||
}, hosts[0]!), false);
|
||||
assert.equal(snippetCanRunInTerminal({
|
||||
...baseSnippet,
|
||||
targetGroups: ['Production'],
|
||||
}, hosts[0]!), true);
|
||||
assert.equal(snippetCanRunInTerminal({
|
||||
...baseSnippet,
|
||||
targetGroups: ['Staging'],
|
||||
}, hosts[0]!), false);
|
||||
assert.equal(snippetCanRunInTerminal({
|
||||
...baseSnippet,
|
||||
targetGroups: [],
|
||||
}, hosts[0]!), false);
|
||||
});
|
||||
|
||||
test('snippetHasRunTargets requires explicit scope', () => {
|
||||
assert.equal(snippetHasRunTargets(baseSnippet), false);
|
||||
assert.equal(snippetHasRunTargets({ ...baseSnippet, targets: ['host-a'] }), true);
|
||||
assert.equal(snippetHasRunTargets({ ...baseSnippet, targetsAllHosts: true }), true);
|
||||
assert.equal(snippetHasRunTargets({ ...baseSnippet, targetGroups: ['Production'] }), true);
|
||||
});
|
||||
|
||||
test('resolveSnippetTargetGroupsForSave preserves unscoped and explicit-empty states', () => {
|
||||
assert.equal(resolveSnippetTargetGroupsForSave(baseSnippet, []), undefined);
|
||||
assert.deepEqual(resolveSnippetTargetGroupsForSave({
|
||||
...baseSnippet,
|
||||
targetGroups: [],
|
||||
}, []), []);
|
||||
assert.deepEqual(resolveSnippetTargetGroupsForSave(baseSnippet, ['Production']), ['Production']);
|
||||
assert.equal(resolveSnippetTargetGroupsForSave({
|
||||
...baseSnippet,
|
||||
targetGroups: [],
|
||||
targetsAllHosts: true,
|
||||
}, []), undefined);
|
||||
});
|
||||
|
||||
test('group targets resolve current nested membership without storing host ids', () => {
|
||||
const grouped = { ...baseSnippet, targetGroups: ['Production'] };
|
||||
assert.equal(snippetAppliesToHost(grouped, hosts[0]), true);
|
||||
assert.equal(snippetAppliesToHost(grouped, { id: 'host-c', group: 'Staging' }), false);
|
||||
assert.deepEqual(getRunnableHostsForSnippet(grouped, hosts), [hosts[0]]);
|
||||
|
||||
const moved = [{ ...hosts[0], group: 'Staging' }, hosts[1]];
|
||||
assert.deepEqual(getRunnableHostsForSnippet(grouped, moved), []);
|
||||
});
|
||||
|
||||
test('explicit host and group targets form a deduplicated union', () => {
|
||||
const extra = { ...hosts[0], id: 'host-c', group: 'Staging' };
|
||||
const snippet = {
|
||||
...baseSnippet,
|
||||
targets: ['host-a', 'host-c'],
|
||||
targetGroups: ['Production'],
|
||||
};
|
||||
assert.deepEqual(getRunnableHostsForSnippet(snippet, [...hosts, extra]), [hosts[0], extra]);
|
||||
});
|
||||
|
||||
test('snippetAppliesToOutputTrigger applies to current session when targets are unset', () => {
|
||||
const snippet = { ...baseSnippet, trigger: 'onConnect' as const };
|
||||
assert.equal(snippetAppliesToOutputTrigger(snippet, 'host-a'), false);
|
||||
|
||||
const output = { ...baseSnippet, trigger: 'onOutput' as const };
|
||||
assert.equal(snippetAppliesToOutputTrigger(output, 'host-a'), true);
|
||||
assert.equal(snippetAppliesToOutputTrigger(output, undefined), false);
|
||||
});
|
||||
|
||||
test('snippetAppliesToOutputTrigger treats an explicit empty group scope as disabled', () => {
|
||||
assert.equal(snippetAppliesToOutputTrigger({
|
||||
...baseSnippet,
|
||||
trigger: 'onOutput',
|
||||
targetGroups: [],
|
||||
}, { id: 'host-a', group: 'Production' }), false);
|
||||
});
|
||||
|
||||
test('snippetAppliesToOutputTrigger respects explicit host targets', () => {
|
||||
const output = {
|
||||
...baseSnippet,
|
||||
trigger: 'onOutput' as const,
|
||||
targets: ['host-a'],
|
||||
};
|
||||
assert.equal(snippetAppliesToOutputTrigger(output, 'host-a'), true);
|
||||
assert.equal(snippetAppliesToOutputTrigger(output, 'host-b'), false);
|
||||
});
|
||||
|
||||
test('snippetAppliesToOutputTrigger respects dynamic group targets', () => {
|
||||
const output = {
|
||||
...baseSnippet,
|
||||
trigger: 'onOutput' as const,
|
||||
targetGroups: ['Production'],
|
||||
};
|
||||
assert.equal(snippetAppliesToOutputTrigger(output, hosts[0]), true);
|
||||
assert.equal(snippetAppliesToOutputTrigger(output, { id: 'host-c', group: 'Staging' }), false);
|
||||
});
|
||||
|
||||
test('getRunnableHostsForSnippet excludes serial hosts and respects scope', () => {
|
||||
assert.deepEqual(
|
||||
getRunnableHostsForSnippet({ ...baseSnippet, targets: ['host-a', 'host-b'] }, hosts),
|
||||
[hosts[0]],
|
||||
);
|
||||
assert.deepEqual(
|
||||
getRunnableHostsForSnippet({ ...baseSnippet, targetsAllHosts: true }, hosts),
|
||||
[hosts[0]],
|
||||
);
|
||||
assert.deepEqual(getRunnableHostsForSnippet(baseSnippet, hosts), []);
|
||||
});
|
||||
Reference in New Issue
Block a user