forked from authts/oidc-client-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonService.test.ts
More file actions
408 lines (354 loc) · 14.2 KB
/
Copy pathJsonService.test.ts
File metadata and controls
408 lines (354 loc) · 14.2 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
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
import { Log } from "./utils";
import { ErrorResponse } from "./ErrorResponse";
import { JsonService } from "./JsonService";
import { mocked } from "jest-mock";
describe("JsonService", () => {
let subject: JsonService;
beforeEach(() =>{
Log.logger = console;
Log.level = Log.NONE;
globalThis.fetch = jest.fn();
subject = new JsonService();
});
describe("getJson", () => {
it("should make GET request to url", async () => {
// act
await expect(subject.getJson("http://test")).rejects.toThrow();
// assert
expect(fetch).toBeCalledWith("http://test", {
headers: { Accept: "application/json" },
method: "GET",
});
});
it("should set token as authorization header", async () => {
// act
await expect(subject.getJson("http://test", "token")).rejects.toThrow();
// assert
expect(fetch).toBeCalledWith("http://test", {
headers: { Accept: "application/json", Authorization: "Bearer token" },
method: "GET",
});
});
it("should fulfill promise when http response is 200", async () => {
// arrange
const json = { foo: 1, bar: "test" };
mocked(fetch).mockResolvedValue({
status: 200,
ok: true,
headers: new Headers({
"Content-Type": "application/json",
}),
json: () => Promise.resolve(json),
} as Response);
// act
const result = await subject.getJson("http://test");
// assert
expect(result).toEqual(json);
});
it("should reject promise when http response is 200 and json is not able to parse", async () => {
// arrange
const error = new SyntaxError("Unexpected token a in JSON");
mocked(fetch).mockResolvedValue({
status: 200,
ok: true,
headers: new Headers({
"Content-Type": "application/json",
}),
json: () => Promise.reject(error),
} as Response);
// act
await expect(subject.getJson("http://test"))
// assert
.rejects.toThrow(error);
});
it("should reject promise when http response is not 200", async () => {
// arrange
mocked(fetch).mockResolvedValue({
status: 500,
statusText: "server error",
ok: false,
headers: new Headers(),
json: () => Promise.reject(new SyntaxError()),
} as Response);
// act
await expect(subject.getJson("http://test"))
// assert
.rejects.toThrow(/server error.+500/);
});
it("should reject promise when http response is error", async () => {
// arrange
mocked(fetch).mockRejectedValue({ ok: false });
// act
await expect(subject.getJson("http://test"))
// assert
.rejects.toThrow("Network Error");
});
it("should reject promise when http response content type is not json", async () => {
// arrange
const json = { foo: 1, bar: "test" };
mocked(fetch).mockResolvedValue({
status: 200,
ok: true,
headers: new Headers({
"Content-Type": "text/html",
}),
json: () => Promise.resolve(json),
} as Response);
// act
await expect(subject.getJson("http://test"))
// assert
.rejects.toThrow("Invalid response Content-Type: text/html");
});
it("should accept custom content type in response", async () => {
// arrange
subject = new JsonService(["foo/bar"]);
const json = { foo: 1, bar: "test" };
mocked(fetch).mockResolvedValue({
status: 200,
ok: true,
headers: new Headers({
"Content-Type": "foo/bar",
}),
json: () => Promise.resolve(json),
} as Response);
// act
const result = await subject.getJson("http://test");
// assert
expect(result).toEqual(json);
});
it("should work with custom jwtHandler", async () => {
// arrange
const jwtHandler = jest.fn();
subject = new JsonService([], jwtHandler);
const text = "text";
mocked(fetch).mockResolvedValue({
status: 200,
ok: true,
headers: new Headers({
Accept: "application/json",
"Content-Type": "application/jwt",
}),
text: () => Promise.resolve(text),
} as Response);
// act
await subject.getJson("http://test");
// assert
expect(jwtHandler).toBeCalledWith(text);
});
});
describe("postForm", () => {
it("should make POST request to url", async () => {
// act
await expect(subject.postForm("http://test", new URLSearchParams("a=b"))).rejects.toThrow();
// assert
expect(fetch).toBeCalledWith(
"http://test",
expect.objectContaining({
headers: {
Accept: "application/json",
"Content-Type": "application/x-www-form-urlencoded",
},
method: "POST",
body: new URLSearchParams(),
}),
);
});
it("should set basicAuth as authorization header", async () => {
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy"), "basicAuth")).rejects.toThrow();
// assert
expect(fetch).toBeCalledWith(
"http://test",
expect.objectContaining({
headers: {
Accept: "application/json",
Authorization: "Basic basicAuth",
"Content-Type": "application/x-www-form-urlencoded",
},
method: "POST",
body: new URLSearchParams(),
}),
);
});
it("should set payload as body", async () => {
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy"))).rejects.toThrow();
// assert
const body = new URLSearchParams();
body.set("payload", "dummy");
expect(fetch).toBeCalledWith(
"http://test",
expect.objectContaining({
headers: {
Accept: "application/json",
"Content-Type": "application/x-www-form-urlencoded",
},
method: "POST",
body,
}),
);
});
it("should fulfill promise when http response is 200", async () => {
// arrange
const json = { foo: 1, bar: "test" };
mocked(fetch).mockResolvedValue({
status: 200,
ok: true,
headers: new Headers({
Accept: "application/json",
"Content-Type": "application/json",
}),
text: () => Promise.resolve(JSON.stringify(json)),
} as Response);
// act
const result = await subject.postForm("http://test", new URLSearchParams("payload=dummy"));
// assert
expect(result).toEqual(json);
});
it("should reject promise when http response is error", async () => {
// arrange
mocked(fetch).mockRejectedValue({});
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy")))
// assert
.rejects.toThrow("Network Error");
});
it("should reject promise when http response is 200 and json is not able to parse", async () => {
// arrange
const error = new SyntaxError("Unexpected token a in JSON");
mocked(fetch).mockResolvedValue({
status: 200,
ok: true,
headers: new Headers({
Accept: "application/json",
"Content-Type": "application/json",
}),
text: () => Promise.reject(error),
} as Response);
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy")))
// assert
.rejects.toThrow(error);
});
it("should reject promise when http response is 200 and content type is not json", async () => {
// arrange
const json = { foo: 1, bar: "test" };
mocked(fetch).mockResolvedValue({
status: 200,
ok: true,
headers: new Headers({
Accept: "application/json",
"Content-Type": "text/html",
}),
text: () => Promise.resolve(JSON.stringify(json)),
} as Response);
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy")))
// assert
.rejects.toThrow("Invalid response Content-Type: text/html");
});
it("should reject promise when http response is 400 and json has error field", async () => {
// arrange
const json = { error: "error" };
mocked(fetch).mockResolvedValue({
status: 400,
ok: false,
headers: new Headers({
Accept: "application/json",
"Content-Type": "application/json",
}),
text: () => Promise.resolve(JSON.stringify(json)),
} as Response);
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy")))
// assert
.rejects.toThrow(ErrorResponse);
});
it("should reject promise when http response is 400 and json has no error field", async () => {
// arrange
const json = { foo: 1, bar: "test" };
mocked(fetch).mockResolvedValue({
status: 400,
ok: false,
headers: new Headers({
Accept: "application/json",
"Content-Type": "application/json",
}),
text: () => Promise.resolve(JSON.stringify(json)),
} as Response);
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy")))
// assert
.rejects.toThrow(JSON.stringify(json));
});
it("should reject promise when http response is 400 and json is not able to parse", async () => {
// arrange
mocked(fetch).mockResolvedValue({
status: 400,
statusText: "bad request",
ok: false,
headers: new Headers({
Accept: "application/json",
"Content-Type": "application/json",
}),
text: () => Promise.resolve("not_json_data"),
} as Response);
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy")))
// assert
.rejects.toThrow(/bad request.+400/);
});
it("should reject promise when http response is 400 and content type is not json", async () => {
// arrange
const json = { foo: 1, bar: "test" };
mocked(fetch).mockResolvedValue({
status: 400,
ok: false,
headers: new Headers({
Accept: "application/json",
"Content-Type": "text/html",
}),
text: () => Promise.resolve(JSON.stringify(json)),
} as Response);
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy")))
// assert
.rejects.toThrow("Invalid response Content-Type: text/html");
});
it("should reject promise when http response is not 200", async () => {
// arrange
const json = {};
mocked(fetch).mockResolvedValue({
status: 500,
statusText: "server error",
ok: false,
headers: new Headers(),
text: () => Promise.resolve(JSON.stringify(json)),
} as Response);
// act
await expect(subject.postForm("http://test", new URLSearchParams("payload=dummy")))
// assert
.rejects.toThrow(/server error.+500/);
});
it("should accept custom content type in response", async () => {
// arrange
subject = new JsonService(["foo/bar"]);
const json = { foo: 1, bar: "test" };
mocked(fetch).mockResolvedValue({
status: 200,
ok: true,
headers: new Headers({
Accept: "application/json",
"Content-Type": "foo/bar",
}),
text: () => Promise.resolve(JSON.stringify(json)),
} as Response);
// act
const result = await subject.postForm("http://test", new URLSearchParams("payload=dummy"));
// assert
expect(result).toEqual(json);
});
});
});