@openparachute/hub 0.6.4-rc.9 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/__tests__/expose-supervisor-version.test.ts +104 -0
- package/src/__tests__/hub-unit.test.ts +181 -0
- package/src/__tests__/init.test.ts +401 -0
- package/src/__tests__/install.test.ts +90 -0
- package/src/__tests__/migrate-cutover.test.ts +1 -0
- package/src/commands/expose-supervisor.ts +45 -0
- package/src/commands/init.ts +63 -1
- package/src/commands/install.ts +42 -1
- package/src/hub-unit.ts +255 -0
package/package.json
CHANGED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { describe, expect, test } from "bun:test";
|
|
2
|
+
import { ensureHubUnitForExpose, resolveExposeSupervisor } from "../commands/expose-supervisor.ts";
|
|
3
|
+
import type { EnsureHubVersionMatchesResult } from "../hub-unit.ts";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* #590: `ensureHubUnitForExpose` must run the version-check-and-restart at the
|
|
7
|
+
* expose adoption point, so an expose never wires a tunnel to a stale zombie
|
|
8
|
+
* that merely answers /health on the canonical port. These tests drive the
|
|
9
|
+
* version-check seam directly (no real launchctl / live hub).
|
|
10
|
+
*/
|
|
11
|
+
describe("ensureHubUnitForExpose — version-check at the expose adoption point (#590)", () => {
|
|
12
|
+
function sup(
|
|
13
|
+
ensureHubUnitOutcome: "already-up" | "started" | "no-unit",
|
|
14
|
+
versionResult: EnsureHubVersionMatchesResult,
|
|
15
|
+
versionSpy?: (port: number) => void,
|
|
16
|
+
) {
|
|
17
|
+
return resolveExposeSupervisor({
|
|
18
|
+
ensureHubUnit: async ({ port }) => ({
|
|
19
|
+
outcome: ensureHubUnitOutcome,
|
|
20
|
+
port: port ?? 1939,
|
|
21
|
+
messages: ensureHubUnitOutcome === "no-unit" ? ["no hub unit installed"] : [],
|
|
22
|
+
}),
|
|
23
|
+
ensureHubVersion: async ({ port }) => {
|
|
24
|
+
versionSpy?.(port);
|
|
25
|
+
return versionResult;
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
test("hub up + version matches → ok, version check ran with the probed port", async () => {
|
|
31
|
+
const logs: string[] = [];
|
|
32
|
+
let checkedPort: number | undefined;
|
|
33
|
+
const s = sup(
|
|
34
|
+
"already-up",
|
|
35
|
+
{
|
|
36
|
+
outcome: "match",
|
|
37
|
+
runningVersion: "0.6.4-rc.9",
|
|
38
|
+
installedVersion: "0.6.4-rc.9",
|
|
39
|
+
messages: [],
|
|
40
|
+
},
|
|
41
|
+
(p) => {
|
|
42
|
+
checkedPort = p;
|
|
43
|
+
},
|
|
44
|
+
);
|
|
45
|
+
const res = await ensureHubUnitForExpose(s, 1939, (l) => logs.push(l));
|
|
46
|
+
expect(res.ok).toBe(true);
|
|
47
|
+
expect(checkedPort).toBe(1939);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
test("hub up but a stale zombie → restarted → ok (tunnel binds to NEW code)", async () => {
|
|
51
|
+
const logs: string[] = [];
|
|
52
|
+
const s = sup("already-up", {
|
|
53
|
+
outcome: "restarted",
|
|
54
|
+
runningVersion: "0.6.4-rc.9",
|
|
55
|
+
installedVersion: "0.6.4-rc.9",
|
|
56
|
+
messages: ["✓ hub unit restarted; now running 0.6.4-rc.9."],
|
|
57
|
+
});
|
|
58
|
+
const res = await ensureHubUnitForExpose(s, 1939, (l) => logs.push(l));
|
|
59
|
+
expect(res.ok).toBe(true);
|
|
60
|
+
expect(logs.join("\n")).toContain("now running 0.6.4-rc.9");
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
test("hub up but mismatch + NOT unit-managed → expose FAILS (don't tunnel to a zombie)", async () => {
|
|
64
|
+
const logs: string[] = [];
|
|
65
|
+
const s = sup("already-up", {
|
|
66
|
+
outcome: "not-unit-managed",
|
|
67
|
+
runningVersion: "0.5.14-rc.4",
|
|
68
|
+
installedVersion: "0.6.4-rc.9",
|
|
69
|
+
messages: ["⚠ the running hub is 0.5.14-rc.4 but 0.6.4-rc.9 is installed."],
|
|
70
|
+
});
|
|
71
|
+
const res = await ensureHubUnitForExpose(s, 1939, (l) => logs.push(l));
|
|
72
|
+
expect(res.ok).toBe(false);
|
|
73
|
+
expect(logs.join("\n")).toContain("0.5.14-rc.4");
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
test("still-mismatched after restart → expose CONTINUES (warn, don't block)", async () => {
|
|
77
|
+
const logs: string[] = [];
|
|
78
|
+
const s = sup("already-up", {
|
|
79
|
+
outcome: "still-mismatched",
|
|
80
|
+
runningVersion: "0.6.4-rc.8",
|
|
81
|
+
installedVersion: "0.6.4-rc.9",
|
|
82
|
+
messages: ["⚠ restarted the hub unit, but it is still not reporting 0.6.4-rc.9."],
|
|
83
|
+
});
|
|
84
|
+
const res = await ensureHubUnitForExpose(s, 1939, (l) => logs.push(l));
|
|
85
|
+
expect(res.ok).toBe(true);
|
|
86
|
+
expect(logs.join("\n")).toContain("still not reporting");
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
test("hub NOT up (no unit) → fails BEFORE the version check (no false adoption)", async () => {
|
|
90
|
+
const logs: string[] = [];
|
|
91
|
+
let versionRan = false;
|
|
92
|
+
const s = sup(
|
|
93
|
+
"no-unit",
|
|
94
|
+
{ outcome: "match", installedVersion: "0.6.4-rc.9", messages: [] },
|
|
95
|
+
() => {
|
|
96
|
+
versionRan = true;
|
|
97
|
+
},
|
|
98
|
+
);
|
|
99
|
+
const res = await ensureHubUnitForExpose(s, 1939, (l) => logs.push(l));
|
|
100
|
+
expect(res.ok).toBe(false);
|
|
101
|
+
// The version check only runs once the hub is confirmed up.
|
|
102
|
+
expect(versionRan).toBe(false);
|
|
103
|
+
});
|
|
104
|
+
});
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
NO_MANAGER_MESSAGE,
|
|
5
5
|
NO_UNIT_MESSAGE,
|
|
6
6
|
ensureHubUnit,
|
|
7
|
+
ensureHubVersionMatches,
|
|
7
8
|
installAndStartHubUnit,
|
|
8
9
|
queryHubUnitState,
|
|
9
10
|
restartHubUnit,
|
|
@@ -38,6 +39,12 @@ function fakeDeps(
|
|
|
38
39
|
over: Partial<HubUnitDeps> & {
|
|
39
40
|
runResults?: ServiceCommandResult[];
|
|
40
41
|
healthSeq?: boolean[];
|
|
42
|
+
/**
|
|
43
|
+
* #590: scripted version-aware /health probe results. Each element is
|
|
44
|
+
* `null` (hub not answering) or `{ ok, version }`. Drives
|
|
45
|
+
* `probeHealthVersion` across the version-check + post-restart re-probe.
|
|
46
|
+
*/
|
|
47
|
+
healthVersionSeq?: ({ ok: boolean; version?: string } | null)[];
|
|
41
48
|
listeningSeq?: boolean[];
|
|
42
49
|
installedUnit?: boolean;
|
|
43
50
|
} = {},
|
|
@@ -46,6 +53,7 @@ function fakeDeps(
|
|
|
46
53
|
const files = new Map<string, string>();
|
|
47
54
|
let runIdx = 0;
|
|
48
55
|
let healthIdx = 0;
|
|
56
|
+
let healthVersionIdx = 0;
|
|
49
57
|
let listeningIdx = 0;
|
|
50
58
|
const ok: ServiceCommandResult = { code: 0, stdout: "", stderr: "" };
|
|
51
59
|
|
|
@@ -96,6 +104,13 @@ function fakeDeps(
|
|
|
96
104
|
if (!seq) return false;
|
|
97
105
|
return seq[Math.min(healthIdx++, seq.length - 1)] ?? false;
|
|
98
106
|
}),
|
|
107
|
+
probeHealthVersion:
|
|
108
|
+
over.probeHealthVersion ??
|
|
109
|
+
(async () => {
|
|
110
|
+
const seq = over.healthVersionSeq;
|
|
111
|
+
if (!seq) return null;
|
|
112
|
+
return seq[Math.min(healthVersionIdx++, seq.length - 1)] ?? null;
|
|
113
|
+
}),
|
|
99
114
|
portListening:
|
|
100
115
|
over.portListening ??
|
|
101
116
|
(async () => {
|
|
@@ -576,3 +591,169 @@ describe("queryHubUnitState — §6.4 hub-row manager query", () => {
|
|
|
576
591
|
expect(r.detail).toContain("spawn EPERM");
|
|
577
592
|
});
|
|
578
593
|
});
|
|
594
|
+
|
|
595
|
+
describe("ensureHubVersionMatches — version-check-and-restart at adoption (#590)", () => {
|
|
596
|
+
const INSTALLED = "0.6.4-rc.9";
|
|
597
|
+
|
|
598
|
+
test("versions match → no-op, NO restart, NO manager call", async () => {
|
|
599
|
+
const f = fakeDeps({
|
|
600
|
+
platform: "darwin",
|
|
601
|
+
getuid: () => 501,
|
|
602
|
+
installedUnit: true,
|
|
603
|
+
healthVersionSeq: [{ ok: true, version: INSTALLED }],
|
|
604
|
+
});
|
|
605
|
+
const res = await ensureHubVersionMatches({
|
|
606
|
+
installedVersion: INSTALLED,
|
|
607
|
+
port: 1939,
|
|
608
|
+
deps: f.deps,
|
|
609
|
+
readyPollMs: 0,
|
|
610
|
+
});
|
|
611
|
+
expect(res.outcome).toBe("match");
|
|
612
|
+
expect(res.runningVersion).toBe(INSTALLED);
|
|
613
|
+
// No launchctl/systemctl call at all — the version agreed.
|
|
614
|
+
expect(f.calls).toEqual([]);
|
|
615
|
+
});
|
|
616
|
+
|
|
617
|
+
test("mismatch + unit-managed → restarts ONCE + re-probe shows new version → restarted", async () => {
|
|
618
|
+
const f = fakeDeps({
|
|
619
|
+
platform: "darwin",
|
|
620
|
+
getuid: () => 501,
|
|
621
|
+
installedUnit: true,
|
|
622
|
+
// first probe: stale zombie; after the restart the re-probe sees the new code.
|
|
623
|
+
healthVersionSeq: [
|
|
624
|
+
{ ok: true, version: "0.5.14-rc.4" },
|
|
625
|
+
{ ok: true, version: INSTALLED },
|
|
626
|
+
],
|
|
627
|
+
});
|
|
628
|
+
const res = await ensureHubVersionMatches({
|
|
629
|
+
installedVersion: INSTALLED,
|
|
630
|
+
port: 1939,
|
|
631
|
+
deps: f.deps,
|
|
632
|
+
readyPollMs: 0,
|
|
633
|
+
});
|
|
634
|
+
expect(res.outcome).toBe("restarted");
|
|
635
|
+
// Exactly ONE restart (launchctl kickstart -k) was issued.
|
|
636
|
+
const restarts = f.calls.filter((c) => c.includes("kickstart"));
|
|
637
|
+
expect(restarts).toHaveLength(1);
|
|
638
|
+
expect(restarts[0]).toEqual(["launchctl", "kickstart", "-k", "gui/501/computer.parachute.hub"]);
|
|
639
|
+
});
|
|
640
|
+
|
|
641
|
+
test("/health has NO version field (very old hub) → treated as mismatch → restart", async () => {
|
|
642
|
+
const f = fakeDeps({
|
|
643
|
+
platform: "linux",
|
|
644
|
+
getuid: () => 1000,
|
|
645
|
+
installedUnit: true,
|
|
646
|
+
healthVersionSeq: [{ ok: true /* no version */ }, { ok: true, version: INSTALLED }],
|
|
647
|
+
});
|
|
648
|
+
const res = await ensureHubVersionMatches({
|
|
649
|
+
installedVersion: INSTALLED,
|
|
650
|
+
port: 1939,
|
|
651
|
+
deps: f.deps,
|
|
652
|
+
readyPollMs: 0,
|
|
653
|
+
});
|
|
654
|
+
expect(res.outcome).toBe("restarted");
|
|
655
|
+
expect(f.calls).toContainEqual(["systemctl", "--user", "restart", "parachute-hub.service"]);
|
|
656
|
+
});
|
|
657
|
+
|
|
658
|
+
test("mismatch but NOT unit-managed (no unit installed) → not-unit-managed, NO kill, actionable message", async () => {
|
|
659
|
+
const f = fakeDeps({
|
|
660
|
+
platform: "darwin",
|
|
661
|
+
getuid: () => 501,
|
|
662
|
+
installedUnit: false, // a detached legacy pid / dev `bun run serve`
|
|
663
|
+
healthVersionSeq: [{ ok: true, version: "0.5.14-rc.4" }],
|
|
664
|
+
});
|
|
665
|
+
const res = await ensureHubVersionMatches({
|
|
666
|
+
installedVersion: INSTALLED,
|
|
667
|
+
port: 1939,
|
|
668
|
+
deps: f.deps,
|
|
669
|
+
readyPollMs: 0,
|
|
670
|
+
});
|
|
671
|
+
expect(res.outcome).toBe("not-unit-managed");
|
|
672
|
+
// Did NOT issue any manager command — we never blindly kill a hub we don't own.
|
|
673
|
+
expect(f.calls).toEqual([]);
|
|
674
|
+
const joined = res.messages.join("\n");
|
|
675
|
+
expect(joined).toContain("NOT managed by a Parachute service unit");
|
|
676
|
+
expect(joined).toContain("0.5.14-rc.4");
|
|
677
|
+
expect(joined).toContain(INSTALLED);
|
|
678
|
+
});
|
|
679
|
+
|
|
680
|
+
test("mismatch but no service manager at all → not-unit-managed (don't kill)", async () => {
|
|
681
|
+
const f = fakeDeps({
|
|
682
|
+
platform: "linux",
|
|
683
|
+
installedUnit: true,
|
|
684
|
+
which: () => null, // no systemctl → no manager
|
|
685
|
+
healthVersionSeq: [{ ok: true, version: "0.5.14-rc.4" }],
|
|
686
|
+
});
|
|
687
|
+
const res = await ensureHubVersionMatches({
|
|
688
|
+
installedVersion: INSTALLED,
|
|
689
|
+
port: 1939,
|
|
690
|
+
deps: f.deps,
|
|
691
|
+
readyPollMs: 0,
|
|
692
|
+
});
|
|
693
|
+
expect(res.outcome).toBe("not-unit-managed");
|
|
694
|
+
expect(f.calls).toEqual([]);
|
|
695
|
+
});
|
|
696
|
+
|
|
697
|
+
test("restart-loop guard: still mismatched after the single restart → still-mismatched, restarts ONCE", async () => {
|
|
698
|
+
const f = fakeDeps({
|
|
699
|
+
platform: "darwin",
|
|
700
|
+
getuid: () => 501,
|
|
701
|
+
installedUnit: true,
|
|
702
|
+
// bun-linked branch checkout: the restart comes back STILL on the old
|
|
703
|
+
// version (package.json trails). Every probe returns the stale version.
|
|
704
|
+
healthVersionSeq: [{ ok: true, version: "0.5.14-rc.4" }],
|
|
705
|
+
});
|
|
706
|
+
const res = await ensureHubVersionMatches({
|
|
707
|
+
installedVersion: INSTALLED,
|
|
708
|
+
port: 1939,
|
|
709
|
+
deps: f.deps,
|
|
710
|
+
readyTimeoutMs: 0, // immediate deadline → one re-probe then settle
|
|
711
|
+
readyPollMs: 0,
|
|
712
|
+
});
|
|
713
|
+
expect(res.outcome).toBe("still-mismatched");
|
|
714
|
+
// Restarted AT MOST once — no loop.
|
|
715
|
+
const restarts = f.calls.filter((c) => c.includes("kickstart"));
|
|
716
|
+
expect(restarts).toHaveLength(1);
|
|
717
|
+
expect(res.messages.join("\n")).toContain("still not reporting");
|
|
718
|
+
});
|
|
719
|
+
|
|
720
|
+
test("hub not answering /health at all → not-running (no-op, no restart)", async () => {
|
|
721
|
+
const f = fakeDeps({
|
|
722
|
+
platform: "darwin",
|
|
723
|
+
getuid: () => 501,
|
|
724
|
+
installedUnit: true,
|
|
725
|
+
healthVersionSeq: [null], // connection refused / timeout
|
|
726
|
+
});
|
|
727
|
+
const res = await ensureHubVersionMatches({
|
|
728
|
+
installedVersion: INSTALLED,
|
|
729
|
+
port: 1939,
|
|
730
|
+
deps: f.deps,
|
|
731
|
+
readyPollMs: 0,
|
|
732
|
+
});
|
|
733
|
+
expect(res.outcome).toBe("not-running");
|
|
734
|
+
expect(f.calls).toEqual([]);
|
|
735
|
+
});
|
|
736
|
+
|
|
737
|
+
test("mismatch + unit-managed but the restart command fails → restart-failed", async () => {
|
|
738
|
+
const f = fakeDeps({
|
|
739
|
+
platform: "linux",
|
|
740
|
+
getuid: () => 1000,
|
|
741
|
+
installedUnit: true,
|
|
742
|
+
healthVersionSeq: [{ ok: true, version: "0.5.14-rc.4" }],
|
|
743
|
+
run: (cmd) => {
|
|
744
|
+
if (cmd.includes("restart")) {
|
|
745
|
+
return { code: 1, stdout: "", stderr: "Unit parachute-hub.service not found." };
|
|
746
|
+
}
|
|
747
|
+
return { code: 0, stdout: "", stderr: "" };
|
|
748
|
+
},
|
|
749
|
+
});
|
|
750
|
+
const res = await ensureHubVersionMatches({
|
|
751
|
+
installedVersion: INSTALLED,
|
|
752
|
+
port: 1939,
|
|
753
|
+
deps: f.deps,
|
|
754
|
+
readyPollMs: 0,
|
|
755
|
+
});
|
|
756
|
+
expect(res.outcome).toBe("restart-failed");
|
|
757
|
+
expect(res.messages.join("\n")).toContain("Unit parachute-hub.service not found.");
|
|
758
|
+
});
|
|
759
|
+
});
|