-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathoas3.spec.ts
249 lines (232 loc) · 6.04 KB
/
oas3.spec.ts
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
import { OAS3SpecGenerator } from '@vulcan/build/spec-generator';
import { getSchemas, getConfig } from './schema';
import * as jsYaml from 'js-yaml';
import { promises as fs } from 'fs';
import * as path from 'path';
import { get } from 'lodash';
const getGenerator = async () => {
const schema = await getSchemas();
const config = getConfig();
return new OAS3SpecGenerator(schema, config);
};
it('Should generate specification without error', async () => {
// Arrange
const generator = await getGenerator();
// Act, Arrange
expect(async () => {
const spec = generator.getSpec();
await fs.writeFile(
path.resolve(__dirname, 'oas3-spec.yaml'),
jsYaml.dump(spec),
'utf-8'
);
}).not.toThrow();
});
it('Parameters in path should be converted to correct format', async () => {
// Arrange
const generator = await getGenerator();
// Act
const spec = generator.getSpec();
// Arrange
expect(Object.keys(spec.paths)[0]).toBe('/user/{id}');
expect(Object.keys(spec.paths)[1]).toBe('/user/{id}/order/{oid}');
expect(Object.keys(spec.paths)[2]).toBe('/users');
});
it('Should extract the correct parameters', async () => {
// Arrange
const generator = await getGenerator();
// Act
const spec = generator.getSpec();
// Arrange
expect(spec.paths['/user/{id}']?.get.parameters[0]).toEqual(
expect.objectContaining({
name: 'id',
in: 'path',
schema: expect.objectContaining({
type: 'string',
minLength: 3,
maxLength: 10,
pattern: '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}',
}),
required: true,
})
);
expect(spec.paths['/user/{id}']?.get.parameters[1]).toEqual(
expect.objectContaining({
name: 'agent',
in: 'header',
schema: expect.objectContaining({
type: 'number',
minimum: 10,
maximum: 15,
}),
required: false,
})
);
expect(spec.paths['/user/{id}']?.get.parameters[2]).toEqual(
expect.objectContaining({
name: 'force',
in: 'query',
schema: expect.objectContaining({
type: 'boolean',
}),
required: false,
})
);
expect(spec.paths['/user/{id}']?.get.parameters[3]).toEqual(
expect.objectContaining({
name: 'username',
in: 'query',
schema: expect.objectContaining({
type: 'string',
enum: ['ivan', 'eason', 'freda'],
}),
required: false,
})
);
});
it('Should extract the correct response', async () => {
// Arrange
const generator = await getGenerator();
// Act
const spec = generator.getSpec();
// Arrange
expect(
get(
spec,
'paths./user/{id}.get.responses.200.content.application/json.schema.properties.id'
)
).toEqual(
expect.objectContaining({
type: 'string',
description: 'The unique-id of the user',
})
);
expect(
get(
spec,
'paths./user/{id}.get.responses.200.content.application/json.schema.properties.id'
)
).toEqual(
expect.objectContaining({
type: 'string',
description: 'The unique-id of the user',
})
);
expect(
get(
spec,
'paths./user/{id}.get.responses.200.content.application/json.schema.properties.username'
)
).toEqual(
expect.objectContaining({
type: 'string',
description: 'The username of the user',
})
);
expect(
get(
spec,
'paths./user/{id}.get.responses.200.content.application/json.schema.required'
)
).toEqual(['id', 'username']);
expect(
get(
spec,
'paths./user/{id}.get.responses.200.content.application/json.schema.properties.groups'
)
).toEqual(
expect.objectContaining({
type: 'object',
description: 'The groups that the user has joined',
})
);
expect(
get(
spec,
'paths./user/{id}.get.responses.200.content.application/json.schema.properties.groups.properties.id'
)
).toEqual(
expect.objectContaining({
type: 'string',
description: 'The unique-id of the group',
})
);
expect(
get(
spec,
'paths./user/{id}.get.responses.200.content.application/json.schema.properties.groups.properties.groupName'
)
).toEqual(
expect.objectContaining({
type: 'string',
description: 'The groupName of the group',
})
);
expect(
get(
spec,
'paths./user/{id}.get.responses.200.content.application/json.schema.properties.groups.properties.public'
)
).toEqual(
expect.objectContaining({
type: 'boolean',
description: 'Whether the group was public',
})
);
expect(
get(
spec,
'paths./user/{id}.get.responses.200.content.application/json.schema.properties.groups.required'
)
).toEqual(['id', 'groupName']);
});
it('Should extract correct errors', async () => {
// Arrange
const generator = await getGenerator();
// Act
const spec = generator.getSpec();
// Arrange
expect(
get(
spec,
'paths./user/{id}.get.responses.400.content.application/json.examples.USER_NOT_FOUND'
)
).toEqual(
expect.objectContaining({
description: `We can't find any user with the provided id`,
value: expect.objectContaining({
code: 'USER_NOT_FOUND',
message: `We can't find any user with the provided id`,
}),
})
);
expect(
get(
spec,
'paths./user/{id}.get.responses.400.content.application/json.examples.AGENT_NOT_ALLOW'
)
).toEqual(
expect.objectContaining({
description: `The agent is not allow`,
value: expect.objectContaining({
code: 'AGENT_NOT_ALLOW',
message: `The agent is not allow`,
}),
})
);
// We shouldn't set 400 error when there is no error code defined
expect(
get(spec, 'paths./user/{id}/order/{oid}.get.responses.400')
).toBeUndefined();
});
it('Should extract correct API description', async () => {
// Arrange
const generator = await getGenerator();
// Act
const spec = generator.getSpec();
// Arrange
expect(get(spec, 'paths./user/{id}.get.description')).toBe(
'Get user information'
);
});