-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinvocations.test.ts
More file actions
134 lines (122 loc) · 5.1 KB
/
invocations.test.ts
File metadata and controls
134 lines (122 loc) · 5.1 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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import Kernel from '@onkernel/sdk';
const client = new Kernel({
apiKey: 'My API Key',
baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010',
});
describe('resource invocations', () => {
// Prism tests are disabled
test.skip('create: only required params', async () => {
const responsePromise = client.invocations.create({
action_name: 'analyze',
app_name: 'my-app',
version: '1.0.0',
});
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
expect(response).not.toBeInstanceOf(Response);
const dataAndResponse = await responsePromise.withResponse();
expect(dataAndResponse.data).toBe(response);
expect(dataAndResponse.response).toBe(rawResponse);
});
// Prism tests are disabled
test.skip('create: required and optional params', async () => {
const response = await client.invocations.create({
action_name: 'analyze',
app_name: 'my-app',
version: '1.0.0',
async: true,
payload: '{"data":"example input"}',
});
});
// Prism tests are disabled
test.skip('retrieve', async () => {
const responsePromise = client.invocations.retrieve('rr33xuugxj9h0bkf1rdt2bet');
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
expect(response).not.toBeInstanceOf(Response);
const dataAndResponse = await responsePromise.withResponse();
expect(dataAndResponse.data).toBe(response);
expect(dataAndResponse.response).toBe(rawResponse);
});
// Prism tests are disabled
test.skip('update: only required params', async () => {
const responsePromise = client.invocations.update('id', { status: 'succeeded' });
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
expect(response).not.toBeInstanceOf(Response);
const dataAndResponse = await responsePromise.withResponse();
expect(dataAndResponse.data).toBe(response);
expect(dataAndResponse.response).toBe(rawResponse);
});
// Prism tests are disabled
test.skip('update: required and optional params', async () => {
const response = await client.invocations.update('id', { status: 'succeeded', output: 'output' });
});
// Prism tests are disabled
test.skip('list', async () => {
const responsePromise = client.invocations.list();
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
expect(response).not.toBeInstanceOf(Response);
const dataAndResponse = await responsePromise.withResponse();
expect(dataAndResponse.data).toBe(response);
expect(dataAndResponse.response).toBe(rawResponse);
});
// Prism tests are disabled
test.skip('list: request options and params are passed correctly', async () => {
// ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
await expect(
client.invocations.list(
{
action_name: 'action_name',
app_name: 'app_name',
deployment_id: 'deployment_id',
limit: 1,
offset: 0,
since: '2025-06-20T12:00:00Z',
status: 'queued',
version: 'version',
},
{ path: '/_stainless_unknown_path' },
),
).rejects.toThrow(Kernel.NotFoundError);
});
// Prism tests are disabled
test.skip('deleteBrowsers', async () => {
const responsePromise = client.invocations.deleteBrowsers('id');
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
expect(response).not.toBeInstanceOf(Response);
const dataAndResponse = await responsePromise.withResponse();
expect(dataAndResponse.data).toBe(response);
expect(dataAndResponse.response).toBe(rawResponse);
});
// Prism doesn't support text/event-stream responses
test.skip('follow', async () => {
const responsePromise = client.invocations.follow('id');
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
expect(response).not.toBeInstanceOf(Response);
const dataAndResponse = await responsePromise.withResponse();
expect(dataAndResponse.data).toBe(response);
expect(dataAndResponse.response).toBe(rawResponse);
});
// Prism doesn't support text/event-stream responses
test.skip('follow: request options and params are passed correctly', async () => {
// ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
await expect(
client.invocations.follow(
'id',
{ since: '2025-06-20T12:00:00Z' },
{ path: '/_stainless_unknown_path' },
),
).rejects.toThrow(Kernel.NotFoundError);
});
});