1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
import { describe, it, expect, mock, afterAll } from "bun:test";
let _lastFrom: any = null;
let _nextRepoRow: { name: string; ownerId: string } | undefined;
let _nextUserRow: { username: string } | undefined;
const _chain: any = {
from: (table: any) => {
_lastFrom = table;
return _chain;
},
where: () => _chain,
leftJoin: () => _chain,
innerJoin: () => _chain,
orderBy: () => _chain,
limit: async () => {
const t = _lastFrom;
if (t && typeof t === "object") {
if ("username" in t && "passwordHash" in t) {
return _nextUserRow ? [_nextUserRow] : [];
}
if ("ownerId" in t && "name" in t) {
return _nextRepoRow ? [_nextRepoRow] : [];
}
}
return [];
},
set: () => _chain,
};
const _fakeDb = {
db: {
select: () => _chain,
insert: () => _chain,
update: () => _chain,
delete: () => _chain,
},
getDb: () => ({
select: () => _chain,
insert: () => _chain,
update: () => _chain,
delete: () => _chain,
}),
};
mock.module("../db", () => _fakeDb);
afterAll(() => {
_nextRepoRow = undefined;
_nextUserRow = undefined;
_lastFrom = null;
});
import {
resolveAction,
listActions,
registerAction,
} from "../lib/action-registry";
const ORIGINAL_GATETEST_URL = process.env.GATETEST_URL;
function clearGatetestUrl() {
delete process.env.GATETEST_URL;
}
function restoreGatetestUrl() {
if (ORIGINAL_GATETEST_URL === undefined) delete process.env.GATETEST_URL;
else process.env.GATETEST_URL = ORIGINAL_GATETEST_URL;
}
afterAll(() => {
restoreGatetestUrl();
});
const ACTION_CTX_BASE = {
with: {},
env: {},
workspace: "/tmp/fake-workspace",
runId: "run-id",
jobId: "job-id",
repoId: "repo-id",
commitSha: "deadbeef",
ref: "refs/heads/main",
};
describe("action-registry — resolveAction", () => {
it("resolves gluecron/checkout@v1 to the checkout handler", () => {
const h = resolveAction("gluecron/checkout@v1");
expect(h).not.toBeNull();
expect(h?.name).toBe("gluecron/checkout");
expect(h?.version).toBe("v1");
});
it("resolves gluecron/gatetest@v1 to the gatetest handler", () => {
const h = resolveAction("gluecron/gatetest@v1");
expect(h).not.toBeNull();
expect(h?.name).toBe("gluecron/gatetest");
expect(h?.version).toBe("v1");
});
it("resolveAction('unknown/foo@v1') returns null", () => {
const h = resolveAction("unknown/foo@v1");
expect(h).toBeNull();
});
it("resolveAction('gluecron/checkout') with no @version resolves to the default (v1)", () => {
const h = resolveAction("gluecron/checkout");
expect(h).not.toBeNull();
expect(h?.name).toBe("gluecron/checkout");
expect(h?.version).toBe("v1");
});
it("listActions() includes all 5 built-ins", () => {
const names = listActions().map((a) => a.name);
expect(names).toContain("gluecron/checkout");
expect(names).toContain("gluecron/gatetest");
expect(names).toContain("gluecron/cache");
expect(names).toContain("gluecron/upload-artifact");
expect(names).toContain("gluecron/download-artifact");
});
it("registerAction de-duplicates repeated registrations of the same name@version", () => {
const before = listActions().length;
const handler = {
name: "gluecron/__test_dedupe__",
version: "v1",
async run() {
return { exitCode: 0 };
},
};
registerAction(handler);
const afterFirst = listActions().length;
registerAction(handler);
const afterSecond = listActions().length;
expect(afterFirst).toBe(before + 1);
expect(afterSecond).toBe(afterFirst);
});
});
describe("action-registry — built-in behaviour", () => {
it("checkout.run() returns exitCode 0 and emits the sha output", async () => {
const h = resolveAction("gluecron/checkout@v1")!;
const res = await h.run({ ...ACTION_CTX_BASE });
expect(res.exitCode).toBe(0);
expect(res.outputs?.sha).toBe("deadbeef");
});
it("gatetest.run() handles missing repo lookup gracefully (returns non-zero with stderr)", async () => {
_nextRepoRow = undefined;
_nextUserRow = undefined;
const h = resolveAction("gluecron/gatetest@v1")!;
const res = await h.run({ ...ACTION_CTX_BASE });
expect(typeof res.exitCode).toBe("number");
expect(res).toBeDefined();
if (res.exitCode !== 0) {
expect((res.stderr || "").length).toBeGreaterThan(0);
}
});
});
|