-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegration_test.ts
More file actions
390 lines (312 loc) · 11.5 KB
/
integration_test.ts
File metadata and controls
390 lines (312 loc) · 11.5 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
/**
* Integration tests for @probitas/client-http using echo-http.
*
* Run with:
* docker compose up -d echo-http
* deno test -A packages/probitas-client-http/integration_test.ts
* docker compose down
*/
import {
assert,
assertEquals,
assertFalse,
assertInstanceOf,
} from "@std/assert";
import { createHttpClient, HttpError, HttpNetworkError } from "./mod.ts";
const ECHO_HTTP_URL = Deno.env.get("ECHO_HTTP_URL") ?? "http://localhost:8080";
async function isEchoHttpAvailable(): Promise<boolean> {
try {
const res = await fetch(`${ECHO_HTTP_URL}/health`, {
signal: AbortSignal.timeout(1000),
});
await res.body?.cancel();
return res.ok;
} catch {
return false;
}
}
Deno.test({
name: "Integration: echo-http",
ignore: !(await isEchoHttpAvailable()),
async fn(t) {
const client = createHttpClient({ url: ECHO_HTTP_URL });
await t.step("GET /get returns request info", async () => {
const res = await client.get("/get", {
query: { foo: "bar", num: 42 },
headers: { "X-Custom-Header": "test-value" },
});
assert(res.processed);
assert(res.ok);
assertEquals(res.status, 200);
assert(res.headers.get("content-type")?.match(/^application\/json/));
const data = res.json as {
args: Record<string, string>;
headers: Record<string, string>;
url: string;
} | null;
assertEquals(data?.args.foo, "bar");
assertEquals(data?.args.num, "42");
assertEquals(data?.headers["X-Custom-Header"], "test-value");
});
await t.step("POST /post with JSON body", async () => {
const payload = { name: "John", email: "john@example.com" };
const res = await client.post("/post", { body: payload });
assert(res.processed);
assert(res.ok);
assertEquals(res.status, 200);
assert(res.headers.get("content-type")?.match(/^application\/json/));
const data = res.json as {
json: typeof payload;
headers: Record<string, string>;
} | null;
assertEquals(data?.json, payload);
assertEquals(data?.headers["Content-Type"], "application/json");
});
await t.step("POST /post with form data", async () => {
const params = new URLSearchParams({
username: "alice",
password: "secret",
});
const res = await client.post("/post", { body: params });
assert(res.ok);
assertEquals(res.status, 200);
const data = res.json as { form: Record<string, string> } | null;
assertEquals(data?.form.username, "alice");
assertEquals(data?.form.password, "secret");
});
await t.step("PUT /put", async () => {
const res = await client.put("/put", { body: { updated: true } });
assert(res.ok);
assertEquals(res.status, 200);
const data = res.json as { json: { updated: boolean } };
assertEquals(data?.json.updated, true);
});
await t.step("PATCH /patch", async () => {
const res = await client.patch("/patch", { body: { patched: "value" } });
assert(res.ok);
assertEquals(res.status, 200);
const data = res.json as { json: { patched: string } };
assertEquals(data?.json.patched, "value");
});
await t.step("DELETE /delete", async () => {
const res = await client.delete("/delete");
assert(res.ok);
assertEquals(res.status, 200);
});
await t.step("GET /status/201 returns custom status", async () => {
const res = await client.request("GET", "/status/201");
assert(res.ok);
assertEquals(res.status, 201);
});
await t.step(
"GET /status/404 throws HttpError with status 404",
async () => {
// Use throwOnError: true to test throwing behavior
const throwingClient = createHttpClient({
url: ECHO_HTTP_URL,
throwOnError: true,
});
try {
await throwingClient.get("/status/404");
throw new Error("Expected HttpError");
} catch (error) {
assertInstanceOf(error, HttpError);
assertEquals(error.status, 404);
}
},
);
await t.step("GET /headers returns request headers", async () => {
const res = await client.get("/headers", {
headers: {
"Accept": "application/json",
},
});
assert(res.ok);
const data = res.json as { headers: Record<string, string> } | null;
// Verify Accept header was sent (echo-http echoes back headers)
assertEquals(data?.headers["Accept"], "application/json");
});
await t.step("GET /delay/1 measures duration", async () => {
const res = await client.get("/delay/1");
assert(res.ok);
// Should take at least 1 second
assertEquals(
res.duration >= 1000,
true,
`Expected duration >= 1000ms, got ${res.duration}ms`,
);
});
await t.step("response body can be read multiple times", async () => {
const res = await client.get("/get");
// Read as text
const text1 = res.text;
const text2 = res.text;
assertEquals(text1, text2);
// Read as JSON
const json1 = res.json;
const json2 = res.json;
assertEquals(json1, json2);
// Body bytes are also available
assertInstanceOf(res.body, Uint8Array);
});
await t.step("uses default headers from config", async () => {
const clientWithHeaders = createHttpClient({
url: ECHO_HTTP_URL,
headers: {
"Authorization": "Bearer token123",
"X-Api-Version": "v1",
},
});
const res = await clientWithHeaders.get("/headers");
const data = res.json as { headers: Record<string, string> } | null;
assertEquals(data?.headers["Authorization"], "Bearer token123");
assertEquals(data?.headers["X-Api-Version"], "v1");
await clientWithHeaders.close();
});
await t.step("request headers override config headers", async () => {
const clientWithHeaders = createHttpClient({
url: ECHO_HTTP_URL,
headers: { "X-Header": "from-config" },
});
const res = await clientWithHeaders.get("/headers", {
headers: { "X-Header": "from-request" },
});
const data = res.json as { headers: Record<string, string> } | null;
assertEquals(data?.headers["X-Header"], "from-request");
await clientWithHeaders.close();
});
await t.step("redirect: follow (default) follows redirects", async () => {
const res = await client.get("/redirect/3");
assert(res.ok);
assertEquals(res.status, 200);
const data = res.json as { redirected: boolean };
assertEquals(data?.redirected, true);
});
await t.step("redirect: manual returns redirect response", async () => {
const res = await client.get("/redirect/3", {
redirect: "manual",
throwOnError: false,
});
// Should return the redirect response without following
assert(res.processed);
assertEquals(res.status, 302);
assertFalse(res.ok);
// Location header should be present
assertEquals(res.headers.has("location"), true);
});
await t.step("redirect: error returns Failure on redirect", async () => {
// When redirect: "error" and throwOnError: false, fetch error is returned as Failure
const res = await client.get("/redirect/1", {
redirect: "error",
throwOnError: false,
});
// Should return Failure (not processed) because fetch itself throws
assert(!res.ok);
assert(!res.processed);
// The underlying error is a TypeError converted to HttpNetworkError
assertInstanceOf(res.error, HttpNetworkError);
});
await t.step("config-level redirect setting", async () => {
const clientManual = createHttpClient({
url: ECHO_HTTP_URL,
redirect: "manual",
throwOnError: false,
});
const res = await clientManual.get("/redirect/1");
assertEquals(res.status, 302);
await clientManual.close();
});
await t.step("request redirect overrides config redirect", async () => {
const clientManual = createHttpClient({
url: ECHO_HTTP_URL,
redirect: "manual",
});
// Override manual with follow
const res = await clientManual.get("/redirect/1", { redirect: "follow" });
assert(res.ok);
assertEquals(res.status, 200);
await clientManual.close();
});
await client.close();
},
});
Deno.test({
name: "Integration: echo-http cookies",
ignore: !(await isEchoHttpAvailable()),
async fn(t) {
await t.step("GET /cookies returns cookies sent by client", async () => {
const client = createHttpClient({
url: ECHO_HTTP_URL,
cookies: { initial: { session: "test123", user: "alice" } },
});
const res = await client.get("/cookies");
assert(res.ok);
const data = res.json as { cookies: Record<string, string> } | null;
assertEquals(data?.cookies.session, "test123");
assertEquals(data?.cookies.user, "alice");
await client.close();
});
await t.step("GET /cookies/set stores cookies from response", async () => {
const client = createHttpClient({
url: ECHO_HTTP_URL,
});
// /cookies/set sets cookies and redirects; use manual redirect to capture cookies
const res = await client.get("/cookies/set", {
query: { flavor: "chocolate", count: "5" },
redirect: "manual",
throwOnError: false,
});
assertEquals(res.status, 302);
// Verify cookies were stored in jar from Set-Cookie header
const cookies = client.getCookies();
assertEquals(cookies.flavor, "chocolate");
assertEquals(cookies.count, "5");
await client.close();
});
await t.step("cookies persist across multiple requests", async () => {
const client = createHttpClient({
url: ECHO_HTTP_URL,
});
// First request sets a cookie (use manual redirect to capture Set-Cookie)
await client.get("/cookies/set", {
query: { auth: "bearer-token" },
redirect: "manual",
throwOnError: false,
});
// Second request should send the cookie back
const res = await client.get("/cookies");
const data = res.json as { cookies: Record<string, string> } | null;
assertEquals(data?.cookies.auth, "bearer-token");
await client.close();
});
await t.step("clearCookies removes all cookies", async () => {
const client = createHttpClient({
url: ECHO_HTTP_URL,
cookies: { initial: { initial: "value" } },
});
// Verify initial cookie is sent
let res = await client.get("/cookies");
let data = res.json as { cookies: Record<string, string> } | null;
assertEquals(data?.cookies.initial, "value");
// Clear cookies
client.clearCookies();
// Verify no cookies are sent
res = await client.get("/cookies");
data = res.json as { cookies: Record<string, string> } | null;
assertEquals(data?.cookies.initial, undefined);
await client.close();
});
await t.step("setCookie manually adds cookies", async () => {
const client = createHttpClient({
url: ECHO_HTTP_URL,
});
// Manually set a cookie
client.setCookie("manual", "cookie-value");
// Verify it's sent
const res = await client.get("/cookies");
const data = res.json as { cookies: Record<string, string> } | null;
assertEquals(data?.cookies.manual, "cookie-value");
await client.close();
});
},
});