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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIPromise } from '@opencode-ai/sdk/core/api-promise';
import util from 'node:util';
import Opencode from '@opencode-ai/sdk';
import { APIUserAbortError } from '@opencode-ai/sdk';
const defaultFetch = fetch;
describe('instantiate client', () => {
const env = process.env;
beforeEach(() => {
jest.resetModules();
process.env = { ...env };
});
afterEach(() => {
process.env = env;
});
describe('defaultHeaders', () => {
const client = new Opencode({
baseURL: 'http://localhost:5000/',
defaultHeaders: { 'X-My-Default-Header': '2' },
});
test('they are used in the request', async () => {
const { req } = await client.buildRequest({ path: '/foo', method: 'post' });
expect(req.headers.get('x-my-default-header')).toEqual('2');
});
test('can ignore `undefined` and leave the default', async () => {
const { req } = await client.buildRequest({
path: '/foo',
method: 'post',
headers: { 'X-My-Default-Header': undefined },
});
expect(req.headers.get('x-my-default-header')).toEqual('2');
});
test('can be removed with `null`', async () => {
const { req } = await client.buildRequest({
path: '/foo',
method: 'post',
headers: { 'X-My-Default-Header': null },
});
expect(req.headers.has('x-my-default-header')).toBe(false);
});
});
describe('logging', () => {
const env = process.env;
beforeEach(() => {
process.env = { ...env };
process.env['OPENCODE_LOG'] = undefined;
});
afterEach(() => {
process.env = env;
});
const forceAPIResponseForClient = async (client: Opencode) => {
await new APIPromise(
client,
Promise.resolve({
response: new Response(),
controller: new AbortController(),
requestLogID: 'log_000000',
retryOfRequestLogID: undefined,
startTime: Date.now(),
options: {
method: 'get',
path: '/',
},
}),
);
};
test('debug logs when log level is debug', async () => {
const debugMock = jest.fn();
const logger = {
debug: debugMock,
info: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
};
const client = new Opencode({ logger: logger, logLevel: 'debug' });
await forceAPIResponseForClient(client);
expect(debugMock).toHaveBeenCalled();
});
test('default logLevel is warn', async () => {
const client = new Opencode({});
expect(client.logLevel).toBe('warn');
});
test('debug logs are skipped when log level is info', async () => {
const debugMock = jest.fn();
const logger = {
debug: debugMock,
info: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
};
const client = new Opencode({ logger: logger, logLevel: 'info' });
await forceAPIResponseForClient(client);
expect(debugMock).not.toHaveBeenCalled();
});
test('debug logs happen with debug env var', async () => {
const debugMock = jest.fn();
const logger = {
debug: debugMock,
info: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
};
process.env['OPENCODE_LOG'] = 'debug';
const client = new Opencode({ logger: logger });
expect(client.logLevel).toBe('debug');
await forceAPIResponseForClient(client);
expect(debugMock).toHaveBeenCalled();
});
test('warn when env var level is invalid', async () => {
const warnMock = jest.fn();
const logger = {
debug: jest.fn(),
info: jest.fn(),
warn: warnMock,
error: jest.fn(),
};
process.env['OPENCODE_LOG'] = 'not a log level';
const client = new Opencode({ logger: logger });
expect(client.logLevel).toBe('warn');
expect(warnMock).toHaveBeenCalledWith(
'process.env[\'OPENCODE_LOG\'] was set to "not a log level", expected one of ["off","error","warn","info","debug"]',
);
});
test('client log level overrides env var', async () => {
const debugMock = jest.fn();
const logger = {
debug: debugMock,
info: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
};
process.env['OPENCODE_LOG'] = 'debug';
const client = new Opencode({ logger: logger, logLevel: 'off' });
await forceAPIResponseForClient(client);
expect(debugMock).not.toHaveBeenCalled();
});
test('no warning logged for invalid env var level + valid client level', async () => {
const warnMock = jest.fn();
const logger = {
debug: jest.fn(),
info: jest.fn(),
warn: warnMock,
error: jest.fn(),
};
process.env['OPENCODE_LOG'] = 'not a log level';
const client = new Opencode({ logger: logger, logLevel: 'debug' });
expect(client.logLevel).toBe('debug');
expect(warnMock).not.toHaveBeenCalled();
});
});
describe('defaultQuery', () => {
test('with null query params given', () => {
const client = new Opencode({ baseURL: 'http://localhost:5000/', defaultQuery: { apiVersion: 'foo' } });
expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/foo?apiVersion=foo');
});
test('multiple default query params', () => {
const client = new Opencode({
baseURL: 'http://localhost:5000/',
defaultQuery: { apiVersion: 'foo', hello: 'world' },
});
expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/foo?apiVersion=foo&hello=world');
});
test('overriding with `undefined`', () => {
const client = new Opencode({ baseURL: 'http://localhost:5000/', defaultQuery: { hello: 'world' } });
expect(client.buildURL('/foo', { hello: undefined })).toEqual('http://localhost:5000/foo');
});
});
test('custom fetch', async () => {
const client = new Opencode({
baseURL: 'http://localhost:5000/',
fetch: (url) => {
return Promise.resolve(
new Response(JSON.stringify({ url, custom: true }), {
headers: { 'Content-Type': 'application/json' },
}),
);
},
});
const response = await client.get('/foo');
expect(response).toEqual({ url: 'http://localhost:5000/foo', custom: true });
});
test('explicit global fetch', async () => {
// make sure the global fetch type is assignable to our Fetch type
const client = new Opencode({ baseURL: 'http://localhost:5000/', fetch: defaultFetch });
});
test('custom signal', async () => {
const client = new Opencode({
baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010',
fetch: (...args) => {
return new Promise((resolve, reject) =>
setTimeout(
() =>
defaultFetch(...args)
.then(resolve)
.catch(reject),
300,
),
);
},
});
const controller = new AbortController();
setTimeout(() => controller.abort(), 200);
const spy = jest.spyOn(client, 'request');
await expect(client.get('/foo', { signal: controller.signal })).rejects.toThrowError(APIUserAbortError);
expect(spy).toHaveBeenCalledTimes(1);
});
test('normalized method', async () => {
let capturedRequest: RequestInit | undefined;
const testFetch = async (url: string | URL | Request, init: RequestInit = {}): Promise<Response> => {
capturedRequest = init;
return new Response(JSON.stringify({}), { headers: { 'Content-Type': 'application/json' } });
};
const client = new Opencode({ baseURL: 'http://localhost:5000/', fetch: testFetch });
await client.patch('/foo');
expect(capturedRequest?.method).toEqual('PATCH');
});
describe('baseUrl', () => {
test('trailing slash', () => {
const client = new Opencode({ baseURL: 'http://localhost:5000/custom/path/' });
expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/custom/path/foo');
});
test('no trailing slash', () => {
const client = new Opencode({ baseURL: 'http://localhost:5000/custom/path' });
expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/custom/path/foo');
});
afterEach(() => {
process.env['OPENCODE_BASE_URL'] = undefined;
});
test('explicit option', () => {
const client = new Opencode({ baseURL: 'https://example.com' });
expect(client.baseURL).toEqual('https://example.com');
});
test('env variable', () => {
process.env['OPENCODE_BASE_URL'] = 'https://example.com/from_env';
const client = new Opencode({});
expect(client.baseURL).toEqual('https://example.com/from_env');
});
test('empty env variable', () => {
process.env['OPENCODE_BASE_URL'] = ''; // empty
const client = new Opencode({});
expect(client.baseURL).toEqual('http://localhost:54321');
});
test('blank env variable', () => {
process.env['OPENCODE_BASE_URL'] = ' '; // blank
const client = new Opencode({});
expect(client.baseURL).toEqual('http://localhost:54321');
});
test('in request options', () => {
const client = new Opencode({});
expect(client.buildURL('/foo', null, 'http://localhost:5000/option')).toEqual(
'http://localhost:5000/option/foo',
);
});
test('in request options overridden by client options', () => {
const client = new Opencode({ baseURL: 'http://localhost:5000/client' });
expect(client.buildURL('/foo', null, 'http://localhost:5000/option')).toEqual(
'http://localhost:5000/client/foo',
);
});
test('in request options overridden by env variable', () => {
process.env['OPENCODE_BASE_URL'] = 'http://localhost:5000/env';
const client = new Opencode({});
expect(client.buildURL('/foo', null, 'http://localhost:5000/option')).toEqual(
'http://localhost:5000/env/foo',
);
});
});
test('maxRetries option is correctly set', () => {
const client = new Opencode({ maxRetries: 4 });
expect(client.maxRetries).toEqual(4);
// default
const client2 = new Opencode({});
expect(client2.maxRetries).toEqual(2);
});
describe('withOptions', () => {
test('creates a new client with overridden options', async () => {
const client = new Opencode({ baseURL: 'http://localhost:5000/', maxRetries: 3 });
const newClient = client.withOptions({
maxRetries: 5,
baseURL: 'http://localhost:5001/',
});
// Verify the new client has updated options
expect(newClient.maxRetries).toEqual(5);
expect(newClient.baseURL).toEqual('http://localhost:5001/');
// Verify the original client is unchanged
expect(client.maxRetries).toEqual(3);
expect(client.baseURL).toEqual('http://localhost:5000/');
// Verify it's a different instance
expect(newClient).not.toBe(client);
expect(newClient.constructor).toBe(client.constructor);
});
test('inherits options from the parent client', async () => {
const client = new Opencode({
baseURL: 'http://localhost:5000/',
defaultHeaders: { 'X-Test-Header': 'test-value' },
defaultQuery: { 'test-param': 'test-value' },
});
const newClient = client.withOptions({
baseURL: 'http://localhost:5001/',
});
// Test inherited options remain the same
expect(newClient.buildURL('/foo', null)).toEqual('http://localhost:5001/foo?test-param=test-value');
const { req } = await newClient.buildRequest({ path: '/foo', method: 'get' });
expect(req.headers.get('x-test-header')).toEqual('test-value');
});
test('respects runtime property changes when creating new client', () => {
const client = new Opencode({ baseURL: 'http://localhost:5000/', timeout: 1000 });
// Modify the client properties directly after creation
client.baseURL = 'http://localhost:6000/';
client.timeout = 2000;
// Create a new client with withOptions
const newClient = client.withOptions({
maxRetries: 10,
});
// Verify the new client uses the updated properties, not the original ones
expect(newClient.baseURL).toEqual('http://localhost:6000/');
expect(newClient.timeout).toEqual(2000);
expect(newClient.maxRetries).toEqual(10);
// Original client should still have its modified properties
expect(client.baseURL).toEqual('http://localhost:6000/');
expect(client.timeout).toEqual(2000);
expect(client.maxRetries).not.toEqual(10);
// Verify URL building uses the updated baseURL
expect(newClient.buildURL('/bar', null)).toEqual('http://localhost:6000/bar');
});
});
});
describe('request building', () => {
const client = new Opencode({});
describe('custom headers', () => {
test('handles undefined', async () => {
const { req } = await client.buildRequest({
path: '/foo',
method: 'post',
body: { value: 'hello' },
headers: { 'X-Foo': 'baz', 'x-foo': 'bar', 'x-Foo': undefined, 'x-baz': 'bam', 'X-Baz': null },
});
expect(req.headers.get('x-foo')).toEqual('bar');
expect(req.headers.get('x-Foo')).toEqual('bar');
expect(req.headers.get('X-Foo')).toEqual('bar');
expect(req.headers.get('x-baz')).toEqual(null);
});
});
});
describe('default encoder', () => {
const client = new Opencode({});
class Serializable {
toJSON() {
return { $type: 'Serializable' };
}
}
class Collection<T> {
#things: T[];
constructor(things: T[]) {
this.#things = Array.from(things);
}
toJSON() {
return Array.from(this.#things);
}
[Symbol.iterator]() {
return this.#things[Symbol.iterator];
}
}
for (const jsonValue of [{}, [], { __proto__: null }, new Serializable(), new Collection(['item'])]) {
test(`serializes ${util.inspect(jsonValue)} as json`, async () => {
const { req } = await client.buildRequest({
path: '/foo',
method: 'post',
body: jsonValue,
});
expect(req.headers).toBeInstanceOf(Headers);
expect(req.headers.get('content-type')).toEqual('application/json');
expect(req.body).toBe(JSON.stringify(jsonValue));
});
}
const encoder = new TextEncoder();
const asyncIterable = (async function* () {
yield encoder.encode('a\n');
yield encoder.encode('b\n');
yield encoder.encode('c\n');
})();
for (const streamValue of [
[encoder.encode('a\nb\nc\n')][Symbol.iterator](),
new Response('a\nb\nc\n').body,
asyncIterable,
]) {
test(`converts ${util.inspect(streamValue)} to ReadableStream`, async () => {
const { req } = await client.buildRequest({
path: '/foo',
method: 'post',
body: streamValue,
});
expect(req.headers).toBeInstanceOf(Headers);
expect(req.headers.get('content-type')).toEqual(null);
expect(req.body).toBeInstanceOf(ReadableStream);
expect(await new Response(req.body).text()).toBe('a\nb\nc\n');
});
}
test(`can set content-type for ReadableStream`, async () => {
const { req } = await client.buildRequest({
path: '/foo',
method: 'post',
body: new Response('a\nb\nc\n').body,
headers: { 'Content-Type': 'text/plain' },
});
expect(req.headers).toBeInstanceOf(Headers);
expect(req.headers.get('content-type')).toEqual('text/plain');
expect(req.body).toBeInstanceOf(ReadableStream);
expect(await new Response(req.body).text()).toBe('a\nb\nc\n');
});
});
describe('retries', () => {
test('retry on timeout', async () => {
let count = 0;
const testFetch = async (
url: string | URL | Request,
{ signal }: RequestInit = {},
): Promise<Response> => {
if (count++ === 0) {
return new Promise(
(resolve, reject) => signal?.addEventListener('abort', () => reject(new Error('timed out'))),
);
}
return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } });
};
const client = new Opencode({ timeout: 10, fetch: testFetch });
expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 });
expect(count).toEqual(2);
expect(
await client
.request({ path: '/foo', method: 'get' })
.asResponse()
.then((r) => r.text()),
).toEqual(JSON.stringify({ a: 1 }));
expect(count).toEqual(3);
});
test('retry count header', async () => {
let count = 0;
let capturedRequest: RequestInit | undefined;
const testFetch = async (url: string | URL | Request, init: RequestInit = {}): Promise<Response> => {
count++;
if (count <= 2) {
return new Response(undefined, {
status: 429,
headers: {
'Retry-After': '0.1',
},
});
}
capturedRequest = init;
return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } });
};
const client = new Opencode({ fetch: testFetch, maxRetries: 4 });
expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 });
expect((capturedRequest!.headers as Headers).get('x-stainless-retry-count')).toEqual('2');
expect(count).toEqual(3);
});
test('omit retry count header', async () => {
let count = 0;
let capturedRequest: RequestInit | undefined;
const testFetch = async (url: string | URL | Request, init: RequestInit = {}): Promise<Response> => {
count++;
if (count <= 2) {
return new Response(undefined, {
status: 429,
headers: {
'Retry-After': '0.1',
},
});
}
capturedRequest = init;
return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } });
};
const client = new Opencode({ fetch: testFetch, maxRetries: 4 });
expect(
await client.request({
path: '/foo',
method: 'get',
headers: { 'X-Stainless-Retry-Count': null },
}),
).toEqual({ a: 1 });
expect((capturedRequest!.headers as Headers).has('x-stainless-retry-count')).toBe(false);
});
test('omit retry count header by default', async () => {
let count = 0;
let capturedRequest: RequestInit | undefined;
const testFetch = async (url: string | URL | Request, init: RequestInit = {}): Promise<Response> => {
count++;
if (count <= 2) {
return new Response(undefined, {
status: 429,
headers: {
'Retry-After': '0.1',
},
});
}
capturedRequest = init;
return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } });
};
const client = new Opencode({
fetch: testFetch,
maxRetries: 4,
defaultHeaders: { 'X-Stainless-Retry-Count': null },
});
expect(
await client.request({
path: '/foo',
method: 'get',
}),
).toEqual({ a: 1 });
expect(capturedRequest!.headers as Headers).not.toHaveProperty('x-stainless-retry-count');
});
test('overwrite retry count header', async () => {
let count = 0;
let capturedRequest: RequestInit | undefined;
const testFetch = async (url: string | URL | Request, init: RequestInit = {}): Promise<Response> => {
count++;
if (count <= 2) {
return new Response(undefined, {
status: 429,
headers: {
'Retry-After': '0.1',
},
});
}
capturedRequest = init;
return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } });
};
const client = new Opencode({ fetch: testFetch, maxRetries: 4 });
expect(
await client.request({
path: '/foo',
method: 'get',
headers: { 'X-Stainless-Retry-Count': '42' },
}),
).toEqual({ a: 1 });
expect((capturedRequest!.headers as Headers).get('x-stainless-retry-count')).toEqual('42');
});
test('retry on 429 with retry-after', async () => {
let count = 0;
const testFetch = async (
url: string | URL | Request,
{ signal }: RequestInit = {},
): Promise<Response> => {
if (count++ === 0) {
return new Response(undefined, {
status: 429,
headers: {
'Retry-After': '0.1',
},
});
}
return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } });
};
const client = new Opencode({ fetch: testFetch });
expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 });
expect(count).toEqual(2);
expect(
await client
.request({ path: '/foo', method: 'get' })
.asResponse()
.then((r) => r.text()),
).toEqual(JSON.stringify({ a: 1 }));
expect(count).toEqual(3);
});
test('retry on 429 with retry-after-ms', async () => {
let count = 0;
const testFetch = async (
url: string | URL | Request,
{ signal }: RequestInit = {},
): Promise<Response> => {
if (count++ === 0) {
return new Response(undefined, {
status: 429,
headers: {
'Retry-After-Ms': '10',
},
});
}
return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } });
};
const client = new Opencode({ fetch: testFetch });
expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 });
expect(count).toEqual(2);
expect(
await client
.request({ path: '/foo', method: 'get' })
.asResponse()
.then((r) => r.text()),
).toEqual(JSON.stringify({ a: 1 }));
expect(count).toEqual(3);
});
});
|