-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.mjs
167 lines (155 loc) · 4.84 KB
/
test.mjs
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
import assert from "node:assert";
import { createServer } from "node:http";
import { describe, it } from "node:test";
import { createApiClient } from "./lib/client.mjs";
class DefaultCredentialsManager {
async attach(init, url) {
return { init, url };
}
async isValid() {
return true;
}
}
const credentials = new DefaultCredentialsManager();
const visitor = {
ok: (res) => res.json(),
fail: async (req, res) => {
const error = await res.json();
throw error;
},
};
const unsafe = createApiClient({ credentials, visitor }, false);
const safe = createApiClient({ credentials, visitor }, true);
function tryParse(maybeJson) {
try {
return JSON.parse(maybeJson);
} catch (error) {
return maybeJson;
}
}
const server = createServer((req, res) => {
let url = new URL(req.url, `http://${req.headers.host}`);
let status = url.searchParams.get("status") ?? 200;
let headers;
for (let [name, value] of Object.entries(req.headers)) {
if (name.startsWith("x-") || name.startsWith("content")) {
headers ??= {};
headers[name] = value;
}
}
let buf = [];
req.on("readable", () => {
let chunk;
while (null !== (chunk = req.read())) {
buf.push(chunk.toString("utf-8"));
}
});
req.on("end", () => {
let payload = buf.join("");
let body = {
message: url.searchParams.get("message") ?? "",
headers,
};
if (payload) {
body.body = tryParse(payload);
}
res.writeHead(Number(status), { "Content-Type": "application/json" });
res.end(JSON.stringify(body));
});
});
await new Promise((res) => server.listen(8080, res));
server.on("close", () => process.exit(0));
await describe("api client", { concurrency: false }, async () => {
it("when using unsafe client", async (t) => {
await t.test("returns response for 2xx", async () => {
let hello = await unsafe.get("http://localhost:8080/", {
status: 200,
message: "Hello World!",
});
assert.deepStrictEqual(hello, { message: "Hello World!" });
});
await t.test("throws error when response is not 2xx", async () => {
assert.rejects(
unsafe.get("http://localhost:8080/", {
status: 400,
message: "Bad Request",
})
);
});
});
it("when using safe client", async (t) => {
await t.test("returns no error for 2xx", async () => {
let [res, err] = await safe.get("http://localhost:8080/", {
status: 200,
message: "Hello World!",
});
assert.ifError(err);
assert.deepStrictEqual(res, { message: "Hello World!" });
});
await t.test("returns error when response is not 2xx", async () => {
let [res, err] = await safe.get("http://localhost:8080/", {
status: 400,
message: "Bad Request",
});
assert.ok(err);
assert.ifError(res);
assert.deepStrictEqual(err.cause, { message: "Bad Request" });
});
});
it("when using .call", async (t) => {
await t.test("can pass custom headers", async () => {
let hello = await unsafe.call(
"GET",
"http://localhost:8080/",
{ status: 200, message: "Hello World!" },
null,
{ "x-custom-header": "value" }
);
assert.deepStrictEqual(hello, {
message: "Hello World!",
headers: { "x-custom-header": "value" },
});
});
});
it("when performing POST calls", async (t) => {
await t.test("can handle objects in payload", async () => {
let hello = await unsafe.postBody("http://localhost:8080/", {
payload: "Hello World!",
});
assert.deepStrictEqual(hello?.body, {
payload: "Hello World!",
});
assert.deepStrictEqual(
hello?.headers["content-type"],
"application/json"
);
});
await t.test("can handle arrays in payload", async () => {
let hello = await unsafe.postBody("http://localhost:8080/", [
{ payload: "Hello World!" },
]);
assert.deepStrictEqual(hello?.body, [{ payload: "Hello World!" }]);
assert.deepStrictEqual(
hello?.headers["content-type"],
"application/json"
);
});
await t.test("can handle searchParams in payload", async () => {
let qs = new URLSearchParams();
qs.append("payload", "Hello World");
let hello = await unsafe.postBody("http://localhost:8080/", qs);
assert.deepStrictEqual(hello?.body, "payload=Hello+World");
assert.match(
hello?.headers["content-type"],
/application\/x-www-form-urlencoded/
);
});
await t.test("can handle formData in payload", async () => {
let qs = new FormData();
qs.append("payload", "Hello World");
let hello = await unsafe.postBody("http://localhost:8080/", qs);
assert.match(hello?.headers["content-type"], /multipart\/form-data/);
});
});
});
setTimeout(() => server.emit("close"));