-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsdk.test.ts
More file actions
394 lines (296 loc) · 13.8 KB
/
sdk.test.ts
File metadata and controls
394 lines (296 loc) · 13.8 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
import {
HTTPAuthorizationError,
HTTPBadRequestError,
HTTPError,
HTTPForbiddenError,
HTTPInternalServerError,
HTTPNotFoundError,
HTTPTimeoutError,
StrapiInitializationError,
} from '../../src';
import { CollectionTypeManager, SingleTypeManager } from '../../src/content-types';
import { HttpClient, StatusCode } from '../../src/http';
import { Strapi } from '../../src/sdk';
import { StrapiConfigValidator } from '../../src/validators';
import {
MockAuthManager,
MockAuthProvider,
MockHttpClient,
MockStrapiConfigValidator,
MockFlakyURLValidator,
} from './mocks';
import type { HttpClientConfig } from '../../src/http';
import type { StrapiConfig } from '../../src/sdk';
describe('Strapi', () => {
const mockHttpClientFactory = (config: HttpClientConfig) => new MockHttpClient(config);
beforeEach(() => {
jest
.spyOn(MockHttpClient.prototype, 'fetch')
.mockImplementation(() =>
Promise.resolve(
new Response(JSON.stringify({ data: { id: 1 }, meta: {} }), { status: 200 })
)
);
});
afterEach(() => {
jest.restoreAllMocks();
});
describe('Initialization', () => {
it('should initialize with valid config', () => {
// Arrange
const config = {
baseURL: 'https://localhost:1337/api',
auth: { strategy: MockAuthProvider.identifier, options: {} },
} satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const validatorSpy = jest.spyOn(mockValidator, 'validateConfig');
const authSetStrategySpy = jest.spyOn(MockAuthManager.prototype, 'setStrategy');
// Act
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
// Assert
expect(sdk).toBeInstanceOf(Strapi);
expect(validatorSpy).toHaveBeenCalledWith(config);
expect(authSetStrategySpy).toHaveBeenCalledWith(MockAuthProvider.identifier, {});
});
it('should not set the auth strategy if no auth config is provided', () => {
// Arrange
const config = { baseURL: 'https://localhost:1337/api' } satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const authSetStrategySpy = jest.spyOn(MockAuthManager.prototype, 'setStrategy');
// Act
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
// Assert
expect(sdk).toBeInstanceOf(Strapi);
expect(authSetStrategySpy).not.toHaveBeenCalled();
});
it('should throw an error on invalid baseURL', () => {
// Arrange
const config = { baseURL: 'invalid-url' } satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const validateConfigSpy = jest.spyOn(mockValidator, 'validateConfig');
// Act & Assert
expect(() => new Strapi(config, mockValidator)).toThrow(StrapiInitializationError);
expect(validateConfigSpy).toHaveBeenCalledWith(config);
});
it('should fail to create and SDK instance if there is an unexpected error', () => {
// Arrange
let sdk!: Strapi;
const baseURL = 'https://example.com';
const config: StrapiConfig = { baseURL } satisfies StrapiConfig;
const expectedError = new StrapiInitializationError(new Error('Unexpected error'));
const validateSpy = jest.spyOn(MockFlakyURLValidator.prototype, 'validate');
// Act
const instantiateSDK = () => {
sdk = new Strapi(config, new StrapiConfigValidator(new MockFlakyURLValidator()));
};
// Assert
expect(instantiateSDK).toThrow(expectedError);
expect(sdk).toBeUndefined();
expect(validateSpy).toHaveBeenCalledTimes(1);
expect(validateSpy).toHaveBeenCalledWith(baseURL);
});
it('should initialize correctly with the default validator', () => {
// Arrange
const sdk = new Strapi({ baseURL: 'https://localhost:1337/api' });
// Act & Assert
expect(sdk).toBeInstanceOf(Strapi);
});
});
describe('Collection', () => {
it('should return a new CollectionTypeManager instance when given a resource name', () => {
// Arrange
const resource = 'articles';
const config = { baseURL: 'https://localhost:1337/api' } satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
// Act
const collection = sdk.collection(resource);
// Assert
expect(collection).toBeInstanceOf(CollectionTypeManager);
expect(collection).toHaveProperty('_pluralName', resource);
});
});
describe('Single', () => {
it('should return a new SingleTypeManager instance when given a resource name', () => {
// Arrange
const resource = 'homepage';
const config = { baseURL: 'https://localhost:1337/api' } satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
// Act
const single = sdk.single(resource);
// Assert
expect(single).toBeInstanceOf(SingleTypeManager);
expect(single).toHaveProperty('_singularName', resource);
});
});
describe('Custom Interceptors', () => {
describe('HTTP', () => {
it('fetch should add an application/json Content-Type header to each request', async () => {
// Arrange
const path = '/homepage';
const config = { baseURL: 'https://localhost:1337/api' } satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
const fetchSpy = jest.spyOn(MockHttpClient.prototype, 'fetch');
// Act
await sdk.fetch(path);
const headers = fetchSpy.mock.lastCall?.[1]?.headers;
// Assert
expect(headers).toBeDefined();
expect(headers).toBeInstanceOf(Headers);
expect((headers as Headers).get('Content-Type')).toBe('application/json');
});
it('should not set the application/json Content-Type header if it has been manually set', async () => {
// Arrange
const path = '/upload';
const contentType = 'multipart/form-data';
const config = { baseURL: 'https://localhost:1337/api' } satisfies StrapiConfig;
const init = {
method: 'POST',
headers: { 'Content-Type': contentType },
} satisfies RequestInit;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
const fetchSpy = jest.spyOn(MockHttpClient.prototype, 'fetch');
// Act
await sdk.fetch(path, init);
const headers = fetchSpy.mock.lastCall?.[1]?.headers;
// Assert
expect(headers).toBeDefined();
expect(headers).toBeInstanceOf(Headers);
expect((headers as Headers).get('Content-Type')).toBe(contentType);
});
it.each([
['Bad Request', StatusCode.BAD_REQUEST, HTTPBadRequestError],
['Unauthorized', StatusCode.UNAUTHORIZED, HTTPAuthorizationError],
['Forbidden', StatusCode.FORBIDDEN, HTTPForbiddenError],
['Not Found', StatusCode.NOT_FOUND, HTTPNotFoundError],
['Timeout', StatusCode.TIMEOUT, HTTPTimeoutError],
['Internal Server', StatusCode.INTERNAL_SERVER_ERROR, HTTPInternalServerError],
['Unknown', 504, HTTPError],
])('should throw an HTTP exception on %s error', async (_name, status, error) => {
// Arrange
const path = '/homepage';
const config = { baseURL: 'https://localhost:1337/api' } satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
jest
.spyOn(MockHttpClient.prototype, 'fetch')
// Simulate an error in the http client low-level fetch
.mockImplementationOnce(() => Promise.resolve(new Response(null, { status })));
// Act & Assert
await expect(sdk.fetch(path)).rejects.toThrow(error);
});
});
describe('Auth', () => {
it('should ensure the user is pre-authenticated before a fetch is executed', async () => {
// Arrange
const config = {
baseURL: 'https://localhost:1337/api',
auth: { strategy: MockAuthProvider.identifier },
} satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const authenticateSpy = jest.spyOn(MockAuthManager.prototype, 'authenticate');
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
// Act
await sdk.fetch('/');
// Assert
expect(authenticateSpy).toHaveBeenCalledWith(expect.any(HttpClient));
});
it('should authenticates outgoing HTTP requests by injecting authentication-specific headers', async () => {
// Arrange
const config = {
baseURL: 'https://localhost:1337/api',
auth: { strategy: MockAuthProvider.identifier },
} satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const authenticateRequestSpy = jest.spyOn(MockAuthManager.prototype, 'authenticateRequest');
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
// Act
await sdk.fetch('/');
// Assert
expect(authenticateRequestSpy).toHaveBeenCalledWith(expect.any(Request));
const { headers } = authenticateRequestSpy.mock.lastCall?.at(0) ?? {};
expect(headers).toBeDefined();
expect(headers).toBeInstanceOf(Headers);
expect((headers as Headers).get('Authorization')).toBe('Bearer <token>');
});
it(`shouldn't authenticates outgoing HTTP requests if no auth strategy is set`, async () => {
// Arrange
const config = { baseURL: 'https://localhost:1337/api' } satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const authenticateRequestSpy = jest.spyOn(MockAuthManager.prototype, 'authenticateRequest');
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
// Act
await sdk.fetch('/');
// Assert
expect(authenticateRequestSpy).toHaveBeenCalledWith(expect.any(Request));
const { headers } = authenticateRequestSpy.mock.lastCall?.at(0) ?? {};
expect(headers).toBeDefined();
expect(headers).toBeInstanceOf(Headers);
expect((headers as Headers).get('Authorization')).toBeNull();
});
it('fetch should handle 401 unauthorized responses', async () => {
// Arrange
const config = {
baseURL: 'https://localhost:1337/api',
auth: { strategy: MockAuthProvider.identifier },
} satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
const spies = {
authenticate: jest.spyOn(MockAuthManager.prototype, 'authenticate'),
authenticateRequest: jest.spyOn(MockAuthManager.prototype, 'authenticateRequest'),
handleUnauthorizedError: jest.spyOn(MockAuthManager.prototype, 'handleUnauthorizedError'),
};
jest
.spyOn(MockHttpClient.prototype, 'fetch')
// Simulate an 'Unauthorized' error in the http client low-level fetch
.mockImplementation(() => Promise.resolve(new Response('Unauthorized', { status: 401 })));
// Act & Assert
await expect(sdk.fetch('/')).rejects.toThrow(HTTPAuthorizationError);
expect(spies.authenticate).toHaveBeenCalledWith(expect.any(HttpClient));
expect(spies.authenticateRequest).toHaveBeenCalledWith(expect.any(Request));
expect(spies.handleUnauthorizedError).toHaveBeenCalled();
// isAuthenticated should have been set to false by AuthManager.handleUnauthorizedError
expect(mockAuthManager.isAuthenticated).toBe(false);
});
});
});
it('should fetch data correctly with fetch method', async () => {
// Arrange
const config = { baseURL: 'https://localhost:1337/api' } satisfies StrapiConfig;
const requestSpy = jest.spyOn(MockHttpClient.prototype, 'request');
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
// Act
const response = await sdk.fetch('/data');
// Assert
expect(requestSpy).toHaveBeenCalledWith('/data', undefined);
await expect(response.json()).resolves.toEqual({ data: { id: 1 }, meta: {} });
});
it('should retrieve baseURL correctly from config', () => {
// Arrange
const config = { baseURL: 'https://localhost:1337/api' } satisfies StrapiConfig;
const mockValidator = new MockStrapiConfigValidator();
const mockAuthManager = new MockAuthManager();
const sdk = new Strapi(config, mockValidator, mockAuthManager, mockHttpClientFactory);
// Act
const { baseURL } = sdk;
// Assert
expect(baseURL).toBe(config.baseURL);
});
});