forked from obytes/react-native-template-obytes
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinterceptors.test.ts
More file actions
138 lines (110 loc) · 3.32 KB
/
interceptors.test.ts
File metadata and controls
138 lines (110 loc) · 3.32 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
import type { AxiosResponse, InternalAxiosRequestConfig } from 'axios';
import { AxiosError, AxiosHeaders } from 'axios';
import interceptors from '@/api/common/interceptors';
import { client } from '../../../src/api/common/client';
const testRequestInterceptors = () => {
describe('request interceptors', () => {
describe('when the request has data', () => {
const restConfig = {
baseURL: 'http://localhost:3000',
url: '/test',
headers: new AxiosHeaders({
'Content-Type': 'application/json',
}),
};
const config: InternalAxiosRequestConfig = {
data: {
fooBar: 'foo',
barBaz: 'bar',
},
...restConfig,
};
let interceptedConfig: InternalAxiosRequestConfig;
beforeEach(async () => {
const { fulfilled } = client.interceptors.request.handlers[0];
if (!fulfilled) {
return;
}
interceptedConfig = await fulfilled(config);
});
it('should convert the data to snake_case', () => {
expect(interceptedConfig.data).toEqual({
foo_bar: 'foo',
bar_baz: 'bar',
});
});
it('should not modify the rest of the config', () => {
expect(interceptedConfig).toMatchObject(config);
});
});
describe('when the request has no data', () => {
const config: InternalAxiosRequestConfig = {
baseURL: 'http://localhost:3000',
url: '/test',
headers: new AxiosHeaders({
'Content-Type': 'application/json',
}),
};
let interceptedConfig: InternalAxiosRequestConfig;
beforeEach(async () => {
const { fulfilled } = client.interceptors.request.handlers[0];
if (!fulfilled) {
return;
}
interceptedConfig = await fulfilled(config);
});
it('should not modify the config', () => {
expect(interceptedConfig).toEqual(config);
});
});
});
};
const testResponseInterceptors = () => {
describe('response interceptors', () => {
describe('when the response is successful', () => {
const response: AxiosResponse = {
status: 200,
statusText: 'OK',
headers: {},
config: {
headers: new AxiosHeaders({}),
},
data: {
foo_bar: 'foo',
bar_baz: 'bar',
},
};
let interceptedResponse: AxiosResponse;
beforeEach(async () => {
const { fulfilled } = client.interceptors.response.handlers[0];
if (!fulfilled) {
return;
}
interceptedResponse = await fulfilled(response);
});
it('camelizes the response data', async () => {
expect(interceptedResponse.data).toEqual({
fooBar: 'foo',
barBaz: 'bar',
});
});
});
describe('when the response is an error', () => {
const axiosError = new AxiosError('API error');
it('throws the same error', async () => {
const { rejected } = client.interceptors.response.handlers[0];
if (!rejected) {
return;
}
await expect(rejected(axiosError)).rejects.toEqual(axiosError);
});
});
});
};
describe('interceptors', () => {
beforeAll(() => {
interceptors();
});
testRequestInterceptors();
testResponseInterceptors();
});