-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathra_unittest.py
474 lines (380 loc) · 20.3 KB
/
ra_unittest.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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
from pygqlmap.enums import ArgType
from pygqlmap.gql_types import ID, NonNull_ID
from pygqlmap.network import GQLResponse
import requests
from codegen.network import fetch_schema_obj
from codegen.generator import CodeGenerator
from codegen.query_presets import QUERY_SCHEMA_AND_TYPES
from .consts import RAPIDAPI_HEADERS, RAPIDAPI_URL
import logging as logger
from .utils import stringifyresult
def run_fetch_ra_schema():
logger.debug('\nRunning run_fetch_ra_schema...')
try:
gqlSchema = fetch_schema_obj(RAPIDAPI_URL, RAPIDAPI_HEADERS, QUERY_SCHEMA_AND_TYPES)
if gqlSchema:
logger.debug('Generating python types from GraphQL data...')
CodeGenerator.generate_code(gqlSchema, folder='tests\\output\\rapidapi\\', log_progress=True)
logger.debug('Python types generated')
except Exception as ex:
raise ex #ManageException('executeQuery FAILED!!' + ex.args[0])
logger.debug("End of run_fetch_ra_schema")
def run_fetch_ra_schema_no_desc():
logger.debug('\nRunning run_fetch_ra_schema_no_desc...')
try:
gqlSchema = fetch_schema_obj(RAPIDAPI_URL, RAPIDAPI_HEADERS, QUERY_SCHEMA_AND_TYPES)
if gqlSchema:
logger.debug('Generating python types from GraphQL data...')
CodeGenerator.generate_code(gqlSchema, folder='tests\\output\\rapidapi_nodesc\\', add_desc=False, log_progress=True)
logger.debug('Python types generated')
except Exception as ex:
raise ex #ManageException('executeQuery FAILED!!' + ex.args[0])
logger.debug("End of run_fetch_ra_schema_no_desc")
def run_ra_extensions_query_with_list():
logger.debug('\nRunning run_ra_extensions_query_with_list...')
try:
logger.debug('Creating mutation python object...')
from .output.rapidapi.queries import extensions
query = extensions()
logger.debug(query.export_gql_source)
logger.debug('Calling GraphQL Server......')
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": query.export_gql_source },
headers=RAPIDAPI_HEADERS)
logger.debug('Response Received')
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(query.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_extensions_query_with_list")
def run_ra_eventTypes_query_with_list():
logger.debug('\nRunning run_ra_eventTypes_query_with_list...')
try:
logger.debug('Creating mutation python object...')
from .output.rapidapi.queries import eventTypes
query = eventTypes()
logger.debug(query.export_gql_source)
logger.debug('Calling GraphQL Server......')
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": query.export_gql_source },
headers=RAPIDAPI_HEADERS)
logger.debug('Response Received')
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(query.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_eventTypes_query_with_list")
def run_ra_create_transformations_mutation_literal():
logger.debug('\nRunning run_ra_create_transformations_mutation_literal...')
try:
logger.debug('Creating mutation python object...')
from .output.rapidapi.gql_types import TransformationActionType, TransformationType, TransformationConditionType, NonNull_list
from .output.rapidapi.mutations import Mutations, NonNull_TransformationCreateInput, NonNull_list_TransformationCreateInput
mutation = Mutations.createTransformations.value()
input1 = NonNull_TransformationCreateInput()
input1.apiVersionId = NonNull_ID("1")
input1.action = TransformationActionType.ADD
input1.endpoints = ["myID"]
input1.transformationType = TransformationType.REQUEST
input1.condition = TransformationConditionType.IGNORE
input1.targetPath = "."
input1.from_ = "a"
input1.target = "b"
input1.value = "val"
input1.plans = [NonNull_ID("planID")]
input2 = NonNull_TransformationCreateInput()
input2.apiVersionId =NonNull_ID("1")
input2.action = TransformationActionType.REMOVE
input2.endpoints = [NonNull_ID("myID")]
input2.transformationType = TransformationType.REQUEST
input2.condition = TransformationConditionType.IGNORE
input2.targetPath = "."
input2.from_ = "a"
input2.target = "b"
input2.value = "val"
input2.plans = [NonNull_ID("planID")]
logger.debug('Inserting python mutation input data...')
transformation_lst = NonNull_list_TransformationCreateInput()
transformation_lst.append(input1)
transformation_lst.append(input2)
mutation._args.transformations = transformation_lst
logger.debug(mutation.export_gql_source)
logger.debug('Calling GraphQL Server......')
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": mutation.export_gql_source },
headers=RAPIDAPI_HEADERS)
logger.debug('Response Received')
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(mutation.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_create_transformations_mutation_literal")
def run_ra_create_transformations_mutation_vars():
logger.debug('\nRunning run_ra_create_transformations_mutation_vars...')
try:
logger.debug('Creating mutation python object...')
from .output.rapidapi.gql_types import TransformationActionType, TransformationType, TransformationConditionType, NonNull_list
from .output.rapidapi.mutations import Mutations, NonNull_TransformationCreateInput, NonNull_list_TransformationCreateInput
mutation = Mutations.createTransformations.value()
input1 = NonNull_TransformationCreateInput()
input1.apiVersionId =NonNull_ID("1")
input1.action = TransformationActionType.ADD
input1.endpoints = ["myID"]
input1.transformationType = TransformationType.REQUEST
input1.condition = TransformationConditionType.IGNORE
input1.targetPath = "."
input1.from_ = "a"
input1.target = "b"
input1.value = "val"
input1.plans = [NonNull_ID("planID")]
input2 = NonNull_TransformationCreateInput()
input2.apiVersionId =NonNull_ID("1")
input2.action = TransformationActionType.REMOVE
input2.endpoints = ["myID"]
input2.transformationType = TransformationType.REQUEST
input2.condition = TransformationConditionType.IGNORE
input2.targetPath = "."
input2.from_ = "a"
input2.target = "b"
input2.value = "val"
input2.plans = [NonNull_ID("planID")]
logger.debug('Inserting python mutation input data...')
mutation._args.transformations = NonNull_list_TransformationCreateInput[input1, input2]
mutation._args_type = ArgType.VARIABLES
logger.debug(mutation.export_gql_source)
logger.debug('Calling GraphQL Server......')
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": mutation.export_gql_source, "variables": mutation.export_gqlvariables },
headers=RAPIDAPI_HEADERS)
logger.debug('Response Received')
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(mutation.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_create_transformations_mutation_vars")
def run_ra_create_gateway_instance_mutation_literal():
logger.debug('\nRunning run_ra_create_gateway_instance_mutation_literal...')
try:
logger.debug('Creating mutation python object...')
from .output.rapidapi.gql_types import GatewayConfigurationCreateInput, GatewayCustomMessageCreateInput, MessageKey, GatewayType
from .output.rapidapi.mutations import Mutations, NonNull_GatewayInstanceCreateInput
mutation = Mutations.createGatewayInstance.value()
mutation._args.createDto = NonNull_GatewayInstanceCreateInput()
mutation._args.createDto.apiGatewayCodeTemplateId = 12314
mutation._args.createDto.dns = 'mydomain.com'
mutation._args.createDto.configurations = GatewayConfigurationCreateInput()
mutation._args.createDto.configurations.allowHttpTraffic = False
mutation._args.createDto.configurations.gatewayDefaultTimeOut = 100
mutation._args.createDto.configurations.limitRequestSize = 154000
mutation._args.createDto.customMessages = []
gcmci = GatewayCustomMessageCreateInput()
gcmci.messageKey = MessageKey.API_MISSING
gcmci.messageValue = 'Message'
gcmci2 = GatewayCustomMessageCreateInput()
gcmci2.messageKey = MessageKey.APP_LIMIT_API_ERROR
gcmci2.messageValue = 'Message2'
mutation._args.createDto.customMessages.extend([gcmci, gcmci2])
mutation._args.createDto.dns = 'myDns'
mutation._args.createDto.isDefault = False
mutation._args.createDto.type = GatewayType.Kong
logger.debug(mutation.export_gql_source)
logger.debug('Calling GraphQL Server......')
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": mutation.export_gql_source },
headers=RAPIDAPI_HEADERS)
logger.debug('Response Received')
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(mutation.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_create_gateway_instance_mutation_literal")
def run_ra_create_gateway_instance_mutation_vars():
logger.debug('\nRunning run_ra_create_gateway_instance_mutation_vars...')
try:
logger.debug('Creating mutation python object...')
from .output.rapidapi.gql_types import GatewayConfigurationCreateInput, GatewayCustomMessageCreateInput, MessageKey, GatewayType
from .output.rapidapi.mutations import Mutations, NonNull_GatewayInstanceCreateInput
mutation = Mutations.createGatewayInstance.value()
mutation._args.createDto = NonNull_GatewayInstanceCreateInput()
mutation._args.createDto.apiGatewayCodeTemplateId = 12314
mutation._args.createDto.dns = 'mydomain.com'
mutation._args.createDto.configurations = GatewayConfigurationCreateInput()
mutation._args.createDto.configurations.allowHttpTraffic = False
mutation._args.createDto.configurations.gatewayDefaultTimeOut = 100
mutation._args.createDto.configurations.limitRequestSize = 154000
mutation._args.createDto.customMessages = []
gcmci = GatewayCustomMessageCreateInput()
gcmci.messageKey = MessageKey.API_MISSING
gcmci.messageValue = 'Message'
gcmci2 = GatewayCustomMessageCreateInput()
gcmci2.messageKey = MessageKey.APP_LIMIT_API_ERROR
gcmci2.messageValue = 'Message2'
mutation._args.createDto.customMessages.extend([gcmci, gcmci2])
mutation._args.createDto.dns = 'myDns'
mutation._args.createDto.isDefault = False
mutation._args.createDto.type = GatewayType.Kong
mutation._args_type = ArgType.VARIABLES
logger.debug(mutation.export_gql_source)
logger.debug('Calling GraphQL Server......')
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": mutation.export_gql_source, "variables": mutation.export_gqlvariables },
headers=RAPIDAPI_HEADERS)
logger.debug('Response Received')
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(mutation.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_create_gateway_instance_mutation_vars")
def run_ra_edit_user_alert_mutation_literal():
logger.debug('\nRunning run_ra_edit_user_alert_mutation_literal...')
try:
logger.debug('Creating mutation python object...')
from .output.rapidapi.gql_types import editUserAlertInput, Channel, Condition, AlertStatus, time
from .output.rapidapi.mutations import Mutations
mutation = Mutations.editUserAlert.value()
mutation._args.input = editUserAlertInput()
mutation._args.input.apiIds = [123,32,56,23]
mutation._args.input.apiVersionsIds = [1,2,3,4]
mutation._args.input.baseUrl = 'http://shut.betterthisurl'
mutation._args.input.billingPlansIds = [1,2,3,4]
mutation._args.input.channel = Channel.Email
mutation._args.input.condition = Condition.gte
mutation._args.input.description = 'description 2'
mutation._args.input.endpointHashes = ['FJWIR23jfjf43j2', 'd3jr4j3j43rf']
mutation._args.input.endpointsIds = [123,32,56,23]
mutation._args.input.id = 'sdasd'
mutation._args.input.minNextAlertTime = 'tomorrow'
mutation._args.input.name = 'new Name for Tomorrow'
mutation._args.input.status = AlertStatus.Enabled
mutation._args.input.threshold = 23.45
mutation._args.input.throttleInterval = time.hour
mutation._args.input.throttlePeriod = 1
mutation._args.input.timeInterval = time.second
mutation._args.input.timePeriod = 10
mutation._args.input.typeId = 124
logger.debug('Calling GraphQL Server......')
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": mutation.export_gql_source },
headers=RAPIDAPI_HEADERS)
logger.debug('Response Received')
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(mutation.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_edit_user_alert_mutation_literal")
def run_ra_edit_user_alert_mutation_vars():
logger.debug('\nRunning run_ra_edit_user_alert_mutation_vars...')
try:
logger.debug('Creating mutation python object...')
from .output.rapidapi.gql_types import Channel, Condition, AlertStatus, time
from .output.rapidapi.mutations import Mutations, NonNull_editUserAlertInput
mutation = Mutations.editUserAlert.value()
mutation._args.input = NonNull_editUserAlertInput()
mutation._args.input.apiIds = [123,32,56,23]
mutation._args.input.apiVersionsIds = [1,2,3,4]
mutation._args.input.baseUrl = 'http://shut.betterthisurl'
mutation._args.input.billingPlansIds = [1,2,3,4]
mutation._args.input.channel = Channel.Email
mutation._args.input.condition = Condition.gte
mutation._args.input.description = 'description 2'
mutation._args.input.endpointHashes = ['FJWIR23jfjf43j2', 'd3jr4j3j43rf']
mutation._args.input.endpointsIds = [123,32,56,23]
mutation._args.input.id = 'sdasd'
mutation._args.input.minNextAlertTime = 'tomorrow'
mutation._args.input.name = 'new Name for Tomorrow'
mutation._args.input.status = AlertStatus.Enabled
mutation._args.input.threshold = 23.45
mutation._args.input.throttleInterval = time.hour
mutation._args.input.throttlePeriod = 1
mutation._args.input.timeInterval = time.second
mutation._args.input.timePeriod = 10
mutation._args.input.typeId = 124
mutation._args_type = ArgType.VARIABLES
logger.debug('Calling GraphQL Server......')
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": mutation.export_gql_source, "variables": mutation.export_gqlvariables },
headers=RAPIDAPI_HEADERS)
logger.debug('Response Received')
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(mutation.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_edit_user_alert_mutation_vars")
def run_ra_admin_audit_logs_query_literal():
logger.debug('\nRunning run_ra_admin_audit_logs_query_literal...')
try:
# from .output.github.gql_types import UpdateRepositoryInput
from .output.rapidapi.queries import Queries
from .output.rapidapi.gql_types import AdminAuditLogSortablesInput, AdminAuditLogSortablesSortingField
from .output.rapidapi.enums import Order, AdminAuditLogSortables
logger.debug('Creating mutation python object...')
query = Queries.adminAuditLogs.value()
logger.debug('Inserting python mutation input data...')
query._args.orderBy = AdminAuditLogSortablesInput()
field1 = AdminAuditLogSortablesSortingField()
field1.fieldName = AdminAuditLogSortables.CREATED_AT
field1.order = Order.ASC
field2 = AdminAuditLogSortablesSortingField()
field2.fieldName = AdminAuditLogSortables.CREATED_AT
field2.order = Order.DESC
query._args.orderBy.sortingFields = [field1, field2]
query._args.pagination.first = 5
logger.debug('Creating GQLOperation for mutation...')
logger.debug(query.export_gql_source)
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": query.export_gql_source },
headers=RAPIDAPI_HEADERS)
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(query.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_admin_audit_logs_query_literal")
def run_ra_admin_audit_logs_query_vars():
logger.debug('\nRunning run_ra_admin_audit_logs_query_vars...')
try:
# from .output.github.gql_types import UpdateRepositoryInput
from .output.rapidapi.queries import Queries
from .output.rapidapi.gql_types import AdminAuditLogSortablesInput, AdminAuditLogSortablesSortingField
from .output.rapidapi.enums import Order, AdminAuditLogSortables
logger.debug('Creating mutation python object...')
query = Queries.adminAuditLogs.value()
logger.debug('Inserting python mutation input data...')
query._args.orderBy = AdminAuditLogSortablesInput()
field1 = AdminAuditLogSortablesSortingField()
field1.fieldName = AdminAuditLogSortables.CREATED_AT
field1.order = Order.ASC
field2 = AdminAuditLogSortablesSortingField()
field2.fieldName = AdminAuditLogSortables.CREATED_AT
field2.order = Order.DESC
query._args.orderBy.sortingFields = [field1, field2]
query._args_type = ArgType.VARIABLES
logger.debug('Creating GQLOperation for mutation...')
logger.debug(query.export_gql_source)
response = requests.request('POST', url=RAPIDAPI_URL,
json={ "query": query.export_gql_source, "variables": query.export_gqlvariables },
headers=RAPIDAPI_HEADERS)
gqlResponse = GQLResponse(response)
gqlResponse.print_msg_out()
gqlResponse.map_gqldata_to_obj(query.type)
logger.info('result object: ' + stringifyresult(gqlResponse.result_obj))
except Exception as ex:
raise ex
logger.debug("End of run_ra_admin_audit_logs_query_vars")