forked from hiero-ledger/hiero-sdk-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-api.js
More file actions
522 lines (508 loc) · 16.4 KB
/
test-api.js
File metadata and controls
522 lines (508 loc) · 16.4 KB
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
// SPDX-License-Identifier: Apache-2.0
//
// tests/test-api.js
//
// Unit tests for helpers/api.js (postOrUpdateComment, fetchPRCommits, swapStatusLabel, etc.).
// Run with: node .github/scripts/tests/test-api.js
const { runTestSuite } = require('./test-utils');
const {
postOrUpdateComment,
fetchPRCommits,
fetchIssue,
fetchClosingIssueNumbers,
swapStatusLabel,
hasLabel,
} = require('../helpers/api');
const { LABELS } = require('../helpers/constants');
const { isSafeSearchToken } = require('../helpers/validation');
// =============================================================================
// MOCK FACTORY
// =============================================================================
function createMockBotContext(overrides = {}) {
const calls = {
created: [],
updated: [],
labelsAdded: [],
labelsRemoved: [],
};
const comments = overrides.comments || [];
return {
botContext: {
github: {
rest: {
issues: {
listComments: async ({ page, per_page }) => {
const start = (page - 1) * per_page;
const slice = comments.slice(start, start + per_page);
return { data: slice };
},
createComment: async (params) => {
calls.created.push(params);
},
updateComment: async (params) => {
calls.updated.push(params);
},
addLabels: async (params) => {
calls.labelsAdded.push(params.labels);
},
removeLabel: async (params) => {
calls.labelsRemoved.push(params.name);
},
get: async ({ issue_number }) => {
const issue = (overrides.issues || {})[issue_number];
if (!issue) throw new Error('Not Found');
return { data: issue };
},
},
pulls: {
listCommits: async ({ page, per_page }) => {
const allCommits = overrides.commits || [];
const start = (page - 1) * per_page;
const slice = allCommits.slice(start, start + per_page);
return { data: slice };
},
},
},
graphql:
overrides.graphql ||
(async () => ({
repository: {
pullRequest: {
closingIssuesReferences: { nodes: [] },
},
},
})),
},
owner: 'test',
repo: 'repo',
number: 1,
pr: overrides.pr || { labels: [] },
},
calls,
};
}
// =============================================================================
// UNIT TESTS
// =============================================================================
const unitTests = [
// ---------------------------------------------------------------------------
// hasLabel
// ---------------------------------------------------------------------------
{
name: 'hasLabel: PR with matching label object → true',
test: () => {
const pr = {
labels: [{ name: 'status: needs review' }],
};
return hasLabel(pr, LABELS.NEEDS_REVIEW) === true;
},
},
{
name: 'hasLabel: PR with no matching label → false',
test: () => {
const pr = {
labels: [{ name: 'bug' }, { name: 'enhancement' }],
};
return hasLabel(pr, LABELS.NEEDS_REVIEW) === false;
},
},
{
name: 'hasLabel: PR with no labels → false',
test: () => {
const pr = { labels: [] };
return hasLabel(pr, LABELS.NEEDS_REVIEW) === false;
},
},
{
name: 'hasLabel: PR with null/undefined labels → false',
test: () => {
return (
hasLabel({ labels: null }, LABELS.NEEDS_REVIEW) === false &&
hasLabel({}, LABELS.NEEDS_REVIEW) === false
);
},
},
{
name: 'hasLabel: case insensitive match → true',
test: () => {
const pr = {
labels: [{ name: 'STATUS: NEEDS REVIEW' }],
};
return hasLabel(pr, 'status: needs review') === true;
},
},
{
name: 'hasLabel: string labels → true',
test: () => {
const pr = {
labels: ['status: needs review', 'bug'],
};
return hasLabel(pr, LABELS.NEEDS_REVIEW) === true;
},
},
// ---------------------------------------------------------------------------
// postOrUpdateComment
// ---------------------------------------------------------------------------
{
name: 'postOrUpdateComment: no existing comment → creates new',
test: async () => {
const { botContext, calls } = createMockBotContext({
comments: [],
});
const marker = '<!-- bot:test -->';
const body = '<!-- bot:test -->\nHello';
const result = await postOrUpdateComment(botContext, marker, body);
return (
result.success === true &&
calls.created.length === 1 &&
calls.updated.length === 0 &&
calls.created[0].body === body
);
},
},
{
name: 'postOrUpdateComment: existing comment with marker → updates',
test: async () => {
const marker = '<!-- bot:test -->';
const { botContext, calls } = createMockBotContext({
comments: [
{ id: 999, body: '<!-- bot:test -->\nOld content' },
],
});
const body = '<!-- bot:test -->\nNew content';
const result = await postOrUpdateComment(botContext, marker, body);
return (
result.success === true &&
calls.created.length === 0 &&
calls.updated.length === 1 &&
calls.updated[0].comment_id === 999 &&
calls.updated[0].body === body
);
},
},
{
name: 'postOrUpdateComment: multiple comments, one has marker → updates correct one',
test: async () => {
const marker = '<!-- bot:test -->';
const { botContext, calls } = createMockBotContext({
comments: [
{ id: 1, body: 'User comment 1' },
{ id: 2, body: '<!-- bot:test -->\nBot comment' },
{ id: 3, body: 'User comment 2' },
],
});
const body = '<!-- bot:test -->\nUpdated bot';
const result = await postOrUpdateComment(botContext, marker, body);
return (
result.success === true &&
calls.updated.length === 1 &&
calls.updated[0].comment_id === 2
);
},
},
{
name: 'postOrUpdateComment: empty comment list → creates new',
test: async () => {
const { botContext, calls } = createMockBotContext({
comments: [],
});
const result = await postOrUpdateComment(
botContext,
'<!-- bot:x -->',
'<!-- bot:x -->\nEmpty'
);
return result.success === true && calls.created.length === 1 && calls.updated.length === 0;
},
},
{
name: 'postOrUpdateComment: comment on second page → finds and updates',
test: async () => {
const marker = '<!-- bot:paged -->';
const page1 = Array(100)
.fill(null)
.map((_, i) => ({ id: i + 1, body: `Comment ${i}` }));
const page2 = [
{ id: 101, body: '<!-- bot:paged -->\nFound on page 2' },
];
const { botContext, calls } = createMockBotContext({
comments: [...page1, ...page2],
});
const body = '<!-- bot:paged -->\nUpdated';
const result = await postOrUpdateComment(botContext, marker, body);
return (
result.success === true &&
calls.updated.length === 1 &&
calls.updated[0].comment_id === 101
);
},
},
// ---------------------------------------------------------------------------
// fetchPRCommits
// ---------------------------------------------------------------------------
{
name: 'fetchPRCommits: single page (< 100 commits) → returns all',
test: async () => {
const commits = [
{ sha: 'a1', commit: { message: 'First' } },
{ sha: 'b2', commit: { message: 'Second' } },
];
const { botContext } = createMockBotContext({ commits });
const result = await fetchPRCommits(botContext);
return (
Array.isArray(result) &&
result.length === 2 &&
result[0].sha === 'a1' &&
result[1].sha === 'b2'
);
},
},
{
name: 'fetchPRCommits: multiple pages → paginates and returns all',
test: async () => {
const commits = Array(150)
.fill(null)
.map((_, i) => ({ sha: `c${i}`, commit: { message: `Commit ${i}` } }));
const { botContext } = createMockBotContext({ commits });
const result = await fetchPRCommits(botContext);
return result.length === 150;
},
},
{
name: 'fetchPRCommits: empty PR → returns []',
test: async () => {
const { botContext } = createMockBotContext({ commits: [] });
const result = await fetchPRCommits(botContext);
return Array.isArray(result) && result.length === 0;
},
},
// ---------------------------------------------------------------------------
// fetchIssue
// ---------------------------------------------------------------------------
{
name: 'fetchIssue: valid issue → returns issue data',
test: async () => {
const issueData = { number: 5, title: 'Bug report', state: 'open' };
const { botContext } = createMockBotContext({
issues: { 5: issueData },
});
const result = await fetchIssue(botContext, 5);
return result.number === 5 && result.title === 'Bug report';
},
},
{
name: 'fetchIssue: missing issue (API throws) → throws',
test: async () => {
const { botContext } = createMockBotContext({ issues: {} });
try {
await fetchIssue(botContext, 999);
return false;
} catch (err) {
return err.message === 'Not Found';
}
},
},
// ---------------------------------------------------------------------------
// fetchClosingIssueNumbers
// ---------------------------------------------------------------------------
{
name: 'fetchClosingIssueNumbers: 1 closing reference → returns [number]',
test: async () => {
const { botContext } = createMockBotContext({
graphql: async () => ({
repository: {
pullRequest: {
closingIssuesReferences: {
nodes: [{ number: 42 }],
},
},
},
}),
});
const result = await fetchClosingIssueNumbers(botContext);
return result.length === 1 && result[0] === 42;
},
},
{
name: 'fetchClosingIssueNumbers: 0 references → returns []',
test: async () => {
const { botContext } = createMockBotContext({
graphql: async () => ({
repository: {
pullRequest: {
closingIssuesReferences: { nodes: [] },
},
},
}),
});
const result = await fetchClosingIssueNumbers(botContext);
return Array.isArray(result) && result.length === 0;
},
},
{
name: 'fetchClosingIssueNumbers: multiple references → returns all',
test: async () => {
const { botContext } = createMockBotContext({
graphql: async () => ({
repository: {
pullRequest: {
closingIssuesReferences: {
nodes: [{ number: 1 }, { number: 2 }, { number: 3 }],
},
},
},
}),
});
const result = await fetchClosingIssueNumbers(botContext);
return (
result.length === 3 &&
result[0] === 1 &&
result[1] === 2 &&
result[2] === 3
);
},
},
{
name: 'fetchClosingIssueNumbers: GraphQL fails → returns [] (graceful)',
test: async () => {
const { botContext } = createMockBotContext({
graphql: async () => {
throw new Error('GraphQL error');
},
});
const result = await fetchClosingIssueNumbers(botContext);
return Array.isArray(result) && result.length === 0;
},
},
// ---------------------------------------------------------------------------
// swapStatusLabel
// ---------------------------------------------------------------------------
{
name: 'swapStatusLabel: allPassed true, has NEEDS_REVISION → removes revision, adds review',
test: async () => {
const { botContext, calls } = createMockBotContext({
pr: { labels: [{ name: LABELS.NEEDS_REVISION }] },
});
await swapStatusLabel(botContext, true);
return (
calls.labelsRemoved.length === 1 &&
calls.labelsRemoved[0] === LABELS.NEEDS_REVISION &&
calls.labelsAdded.length === 1 &&
Array.isArray(calls.labelsAdded[0]) &&
calls.labelsAdded[0][0] === LABELS.NEEDS_REVIEW
);
},
},
{
name: 'swapStatusLabel: allPassed true, has NEEDS_REVIEW → no-op',
test: async () => {
const { botContext, calls } = createMockBotContext({
pr: { labels: [{ name: LABELS.NEEDS_REVIEW }] },
});
await swapStatusLabel(botContext, true);
return calls.labelsRemoved.length === 0 && calls.labelsAdded.length === 0;
},
},
{
name: 'swapStatusLabel: allPassed true, no status label → no-op',
test: async () => {
const { botContext, calls } = createMockBotContext({
pr: { labels: [{ name: 'bug' }] },
});
await swapStatusLabel(botContext, true);
return calls.labelsRemoved.length === 0 && calls.labelsAdded.length === 0;
},
},
{
name: 'swapStatusLabel: allPassed false, has NEEDS_REVIEW → removes review, adds revision',
test: async () => {
const { botContext, calls } = createMockBotContext({
pr: { labels: [{ name: LABELS.NEEDS_REVIEW }] },
});
await swapStatusLabel(botContext, false);
return (
calls.labelsRemoved.length === 1 &&
calls.labelsRemoved[0] === LABELS.NEEDS_REVIEW &&
calls.labelsAdded.length === 1 &&
Array.isArray(calls.labelsAdded[0]) &&
calls.labelsAdded[0][0] === LABELS.NEEDS_REVISION
);
},
},
{
name: 'swapStatusLabel: allPassed false, has NEEDS_REVISION → no-op',
test: async () => {
const { botContext, calls } = createMockBotContext({
pr: { labels: [{ name: LABELS.NEEDS_REVISION }] },
});
await swapStatusLabel(botContext, false);
return calls.labelsRemoved.length === 0 && calls.labelsAdded.length === 0;
},
},
{
name: 'swapStatusLabel: allPassed false, no status label → no-op',
test: async () => {
const { botContext, calls } = createMockBotContext({
pr: { labels: [] },
});
await swapStatusLabel(botContext, false);
return calls.labelsRemoved.length === 0 && calls.labelsAdded.length === 0;
},
},
// ---------------------------------------------------------------------------
// SafeSearchToken
// ---------------------------------------------------------------------------
{
name: 'isSafeSearchToken: dependabot[bot] → true',
test: () => isSafeSearchToken('dependabot[bot]') === true,
},
{
name: 'isSafeSearchToken: string with spaces → false',
test: () => isSafeSearchToken('bad username') === false,
},
{
name: 'isSafeSearchToken: string with bad characters → false',
test: () => isSafeSearchToken('bad<username>') === false,
},
{
name: 'isSafeSearchToken: string with bad characters → false',
test: () => isSafeSearchToken('bad;username') === false,
},
{
name: 'isSafeSearchToken: string with brackets but not bot inside → false',
test: () => isSafeSearchToken('bad[admin]') === false,
},
{
name: 'isSafeSearchToken: string with multiple brackets → false',
test: () => isSafeSearchToken('bad[[admin]') === false,
},
];
// =============================================================================
// TEST RUNNER
// =============================================================================
async function runUnitTests() {
console.log('🔬 UNIT TESTS (api)');
console.log('='.repeat(70));
let passed = 0;
let failed = 0;
for (const test of unitTests) {
try {
const result = await Promise.resolve(test.test());
if (result) {
console.log(`✅ ${test.name}`);
passed++;
} else {
console.log(`❌ ${test.name}`);
failed++;
}
} catch (error) {
console.log(`❌ ${test.name} - Error: ${error.message}`);
failed++;
}
}
console.log('\n' + '-'.repeat(70));
console.log(`Unit Tests: ${passed} passed, ${failed} failed`);
return { total: unitTests.length, passed, failed };
}
runTestSuite('API HELPERS TEST SUITE', [], async () => true, [
{ label: 'Unit Tests', run: runUnitTests },
]);