-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
275 lines (262 loc) · 6.95 KB
/
index.js
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
'use strict'
const should = require('should')
const {
controllerWithVersioning,
withVersioning,
setVersionChain,
getVersionNumber,
isVersionActive,
urlMiddleware,
headerMiddleware,
setSupportedVersions,
getSupportedVersions
} = require('../src')
const emptyFn = () => {}
describe('Versioning', () => {
before(() => {
setSupportedVersions('v1', 'v2')
})
describe('setSupportedVersions', () => {
it('should be defined', () => {
should.exist(setSupportedVersions)
})
it('should throw on bad parameters', () => {
should.throws(() => setSupportedVersions(null))
should.throws(() => setSupportedVersions(null, null))
should.throws(() => setSupportedVersions('', 'v2'))
should.throws(() => setSupportedVersions('v1', ''))
})
})
describe('getSupportedVersions', () => {
it('should be defined', () => {
should.exist(getSupportedVersions)
})
it('should get versions range', () => {
setSupportedVersions('v4', 'v5')
getSupportedVersions().should.deepEqual({
from: 'v4',
to: 'v5'
})
})
})
describe('controllerWithVersioning', () => {
const latestController = {
test: () => 'v3'
}
const controllers = {
v1: {
test: () => 'v1'
},
v2: {
test: () => 'v2'
}
}
const controller = controllerWithVersioning(latestController, controllers)
it('should be defined', () => {
should.exist(controllerWithVersioning)
})
it('should throw on bad parameters', () => {
should.throws(() => controllerWithVersioning(null))
})
it('should return passed controller', () => {
controllerWithVersioning(latestController).should.deepEqual(latestController)
})
it('should decorate passed object and invoke latest version ', () => {
controller.test().should.equal('v3')
})
it('should invoke function version from res.locals.apiVersion', () => {
controller.test(null, {locals: {apiVersion: 'v1'}}).should.equal('v1')
controller.test(null, {locals: {apiVersion: 'v2'}}).should.equal('v2')
})
it('should failback to latest api version if desired is not available', () => {
const controller = controllerWithVersioning(latestController, controllers)
controller.test(null, {locals: {apiVersion: 'v4'}}).should.equal('v3')
})
})
describe('withVersioning', () => {
it('should be defined', () => {
should.exist(withVersioning)
})
it('should throw on bad parameters passed', () => {
should.throws(() => withVersioning(null))
})
it('should iterate passed routes array and set header and url', () => {
let routes = {}
const app = {
use: (name, func) => {
routes[name] = func
},
params: () => {}
}
withVersioning({
routes: [{
test: emptyFn
}],
base: '/api',
url: 'version',
header: 'X-Api-Version',
lastSupportedVersion: 'v1',
latestVersion: 'v2',
app})
Object.keys(routes).should.deepEqual([
'/api/test/','/api/:version/test/'
])
})
})
describe('setVersionChain', () => {
it('should be defined', () => {
should.exist(setVersionChain)
})
it('should throw on bad parameters passed', () => {
should.throws(() => setVersionChain(null))
should.throws(() => setVersionChain(null, {}))
should.throws(() => setVersionChain({}, null))
})
it('should set prototype chain', () => {
const v1 = {
test: 'testV1'
}
const v2 = {
test: 'testV2',
}
const latest = {
test: 'testV3',
notExtended: 'notExtendedV1'
}
setVersionChain(latest, {
v1,
v2
})
Object.getPrototypeOf(v1).should.deepEqual(v2)
Object.getPrototypeOf(v2).should.deepEqual(latest)
})
})
describe('getVersionNumber', () => {
it('should be defined', () => {
should.exist(getVersionNumber)
})
it('should throw on bad parameters passed', () => {
should.throws(() => getVersionNumber(null))
})
it('should return version number', () => {
getVersionNumber('v1').should.equal(1)
getVersionNumber('v2').should.equal(2)
getVersionNumber('v15').should.equal(15)
})
})
describe('isVersionActive', () => {
it('should be defined', () => {
should.exist(isVersionActive)
})
it('should throw on bad parameters passed', () => {
should.throws(() => isVersionActive(null))
})
it('should return version number', () => {
isVersionActive('v1').should.equal(true)
isVersionActive('v2').should.equal(true)
isVersionActive('v15').should.equal(false)
})
})
})
describe('API Version middleware', () => {
before(() => {
setSupportedVersions('v1', 'v5')
})
after(function() {
setSupportedVersions('v1', 'v2')
})
it('should be defined', () => {
should.exist(urlMiddleware)
should.exist(headerMiddleware)
})
it('should get version from header', () => {
const req = {
headers: {
'x-api-version': 'v2'
}
}
const res = {
locals: {}
}
headerMiddleware('x-api-version')(req, res, () => {})
res.should.deepEqual({
locals: {
apiVersion: 'v2'
}
})
})
it('should get version from url', () => {
const req = {
params: {
version: 'v2'
}
}
const res = {
locals: {}
}
urlMiddleware('version')(req, res, () => {})
res.should.deepEqual({
locals: {
apiVersion: 'v2'
}
})
})
it('should fallback to latest if version is not defined', () => {
const req = {}
const res = {
locals: {}
}
headerMiddleware('x-api-version')({}, res, () => {})
res.should.deepEqual({
locals: {
apiVersion: 'v5'
}
})
urlMiddleware('version')({}, res, () => {})
res.should.deepEqual({
locals: {
apiVersion: 'v5'
}
})
})
it('should return 400 if asked for unsupported version', () => {
let sendMessage = 200
let status = ''
const req = {
params: {
version: 'v7'
}
}
const res = {
locals: {},
status: (number) => {
status = number
return res
},
json: (st) => {sendMessage = st.message}
}
urlMiddleware('version')(req, res, () => {})
status.should.equal(400)
sendMessage.should.equal('Requested API version is not supported')
})
it('should return 400 if asked for unsupported version', () => {
let sendMessage = 200
let status = ''
const req = {
headers: {
'x-api-version': 'v7'
}
}
const res = {
locals: {},
status: (number) => {
status = number
return res
},
json: (st) => {sendMessage = st.message}
}
headerMiddleware('x-api-version')(req, res, () => {})
status.should.equal(400)
sendMessage.should.equal('Requested API version is not supported')
})
})