forked from vmware/vmware-openapi-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_rest_swagger.py
440 lines (411 loc) · 17.8 KB
/
test_rest_swagger.py
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
import unittest
from unittest import mock
from lib import utils
from lib.rest_endpoint.swagger2.rest_swagger_parameter_handler import RestSwaggerParaHandler
from lib.rest_endpoint.swagger2.rest_swagger_response_handler import RestSwaggerRespHandler
from lib.rest_endpoint.swagger2.rest_metamodel2swagger import RestMetamodel2Swagger
from lib.swagger_final_path_processing import SwaggerPathProcessing
class TestRestSwaggerParaHandler(unittest.TestCase):
user_defined_type_mock = mock.Mock()
user_defined_type_mock.resource_type = 'com.vmware.vapi.structure'
user_defined_type_mock.resource_id = 'com.vmware.package.mock'
field_info_mock = mock.Mock()
field_info_type = mock.Mock()
field_info_type.category = 'USER_DEFINED'
field_info_type.user_defined_type = user_defined_type_mock
field_info_mock.type = field_info_type
field_info_mock.documentation = 'fieldInfoMockDescription'
field_info_mock.name = 'fieldInfoMockName'
structure_info_mock = mock.Mock()
structure_info_mock.fields = [field_info_mock]
structure_dict = {
'com.vmware.package.mock': structure_info_mock
}
enum_dict = {}
rest_swagger_parahandler = RestSwaggerParaHandler()
def test_convert_field_info_to_swagger_parameter(self):
# generic construction of parameter object (dictionary) using field info of path and query parameters
type_dict = {
'com.vmware.package.mock' : {
'description' : 'typeObjectMockDescription',
'type': 'MockType'
}
}
parameter_obj_actual = self.rest_swagger_parahandler.convert_field_info_to_swagger_parameter('path', self.field_info_mock,
type_dict, self.structure_dict,
self.enum_dict, False)
parameter_obj_expected = {
'required': True,
'in': 'path',
'name': 'fieldInfoMockName',
'description': '{ 1. typeObjectMockDescription }, { 2. fieldInfoMockDescription }',
'type': 'MockType'
}
self.assertEqual(parameter_obj_expected, parameter_obj_actual)
def test_wrap_body_params(self):
# validate parameter object by creating json wrappers around body object
type_dict = {
'com.vmware.package.mock' : {}
}
body_param_list = [self.field_info_mock]
parameter_obj_actual = self.rest_swagger_parahandler.wrap_body_params('com.vmware.package.mock', 'mockOperationName',
body_param_list, type_dict, self.structure_dict,
self.enum_dict, False)
parameter_obj_expected = {
'in': 'body',
'name': 'request_body',
'required': True,
'schema': {'$ref': '#/definitions/com.vmware.package.mock_mockOperationName'}
}
self.assertEqual(parameter_obj_expected, parameter_obj_actual)
def test_flatten_query_param_spec(self):
# case 1: parameter object takes reference from type_dict key
# case 1.1: type dict reference value contains properties
# case 1.1.1: property value inside type_dict is defined in-place
query_info_mock = mock.Mock()
query_info_type = mock.Mock()
query_info_type.category = 'USER_DEFINED'
query_info_type.user_defined_type = self.user_defined_type_mock
query_info_mock.type = query_info_type
query_info_mock.documentation = 'QueryMockDescription'
query_info_mock.name = 'QueryParameterMockName'
type_dict = {
'com.vmware.package.mock' : { #type_ref
'properties': {
'property-name': { #property_value
'type': 'array',
'items': {
'$ref': '#/definitions/com.vmware.package.mock.items'
},
'description' : 'mock property description'
}
}
},
'com.vmware.package.mock.items': {
'type': 'string',
'description': 'some mock description'
}
}
structure_dict = {}
par_array_actual = self.rest_swagger_parahandler.flatten_query_param_spec(query_info_mock, type_dict,
structure_dict, self.enum_dict, False)
par_array_expected = [
{
'in':'query',
'name': 'QueryParameterMockName.property-name',
'type': 'array',
'collectionFormat': 'multi',
'items': {'type': 'string'},
'description': 'mock property description'
}
]
self.assertEqual(par_array_expected, par_array_actual)
# type reference dictionary is empty
type_dict = {
'com.vmware.package.mock' : None
}
par_array_actual = self.rest_swagger_parahandler.flatten_query_param_spec(query_info_mock, type_dict,
structure_dict, self.enum_dict, False)
par_array_expected = None
self.assertEqual(par_array_expected, par_array_actual)
# case 1.1.2: property value is referenced from type_dict
type_dict = {
'com.vmware.package.mock' : { #type_ref
'properties': {
'property-name': { #property_value
'$ref': '#/definitions/com.vmware.package.mock.property'
},
'property-name-mock': {}
},
'required': ['property-name-mock']
},
'com.vmware.package.mock.property': { #prop_obj
'type': 'object',
'enum': ['enum-value-1, enum-value-2'],
'description': 'mock property description'
}
}
par_array_actual = self.rest_swagger_parahandler.flatten_query_param_spec(query_info_mock, type_dict,
structure_dict, self.enum_dict, False)
par_array_expected = [
{
'in':'query',
'name': 'QueryParameterMockName.property-name',
'type': 'string',
'enum': ['enum-value-1, enum-value-2'],
'description': 'mock property description',
'required': False
},
{
'in': 'query',
'name': 'QueryParameterMockName.property-name-mock',
'required': True
}
]
self.assertEqual(par_array_expected, par_array_actual)
# case 1.2: type dict reference value does not contain properties
type_dict = {
'com.vmware.package.mock' : { #type_ref
'description' : 'mock description',
'type': 'string',
'enum': ['enum-1', 'enum-2']
}
}
par_array_actual = self.rest_swagger_parahandler.flatten_query_param_spec(query_info_mock, type_dict,
structure_dict, self.enum_dict, False)
par_array_expected = [
{
'in':'query',
'name': 'QueryParameterMockName',
'description': 'mock description',
'type': 'string',
'enum': ['enum-1', 'enum-2'],
'required': True
}
]
self.assertEqual(par_array_expected, par_array_actual)
# case 2: parameter object does not take reference from type dict key
query_info_mock = mock.Mock()
query_info_type = mock.Mock()
query_info_type.category = 'BUILTIN'
query_info_type.builtin_type = 'string'
query_info_mock.type = query_info_type
query_info_mock.documentation = 'QueryMockDescription'
query_info_mock.name = 'QueryParameterMockName'
type_dict = {}
par_array_actual = self.rest_swagger_parahandler.flatten_query_param_spec(query_info_mock, type_dict,
structure_dict, self.enum_dict, False)
par_array_expected = [
{
'type': 'string',
'in':'query',
'name': 'QueryParameterMockName',
'description': 'QueryMockDescription',
'required': True
}
]
self.assertEqual(par_array_expected, par_array_actual)
class TestRestSwaggerRespHandler(unittest.TestCase):
def test_populate_response_map(self):
# get response map corresponding to errors in operation information
user_defined_type_mock = mock.Mock()
user_defined_type_mock.resource_type = 'com.vmware.vapi.structure'
user_defined_type_mock.resource_id = 'com.vmware.package.mock'
output_mock = mock.Mock()
output_mock_type = mock.Mock()
output_mock_type.category = 'USER_DEFINED'
output_mock_type.user_defined_type = user_defined_type_mock
output_mock.documentation = 'mock output description'
output_mock.type = output_mock_type
error_mock = mock.Mock()
error_mock.structure_id = 'com.vmware.vapi.std.errors.not_found'
error_mock.documentation = 'mock error description'
errors = [error_mock]
type_dict = {
'com.vmware.vapi.std.errors.not_found' : {},
'com.vmware.package.mock' : {
'description' : 'mock description',
'type': 'string',
'enum': ['enum-1', 'enum-2']
}
}
'''
Mock parameters : output and errors
output( documentation = 'mock output description',
type = Type( category = 'USER_DEFINED',
user_defined_type = UserDefinedType( resource_id = 'com.vmware.package.mock',
resource_type = 'com.vmware.vapi.structure')))
errors = [error( documentation = 'mock error description', structure_id = 'com.vmware.vapi.std.errors.not_found')]
'''
structure_info_mock = mock.Mock()
metadata_mock = mock.Mock()
element_value_mock = mock.Mock()
element_value_mock.string_value = '404'
metadata_mock.elements = { 'code' : element_value_mock}
structure_info_mock.metadata = { 'Response' : metadata_mock}
structures = { 'com.vmware.mock.structure' : structure_info_mock }
structures_obj = mock.Mock()
structures_obj.structures = structures
info_mock = mock.Mock()
info_mock.packages = { 'com.vmware.vapi.std.errors' : structures_obj}
component_svc_obj = mock.Mock()
component_svc_obj.info = info_mock
component_svc_mock = { 'com.vmware.vapi' : component_svc_obj}
'''
Mock parameter : component_svc
component_svc = { 'com.vmware.vapi' : Component( info = ComponentInfo(
packages = {'com.vmware.vapi.std.errors' : StructureInfo (structures = {
'com.vmware.mock.structure' : StructureInfo(metadata = {
'Response' : { ElementMap( elements = ElementValue( string_value = '404'))}
})
})}
))}
'''
http_error_map = utils.HttpErrorMap(component_svc_mock)
rest_swagger_resphandler = RestSwaggerRespHandler()
response_map_actual = rest_swagger_resphandler.populate_response_map(output_mock, errors,
http_error_map,type_dict, {}, {}, 'mock-service-id',
'mock-operation-id', False)
response_map_expected = {
200: {
'description': 'mock output description',
'schema': {'$ref': '#/definitions/mock-service-id.mock-operation-id_resp'}
},
404: {
'description': 'mock error description',
'schema': {'$ref': '#/definitions/com.vmware.vapi.std.errors.not_found_error'}
}
}
self.assertEqual(response_map_expected, response_map_actual)
class TestRestSwaggerFinalPath(unittest.TestCase):
rest_swagger_path = SwaggerPathProcessing()
def test_remove_query_params(self):
# case 1: Absolute Duplicate paths, which will remain unchanged
path_dict = {
'mock/path1?action=mock_action':{
'post':{
'parameters' : [] # parameters attr is always created even if there isn't any
}
},
'mock/path1':{
'post':{
}
}
}
path_dict_expected = {
'mock/path1?action=mock_action':{
'post':{
'parameters' : []
}
},
'mock/path1':{
'post':{
}
}
}
self.rest_swagger_path.remove_query_params(path_dict)
self.assertEqual(path_dict, path_dict_expected)
# case 2: Partial Duplicate, adding the Operations of the new duplicate path
# to that of the existing path based on method type
# case 2.1: only one of them as query parameter
path_dict = {
'mock/path1?action=mock_action':{
'post':{
'parameters' : []
}
},
'mock/path1':{
'get':{
'parameters' : []
}
}
}
path_dict_expected = {
'mock/path1': {
'post': {
'parameters': [
{
'name': 'action',
'in': 'query',
'description':'action=mock_action',
'required': True,
'type': 'string',
'enum': ['mock_action']
}
]
},
'get': {
'parameters' : []
}
}
}
self.rest_swagger_path.remove_query_params(path_dict)
self.assertEqual(path_dict, path_dict_expected)
# case 2.2: both of them have query parameter
path_dict = {
'mock/path1?action=mock_action_1':{
'post':{
'parameters' : []
}
},
'mock/path1?action=mock_action_2':{
'get':{
'parameters' : []
}
}
}
path_dict_expected = {
'mock/path1': {
'post': {
'parameters': [{'name': 'action', 'in': 'query', 'description': 'action=mock_action_1', 'required': True, 'type': 'string', 'enum': ['mock_action_1']}]
},
'get': {
'parameters': [{'name': 'action', 'in': 'query', 'description': 'action=mock_action_2', 'required': True, 'type': 'string', 'enum': ['mock_action_2']}]
}
}
}
self.rest_swagger_path.remove_query_params(path_dict)
self.assertEqual(path_dict, path_dict_expected)
# case 3: QueryParameters are fixed and method types are same
path_dict = {
'mock/path1?action=mock_action_1':{
'post':{
'parameters' : []
}
},
'mock/path1?action=mock_action_2':{
'post':{
'parameters' : []
}
}
}
path_dict_expected = {
'mock/path1': {
'post': {
'parameters': [{'name': 'action', 'in': 'query', 'description': 'action=mock_action_1', 'required': True, 'type': 'string', 'enum': ['mock_action_1']}]
}
},
'mock/path1?action=mock_action_2': {
'post': {
'parameters': []
}
}
}
self.rest_swagger_path.remove_query_params(path_dict)
self.assertEqual(path_dict, path_dict_expected)
class TestRestMetamodel2Swagger(unittest.TestCase):
rest_meta2swagger = RestMetamodel2Swagger()
def test_post_process_path(self):
# case 1: adding header parameter in list of parameters
# if path equals '/com/vmware/cis/session' and method is 'post
# Also allow invocation of $tasks operation
path_obj = {
'path': '/com/vmware/cis/session',
'method': 'post',
'operationId': 'MockOperationId$task',
}
self.rest_meta2swagger.post_process_path(path_obj)
path_obj_expected = {
'path': '/com/vmware/cis/session?vmw-task=true',
'method': 'post',
'operationId': 'MockOperationId$task',
'parameters': [{
'in': 'header',
'required': True,
'type': 'string',
'name': 'vmware-use-header-authn',
'description': 'Custom header to protect against CSRF attacks in browser based clients'
}]
}
self.assertEqual(path_obj, path_obj_expected)
# case 2: If above conditions are not satisfied, path object remains unaltered
path_obj = {
'path': '/package/mock-1/{mock}/mock?key=value',
'method': 'post',
'operationId': 'MockOperationId',
}
path_obj_expected = path_obj
self.rest_meta2swagger.post_process_path(path_obj)
self.assertEqual(path_obj, path_obj_expected)
if __name__ == '__main__':
unittest.main()