@calltelemetry/openclaw-linear 0.6.1 → 0.7.1
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/LICENSE +21 -0
- package/README.md +115 -17
- package/index.ts +57 -22
- package/openclaw.plugin.json +37 -4
- package/package.json +2 -1
- package/prompts.yaml +47 -0
- package/src/api/linear-api.test.ts +494 -0
- package/src/api/linear-api.ts +193 -19
- package/src/gateway/dispatch-methods.ts +243 -0
- package/src/infra/cli.ts +284 -29
- package/src/infra/codex-worktree.ts +83 -0
- package/src/infra/commands.ts +156 -0
- package/src/infra/doctor.test.ts +4 -4
- package/src/infra/doctor.ts +7 -29
- package/src/infra/file-lock.test.ts +61 -0
- package/src/infra/file-lock.ts +49 -0
- package/src/infra/multi-repo.ts +85 -0
- package/src/infra/notify.test.ts +357 -108
- package/src/infra/notify.ts +222 -43
- package/src/infra/observability.ts +48 -0
- package/src/infra/resilience.test.ts +94 -0
- package/src/infra/resilience.ts +101 -0
- package/src/pipeline/artifacts.ts +38 -2
- package/src/pipeline/dag-dispatch.test.ts +553 -0
- package/src/pipeline/dag-dispatch.ts +390 -0
- package/src/pipeline/dispatch-service.ts +48 -1
- package/src/pipeline/dispatch-state.ts +2 -42
- package/src/pipeline/pipeline.ts +91 -17
- package/src/pipeline/planner.test.ts +334 -0
- package/src/pipeline/planner.ts +287 -0
- package/src/pipeline/planning-state.test.ts +236 -0
- package/src/pipeline/planning-state.ts +178 -0
- package/src/pipeline/tier-assess.test.ts +175 -0
- package/src/pipeline/webhook.ts +90 -17
- package/src/tools/dispatch-history-tool.ts +201 -0
- package/src/tools/orchestration-tools.test.ts +158 -0
- package/src/tools/planner-tools.test.ts +535 -0
- package/src/tools/planner-tools.ts +450 -0
|
@@ -0,0 +1,494 @@
|
|
|
1
|
+
import { describe, it, expect, vi, beforeEach, type Mock } from "vitest";
|
|
2
|
+
import { resolveLinearToken, LinearAgentApi, AUTH_PROFILES_PATH } from "./linear-api.js";
|
|
3
|
+
|
|
4
|
+
// ---------------------------------------------------------------------------
|
|
5
|
+
// Mocks
|
|
6
|
+
// ---------------------------------------------------------------------------
|
|
7
|
+
|
|
8
|
+
vi.mock("node:fs", () => ({
|
|
9
|
+
readFileSync: vi.fn(),
|
|
10
|
+
writeFileSync: vi.fn(),
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
vi.mock("./auth.js", () => ({
|
|
14
|
+
refreshLinearToken: vi.fn(),
|
|
15
|
+
}));
|
|
16
|
+
|
|
17
|
+
vi.mock("../infra/resilience.js", () => ({
|
|
18
|
+
withResilience: vi.fn((fn: () => Promise<unknown>) => fn()),
|
|
19
|
+
}));
|
|
20
|
+
|
|
21
|
+
import { readFileSync, writeFileSync } from "node:fs";
|
|
22
|
+
import { refreshLinearToken } from "./auth.js";
|
|
23
|
+
|
|
24
|
+
// ---------------------------------------------------------------------------
|
|
25
|
+
// Helpers
|
|
26
|
+
// ---------------------------------------------------------------------------
|
|
27
|
+
|
|
28
|
+
const mockReadFileSync = readFileSync as Mock;
|
|
29
|
+
const mockWriteFileSync = writeFileSync as Mock;
|
|
30
|
+
const mockRefreshLinearToken = refreshLinearToken as Mock;
|
|
31
|
+
|
|
32
|
+
/** Build a minimal successful fetch Response. */
|
|
33
|
+
function okResponse(data: unknown, status = 200): Response {
|
|
34
|
+
return {
|
|
35
|
+
ok: true,
|
|
36
|
+
status,
|
|
37
|
+
json: () => Promise.resolve({ data }),
|
|
38
|
+
text: () => Promise.resolve(JSON.stringify({ data })),
|
|
39
|
+
headers: new Headers(),
|
|
40
|
+
} as unknown as Response;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/** Build a failing fetch Response. */
|
|
44
|
+
function errorResponse(status: number, body = "error"): Response {
|
|
45
|
+
return {
|
|
46
|
+
ok: false,
|
|
47
|
+
status,
|
|
48
|
+
json: () => Promise.resolve({ errors: [{ message: body }] }),
|
|
49
|
+
text: () => Promise.resolve(body),
|
|
50
|
+
headers: new Headers(),
|
|
51
|
+
} as unknown as Response;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/** Build a response that carries GraphQL-level errors. */
|
|
55
|
+
function gqlErrorResponse(errors: Array<{ message: string }>): Response {
|
|
56
|
+
return {
|
|
57
|
+
ok: true,
|
|
58
|
+
status: 200,
|
|
59
|
+
json: () => Promise.resolve({ errors }),
|
|
60
|
+
text: () => Promise.resolve(JSON.stringify({ errors })),
|
|
61
|
+
headers: new Headers(),
|
|
62
|
+
} as unknown as Response;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// ---------------------------------------------------------------------------
|
|
66
|
+
// Setup
|
|
67
|
+
// ---------------------------------------------------------------------------
|
|
68
|
+
|
|
69
|
+
let fetchMock: Mock;
|
|
70
|
+
|
|
71
|
+
beforeEach(() => {
|
|
72
|
+
vi.restoreAllMocks();
|
|
73
|
+
fetchMock = vi.fn();
|
|
74
|
+
vi.stubGlobal("fetch", fetchMock);
|
|
75
|
+
|
|
76
|
+
// Default: readFileSync throws (no profile file)
|
|
77
|
+
mockReadFileSync.mockImplementation(() => {
|
|
78
|
+
throw new Error("ENOENT");
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
// Clear env vars that could leak between tests
|
|
82
|
+
delete process.env.LINEAR_ACCESS_TOKEN;
|
|
83
|
+
delete process.env.LINEAR_API_KEY;
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
// ===========================================================================
|
|
87
|
+
// resolveLinearToken
|
|
88
|
+
// ===========================================================================
|
|
89
|
+
|
|
90
|
+
describe("resolveLinearToken", () => {
|
|
91
|
+
it("returns token from pluginConfig.accessToken (source: config)", () => {
|
|
92
|
+
const result = resolveLinearToken({ accessToken: "cfg-token-123" });
|
|
93
|
+
expect(result).toEqual({ accessToken: "cfg-token-123", source: "config" });
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
it("returns token from auth profile store when config is empty (source: profile)", () => {
|
|
97
|
+
const profileStore = {
|
|
98
|
+
profiles: {
|
|
99
|
+
"linear:default": {
|
|
100
|
+
accessToken: "oauth-tok",
|
|
101
|
+
refreshToken: "oauth-refresh",
|
|
102
|
+
expiresAt: 9999999999999,
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
};
|
|
106
|
+
mockReadFileSync.mockReturnValue(JSON.stringify(profileStore));
|
|
107
|
+
|
|
108
|
+
const result = resolveLinearToken();
|
|
109
|
+
expect(result).toEqual({
|
|
110
|
+
accessToken: "oauth-tok",
|
|
111
|
+
refreshToken: "oauth-refresh",
|
|
112
|
+
expiresAt: 9999999999999,
|
|
113
|
+
source: "profile",
|
|
114
|
+
});
|
|
115
|
+
expect(mockReadFileSync).toHaveBeenCalledWith(AUTH_PROFILES_PATH, "utf8");
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
it("returns token from env var LINEAR_ACCESS_TOKEN when config and profile are empty (source: env)", () => {
|
|
119
|
+
process.env.LINEAR_ACCESS_TOKEN = "env-token-abc";
|
|
120
|
+
|
|
121
|
+
const result = resolveLinearToken();
|
|
122
|
+
expect(result).toEqual({ accessToken: "env-token-abc", source: "env" });
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
it("returns token from env var LINEAR_API_KEY as fallback", () => {
|
|
126
|
+
process.env.LINEAR_API_KEY = "api-key-xyz";
|
|
127
|
+
|
|
128
|
+
const result = resolveLinearToken();
|
|
129
|
+
expect(result).toEqual({ accessToken: "api-key-xyz", source: "env" });
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
it("returns null with source 'none' when nothing is configured", () => {
|
|
133
|
+
const result = resolveLinearToken();
|
|
134
|
+
expect(result).toEqual({ accessToken: null, source: "none" });
|
|
135
|
+
});
|
|
136
|
+
|
|
137
|
+
it("respects priority: config > profile > env", () => {
|
|
138
|
+
// Set up all three sources
|
|
139
|
+
const profileStore = {
|
|
140
|
+
profiles: {
|
|
141
|
+
"linear:default": {
|
|
142
|
+
accessToken: "profile-tok",
|
|
143
|
+
refreshToken: "profile-refresh",
|
|
144
|
+
},
|
|
145
|
+
},
|
|
146
|
+
};
|
|
147
|
+
mockReadFileSync.mockReturnValue(JSON.stringify(profileStore));
|
|
148
|
+
process.env.LINEAR_ACCESS_TOKEN = "env-tok";
|
|
149
|
+
|
|
150
|
+
// Config wins when present
|
|
151
|
+
const r1 = resolveLinearToken({ accessToken: "config-tok" });
|
|
152
|
+
expect(r1.source).toBe("config");
|
|
153
|
+
expect(r1.accessToken).toBe("config-tok");
|
|
154
|
+
|
|
155
|
+
// Profile wins over env when config is absent
|
|
156
|
+
const r2 = resolveLinearToken();
|
|
157
|
+
expect(r2.source).toBe("profile");
|
|
158
|
+
expect(r2.accessToken).toBe("profile-tok");
|
|
159
|
+
|
|
160
|
+
// Env is used when profile file is unreadable and no config
|
|
161
|
+
mockReadFileSync.mockImplementation(() => {
|
|
162
|
+
throw new Error("ENOENT");
|
|
163
|
+
});
|
|
164
|
+
const r3 = resolveLinearToken();
|
|
165
|
+
expect(r3.source).toBe("env");
|
|
166
|
+
expect(r3.accessToken).toBe("env-tok");
|
|
167
|
+
});
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
// ===========================================================================
|
|
171
|
+
// LinearAgentApi
|
|
172
|
+
// ===========================================================================
|
|
173
|
+
|
|
174
|
+
describe("LinearAgentApi", () => {
|
|
175
|
+
const TOKEN = "test-access-token";
|
|
176
|
+
|
|
177
|
+
// -------------------------------------------------------------------------
|
|
178
|
+
// gql — tested indirectly via public methods
|
|
179
|
+
// -------------------------------------------------------------------------
|
|
180
|
+
|
|
181
|
+
describe("gql (via public methods)", () => {
|
|
182
|
+
it("sends correct headers and body", async () => {
|
|
183
|
+
fetchMock.mockResolvedValueOnce(
|
|
184
|
+
okResponse({ commentCreate: { success: true, comment: { id: "c1" } } }),
|
|
185
|
+
);
|
|
186
|
+
|
|
187
|
+
const api = new LinearAgentApi(TOKEN);
|
|
188
|
+
await api.createComment("issue-1", "hello");
|
|
189
|
+
|
|
190
|
+
expect(fetchMock).toHaveBeenCalledTimes(1);
|
|
191
|
+
const [url, init] = fetchMock.mock.calls[0];
|
|
192
|
+
expect(url).toBe("https://api.linear.app/graphql");
|
|
193
|
+
expect(init.method).toBe("POST");
|
|
194
|
+
expect(init.headers["Content-Type"]).toBe("application/json");
|
|
195
|
+
expect(init.headers["Authorization"]).toBe(TOKEN); // no Bearer — no refreshToken
|
|
196
|
+
|
|
197
|
+
const body = JSON.parse(init.body);
|
|
198
|
+
expect(body.query).toContain("CommentCreate");
|
|
199
|
+
expect(body.variables.input.issueId).toBe("issue-1");
|
|
200
|
+
expect(body.variables.input.body).toBe("hello");
|
|
201
|
+
});
|
|
202
|
+
|
|
203
|
+
it("returns data on success", async () => {
|
|
204
|
+
fetchMock.mockResolvedValueOnce(
|
|
205
|
+
okResponse({
|
|
206
|
+
issueUpdate: { success: true },
|
|
207
|
+
}),
|
|
208
|
+
);
|
|
209
|
+
|
|
210
|
+
const api = new LinearAgentApi(TOKEN);
|
|
211
|
+
const result = await api.updateIssue("i1", { estimate: 3 });
|
|
212
|
+
expect(result).toBe(true);
|
|
213
|
+
});
|
|
214
|
+
|
|
215
|
+
it("throws on non-ok response", async () => {
|
|
216
|
+
fetchMock.mockResolvedValueOnce(errorResponse(500, "Internal Server Error"));
|
|
217
|
+
|
|
218
|
+
const api = new LinearAgentApi(TOKEN);
|
|
219
|
+
await expect(api.updateIssue("i1", { estimate: 1 })).rejects.toThrow(
|
|
220
|
+
/Linear API 500/,
|
|
221
|
+
);
|
|
222
|
+
});
|
|
223
|
+
|
|
224
|
+
it("throws on GraphQL errors", async () => {
|
|
225
|
+
fetchMock.mockResolvedValueOnce(
|
|
226
|
+
gqlErrorResponse([{ message: "Field 'foo' not found" }]),
|
|
227
|
+
);
|
|
228
|
+
|
|
229
|
+
const api = new LinearAgentApi(TOKEN);
|
|
230
|
+
await expect(api.updateIssue("i1", { estimate: 1 })).rejects.toThrow(
|
|
231
|
+
/Linear GraphQL/,
|
|
232
|
+
);
|
|
233
|
+
});
|
|
234
|
+
|
|
235
|
+
it("retries on 401 when refresh token is available", async () => {
|
|
236
|
+
// First call (via withResilience): 401
|
|
237
|
+
fetchMock.mockResolvedValueOnce(errorResponse(401, "Unauthorized"));
|
|
238
|
+
// Retry (direct fetch, not through withResilience): succeeds
|
|
239
|
+
fetchMock.mockResolvedValueOnce(
|
|
240
|
+
okResponse({ issueUpdate: { success: true } }),
|
|
241
|
+
);
|
|
242
|
+
|
|
243
|
+
mockRefreshLinearToken.mockResolvedValueOnce({
|
|
244
|
+
access_token: "new-token",
|
|
245
|
+
refresh_token: "new-refresh",
|
|
246
|
+
expires_in: 3600,
|
|
247
|
+
});
|
|
248
|
+
|
|
249
|
+
// readFileSync/writeFileSync for persistToken
|
|
250
|
+
mockReadFileSync.mockReturnValue(
|
|
251
|
+
JSON.stringify({
|
|
252
|
+
profiles: { "linear:default": { accessToken: "old" } },
|
|
253
|
+
}),
|
|
254
|
+
);
|
|
255
|
+
|
|
256
|
+
// Use expiresAt = 1 (truthy but in the past) so ensureValidToken triggers
|
|
257
|
+
// the refresh on the 401 path when expiresAt is set to 0... actually
|
|
258
|
+
// the code sets expiresAt=0 which is falsy, so ensureValidToken bails.
|
|
259
|
+
// But the retry still happens — let's verify the retry occurs.
|
|
260
|
+
const api = new LinearAgentApi(TOKEN, {
|
|
261
|
+
refreshToken: "refresh-tok",
|
|
262
|
+
expiresAt: Date.now() + 100_000,
|
|
263
|
+
clientId: "cid",
|
|
264
|
+
clientSecret: "csecret",
|
|
265
|
+
});
|
|
266
|
+
|
|
267
|
+
const result = await api.updateIssue("i1", { estimate: 2 });
|
|
268
|
+
expect(result).toBe(true);
|
|
269
|
+
|
|
270
|
+
// Two fetch calls: original (401) + retry after 401 handling
|
|
271
|
+
expect(fetchMock).toHaveBeenCalledTimes(2);
|
|
272
|
+
|
|
273
|
+
// The retry request uses Bearer prefix (refreshToken is still set)
|
|
274
|
+
const retryInit = fetchMock.mock.calls[1][1];
|
|
275
|
+
expect(retryInit.headers["Authorization"]).toContain("Bearer");
|
|
276
|
+
});
|
|
277
|
+
|
|
278
|
+
it("throws after 401 refresh also fails", async () => {
|
|
279
|
+
// First call: 401
|
|
280
|
+
fetchMock.mockResolvedValueOnce(errorResponse(401, "Unauthorized"));
|
|
281
|
+
// After refresh, retry still fails
|
|
282
|
+
fetchMock.mockResolvedValueOnce(errorResponse(403, "Forbidden"));
|
|
283
|
+
|
|
284
|
+
mockRefreshLinearToken.mockResolvedValueOnce({
|
|
285
|
+
access_token: "refreshed-tok",
|
|
286
|
+
expires_in: 3600,
|
|
287
|
+
});
|
|
288
|
+
|
|
289
|
+
mockReadFileSync.mockReturnValue(
|
|
290
|
+
JSON.stringify({
|
|
291
|
+
profiles: { "linear:default": { accessToken: "old" } },
|
|
292
|
+
}),
|
|
293
|
+
);
|
|
294
|
+
|
|
295
|
+
const api = new LinearAgentApi(TOKEN, {
|
|
296
|
+
refreshToken: "r-tok",
|
|
297
|
+
expiresAt: Date.now() + 100_000,
|
|
298
|
+
clientId: "cid",
|
|
299
|
+
clientSecret: "csecret",
|
|
300
|
+
});
|
|
301
|
+
|
|
302
|
+
await expect(api.updateIssue("i1", { estimate: 1 })).rejects.toThrow(
|
|
303
|
+
/Linear API 403 \(after refresh\)/,
|
|
304
|
+
);
|
|
305
|
+
});
|
|
306
|
+
});
|
|
307
|
+
|
|
308
|
+
// -------------------------------------------------------------------------
|
|
309
|
+
// authHeader
|
|
310
|
+
// -------------------------------------------------------------------------
|
|
311
|
+
|
|
312
|
+
describe("authHeader (via request headers)", () => {
|
|
313
|
+
it("uses 'Bearer' prefix when refreshToken is set", async () => {
|
|
314
|
+
fetchMock.mockResolvedValueOnce(
|
|
315
|
+
okResponse({ issueUpdate: { success: true } }),
|
|
316
|
+
);
|
|
317
|
+
|
|
318
|
+
const api = new LinearAgentApi(TOKEN, {
|
|
319
|
+
refreshToken: "r-tok",
|
|
320
|
+
expiresAt: Date.now() + 600_000, // far future — no refresh triggered
|
|
321
|
+
});
|
|
322
|
+
await api.updateIssue("i1", { estimate: 1 });
|
|
323
|
+
|
|
324
|
+
const [, init] = fetchMock.mock.calls[0];
|
|
325
|
+
expect(init.headers["Authorization"]).toBe(`Bearer ${TOKEN}`);
|
|
326
|
+
});
|
|
327
|
+
|
|
328
|
+
it("uses raw token when refreshToken is not set", async () => {
|
|
329
|
+
fetchMock.mockResolvedValueOnce(
|
|
330
|
+
okResponse({ issueUpdate: { success: true } }),
|
|
331
|
+
);
|
|
332
|
+
|
|
333
|
+
const api = new LinearAgentApi(TOKEN);
|
|
334
|
+
await api.updateIssue("i1", { estimate: 1 });
|
|
335
|
+
|
|
336
|
+
const [, init] = fetchMock.mock.calls[0];
|
|
337
|
+
expect(init.headers["Authorization"]).toBe(TOKEN);
|
|
338
|
+
});
|
|
339
|
+
});
|
|
340
|
+
|
|
341
|
+
// -------------------------------------------------------------------------
|
|
342
|
+
// Public methods
|
|
343
|
+
// -------------------------------------------------------------------------
|
|
344
|
+
|
|
345
|
+
describe("emitActivity", () => {
|
|
346
|
+
it("calls the correct mutation with content payload", async () => {
|
|
347
|
+
fetchMock.mockResolvedValueOnce(
|
|
348
|
+
okResponse({ agentActivityCreate: { success: true } }),
|
|
349
|
+
);
|
|
350
|
+
|
|
351
|
+
const api = new LinearAgentApi(TOKEN);
|
|
352
|
+
await api.emitActivity("session-1", { type: "thought", body: "thinking..." });
|
|
353
|
+
|
|
354
|
+
const [, init] = fetchMock.mock.calls[0];
|
|
355
|
+
const body = JSON.parse(init.body);
|
|
356
|
+
expect(body.query).toContain("agentActivityCreate");
|
|
357
|
+
expect(body.variables.input).toEqual({
|
|
358
|
+
agentSessionId: "session-1",
|
|
359
|
+
content: { type: "thought", body: "thinking..." },
|
|
360
|
+
});
|
|
361
|
+
});
|
|
362
|
+
});
|
|
363
|
+
|
|
364
|
+
describe("createComment", () => {
|
|
365
|
+
it("sends correct input and returns comment id", async () => {
|
|
366
|
+
fetchMock.mockResolvedValueOnce(
|
|
367
|
+
okResponse({
|
|
368
|
+
commentCreate: { success: true, comment: { id: "comment-abc" } },
|
|
369
|
+
}),
|
|
370
|
+
);
|
|
371
|
+
|
|
372
|
+
const api = new LinearAgentApi(TOKEN);
|
|
373
|
+
const id = await api.createComment("issue-99", "Test comment body", {
|
|
374
|
+
createAsUser: "user-1",
|
|
375
|
+
displayIconUrl: "https://example.com/icon.png",
|
|
376
|
+
});
|
|
377
|
+
|
|
378
|
+
expect(id).toBe("comment-abc");
|
|
379
|
+
|
|
380
|
+
const body = JSON.parse(fetchMock.mock.calls[0][1].body);
|
|
381
|
+
expect(body.variables.input).toEqual({
|
|
382
|
+
issueId: "issue-99",
|
|
383
|
+
body: "Test comment body",
|
|
384
|
+
createAsUser: "user-1",
|
|
385
|
+
displayIconUrl: "https://example.com/icon.png",
|
|
386
|
+
});
|
|
387
|
+
});
|
|
388
|
+
});
|
|
389
|
+
|
|
390
|
+
describe("getIssueDetails", () => {
|
|
391
|
+
it("returns expected shape", async () => {
|
|
392
|
+
const issueData = {
|
|
393
|
+
id: "iss-1",
|
|
394
|
+
identifier: "CT-123",
|
|
395
|
+
title: "Fix the bug",
|
|
396
|
+
description: "Something is broken",
|
|
397
|
+
estimate: 3,
|
|
398
|
+
state: { name: "In Progress" },
|
|
399
|
+
assignee: { name: "Alice" },
|
|
400
|
+
labels: { nodes: [{ id: "l1", name: "bug" }] },
|
|
401
|
+
team: { id: "t1", name: "Engineering", issueEstimationType: "fibonacci" },
|
|
402
|
+
comments: {
|
|
403
|
+
nodes: [
|
|
404
|
+
{ body: "Looking into it", user: { name: "Bob" }, createdAt: "2026-01-01T00:00:00Z" },
|
|
405
|
+
],
|
|
406
|
+
},
|
|
407
|
+
project: { id: "p1", name: "Q1 Sprint" },
|
|
408
|
+
parent: null,
|
|
409
|
+
relations: { nodes: [] },
|
|
410
|
+
};
|
|
411
|
+
|
|
412
|
+
fetchMock.mockResolvedValueOnce(okResponse({ issue: issueData }));
|
|
413
|
+
|
|
414
|
+
const api = new LinearAgentApi(TOKEN);
|
|
415
|
+
const result = await api.getIssueDetails("iss-1");
|
|
416
|
+
|
|
417
|
+
expect(result.id).toBe("iss-1");
|
|
418
|
+
expect(result.identifier).toBe("CT-123");
|
|
419
|
+
expect(result.title).toBe("Fix the bug");
|
|
420
|
+
expect(result.description).toBe("Something is broken");
|
|
421
|
+
expect(result.estimate).toBe(3);
|
|
422
|
+
expect(result.state.name).toBe("In Progress");
|
|
423
|
+
expect(result.assignee?.name).toBe("Alice");
|
|
424
|
+
expect(result.labels.nodes).toHaveLength(1);
|
|
425
|
+
expect(result.team.issueEstimationType).toBe("fibonacci");
|
|
426
|
+
expect(result.comments.nodes).toHaveLength(1);
|
|
427
|
+
expect(result.project?.name).toBe("Q1 Sprint");
|
|
428
|
+
expect(result.parent).toBeNull();
|
|
429
|
+
expect(result.relations.nodes).toHaveLength(0);
|
|
430
|
+
|
|
431
|
+
// Verify variables sent
|
|
432
|
+
const body = JSON.parse(fetchMock.mock.calls[0][1].body);
|
|
433
|
+
expect(body.variables).toEqual({ id: "iss-1" });
|
|
434
|
+
});
|
|
435
|
+
});
|
|
436
|
+
|
|
437
|
+
describe("updateIssue", () => {
|
|
438
|
+
it("calls mutation and returns success boolean", async () => {
|
|
439
|
+
fetchMock.mockResolvedValueOnce(
|
|
440
|
+
okResponse({ issueUpdate: { success: true } }),
|
|
441
|
+
);
|
|
442
|
+
|
|
443
|
+
const api = new LinearAgentApi(TOKEN);
|
|
444
|
+
const success = await api.updateIssue("iss-42", {
|
|
445
|
+
estimate: 5,
|
|
446
|
+
labelIds: ["l1", "l2"],
|
|
447
|
+
stateId: "s1",
|
|
448
|
+
priority: 2,
|
|
449
|
+
});
|
|
450
|
+
|
|
451
|
+
expect(success).toBe(true);
|
|
452
|
+
|
|
453
|
+
const body = JSON.parse(fetchMock.mock.calls[0][1].body);
|
|
454
|
+
expect(body.query).toContain("issueUpdate");
|
|
455
|
+
expect(body.variables).toEqual({
|
|
456
|
+
id: "iss-42",
|
|
457
|
+
input: {
|
|
458
|
+
estimate: 5,
|
|
459
|
+
labelIds: ["l1", "l2"],
|
|
460
|
+
stateId: "s1",
|
|
461
|
+
priority: 2,
|
|
462
|
+
},
|
|
463
|
+
});
|
|
464
|
+
});
|
|
465
|
+
});
|
|
466
|
+
|
|
467
|
+
describe("createSessionOnIssue", () => {
|
|
468
|
+
it("returns sessionId on success", async () => {
|
|
469
|
+
fetchMock.mockResolvedValueOnce(
|
|
470
|
+
okResponse({
|
|
471
|
+
agentSessionCreateOnIssue: {
|
|
472
|
+
success: true,
|
|
473
|
+
agentSession: { id: "sess-new" },
|
|
474
|
+
},
|
|
475
|
+
}),
|
|
476
|
+
);
|
|
477
|
+
|
|
478
|
+
const api = new LinearAgentApi(TOKEN);
|
|
479
|
+
const result = await api.createSessionOnIssue("iss-1");
|
|
480
|
+
expect(result).toEqual({ sessionId: "sess-new" });
|
|
481
|
+
});
|
|
482
|
+
|
|
483
|
+
it("returns error on failure", async () => {
|
|
484
|
+
fetchMock.mockResolvedValueOnce(errorResponse(500, "Server Error"));
|
|
485
|
+
|
|
486
|
+
const api = new LinearAgentApi(TOKEN);
|
|
487
|
+
const result = await api.createSessionOnIssue("iss-bad");
|
|
488
|
+
|
|
489
|
+
expect(result.sessionId).toBeNull();
|
|
490
|
+
expect(result.error).toBeDefined();
|
|
491
|
+
expect(result.error).toContain("Linear API 500");
|
|
492
|
+
});
|
|
493
|
+
});
|
|
494
|
+
});
|