-
Notifications
You must be signed in to change notification settings - Fork 21
/
bundle.yaml
553 lines (553 loc) · 15.7 KB
/
bundle.yaml
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
swagger: '2.0'
info:
description: >
OpenMock is a Go service that can mock services in integration tests,
staging environment, or anywhere. The goal is to simplify the process of
writing mocks in various channels. Currently it supports four channels:
HTTP, Kafka, AMQP (e.g. RabbitMQ), and GRPC The admin API allows you to
manipulate the mock behaviour provided by openmock, live. The base path for
the admin API is "/api/v1".
title: OpenMock
version: 0.3.0
tags:
- name: template
description: manipulating 'mocks' in the model
- name: template_set
description: manipulating sets of 'mocks' in the model
consumes:
- application/yaml
- application/json
produces:
- application/yaml
- application/json
schemes:
- http
basePath: /api/v1
paths:
/health:
get:
tags:
- health
operationId: getHealth
description: Check if Flagr is healthy
responses:
'200':
description: status of health check
schema:
$ref: '#/definitions/health'
default:
description: generic error response
schema:
$ref: '#/definitions/error'
/templates:
get:
tags:
- template
operationId: getTemplates
description: Get all templates in the loaded model
responses:
'200':
description: all the templates
schema:
$ref: '#/definitions/Mocks'
default:
description: generic error response
schema:
$ref: '#/definitions/error'
delete:
tags:
- template
operationId: deleteTemplates
description: >-
Deletes any templates that have been added to the admin endpoint
(without a setKey)
responses:
'204':
description: when successfully deleted
default:
description: server error
schema:
$ref: '#/definitions/error'
post:
tags:
- template
operationId: postTemplates
description: Modify templates in the base model by POSTing new ones
parameters:
- in: body
name: mocks
description: mocks to add
required: true
schema:
$ref: '#/definitions/Mocks'
responses:
'200':
description: returns the successfully posted templates
schema:
$ref: '#/definitions/Mocks'
'400':
description: if incoming templates were invalid
schema:
$ref: '#/definitions/error'
default:
description: generic error response
schema:
$ref: '#/definitions/error'
'/templates/{templateKey}':
delete:
tags:
- template
operationId: deleteTemplate
description: delete a specific template that has been added by key
parameters:
- in: path
name: templateKey
description: key of template to delete
required: true
type: string
responses:
'204':
description: when successfully deleted
'400':
description: invalid key
schema:
$ref: '#/definitions/error'
'404':
description: not found
schema:
$ref: '#/definitions/error'
default:
description: server error
schema:
$ref: '#/definitions/error'
'/template_sets/{setKey}':
post:
tags:
- template_set
operationId: postTemplateSet
description: creates / overrides the template set with setKey to the body contents
parameters:
- in: body
name: mocks
description: mocks to add
required: true
schema:
$ref: '#/definitions/Mocks'
- in: path
name: setKey
description: set key to create
required: true
type: string
responses:
'200':
description: returns the successfully posted templates
schema:
$ref: '#/definitions/Mocks'
'400':
description: if incoming templates were invalid
schema:
$ref: '#/definitions/error'
default:
description: generic error response
schema:
$ref: '#/definitions/error'
delete:
tags:
- template_set
operationId: deleteTemplateSet
description: deletes specified template set
parameters:
- in: path
name: setKey
description: set key to delete
required: true
type: string
responses:
'204':
description: when successfully deleted
default:
description: server error
schema:
$ref: '#/definitions/error'
/evaluate:
post:
tags:
- evaluate
operationId: evaluate
description: >-
evaluates a mock's response to a given input context, for debugging /
development purposes
parameters:
- in: body
name: eval_request
description: request to process
required: true
schema:
$ref: '#/definitions/MockEvalRequest'
responses:
'200':
description: when successfully evaluated
schema:
$ref: '#/definitions/MockEvalResponse'
default:
description: server error
schema:
$ref: '#/definitions/error'
definitions:
health:
type: object
properties:
status:
type: string
error:
type: object
properties:
message:
type: string
minLength: 1
MockEvalRequest:
type: object
description: Request to evaluate a mock's behavior given an input context
properties:
mock:
$ref: '#/definitions/Mock'
description: The mock to evaluate
context:
$ref: '#/definitions/EvalContext'
description: The context to evaluate the mock
MockEvalResponse:
type: object
description: >-
Result of evaluating mock, indicates what the mock would be expected to do
given the input
properties:
condition_rendered:
type: string
description: >-
the rendered value of the mock's expect's condition when evaluating
with the context
condition_passed:
type: boolean
description: >-
whether the condition passed when evaluated, so the actions would take
place
expect_passed:
type: boolean
description: >-
whether the channel-specific condition of the evaluation passed. For
example for a mock with ExpectHTTP, this returns true if the HTTP path
and method in the input context matched the ExpectHTTP.
actions_performed:
type: array
description: list of responses the mock performed (assuming the condition passed)
items:
$ref: '#/definitions/ActionPerformed'
ActionPerformed:
type: object
description: >-
when evaluating a mock, an object capturing what would happen if the
mock's action is performed
properties:
reply_http_action_performed:
$ref: '#/definitions/ReplyHTTPActionPerformed'
publish_kafka_action_performed:
$ref: '#/definitions/PublishKafkaActionPerformed'
ReplyHTTPActionPerformed:
type: object
description: >-
http info that would be replied when an evaluated mock did ReplyHTTP
action
properties:
content_type:
type: string
description: the HTTP content-type of the reply
headers:
type: object
additionalProperties: true
description: Key-value pair HTTP headers attached to the reply
body:
type: string
description: body bytes-converted-to-string returned in HTTP reply
status_code:
type: string
description: HTTP status code in the reply
PublishKafkaActionPerformed:
type: object
description: >-
kafka reply info that would be replied when an evaluated mock did
PublishKafka action
properties:
payload:
type: string
description: rendered payload
topic:
type: string
description: the kafka topic to send to
EvalContext:
type: object
description: >-
when evaluating a mock, the input context to evaluate. Contains subfields
specific to each channel openmock supports
properties:
http_context:
$ref: '#/definitions/EvalHTTPContext'
kafka_context:
$ref: '#/definitions/EvalKafkaContext'
EvalKafkaContext:
type: object
description: input context for ExpectKafka mock
properties:
topic:
type: string
payload:
type: string
EvalHTTPContext:
type: object
description: input context for ExpectHTTP mock
properties:
method:
type: string
path:
type: string
headers:
type: object
additionalProperties: true
body:
type: string
query_string:
type: string
Mocks:
type: array
description: collection of mocks
items:
$ref: '#/definitions/Mock'
Mock:
type: object
properties:
key:
type: string
description: Unique key for the item in OM's model
pattern: '[\w_\-\.]+'
kind:
type: string
enum:
- Behavior
- AbstractBehavior
- Template
description: >
The type of item this is. possible types are: Behavior - creates a new
mock behavior AbstractBehavior - allows behaviors to use common
features from this item Template - used in template language rendering
to do fancy stuff
extend:
type: string
description: 'for behaviors, makes this behavior extend a specified AbstractBehavior'
expect:
$ref: '#/definitions/Expect'
actions:
type: array
items:
$ref: '#/definitions/ActionDispatcher'
description: 'for behaviors, the actions this mock would do when the expect is met'
values:
type: object
description: >-
Arbitrary values that can be used in go templates rendered by this
item
additionalProperties: true
template:
type: string
description: a go template to be embedded in other templates
Expect:
type: object
properties:
condition:
type: string
description: a go template that determines if this behavior triggers
http:
$ref: '#/definitions/ExpectHTTP'
kafka:
$ref: '#/definitions/ExpectKafka'
amqp:
$ref: '#/definitions/ExpectAMQP'
grpc:
$ref: '#/definitions/ExpectGRPC'
ExpectKafka:
type: object
properties:
topic:
type: string
description: kafka topic to listen on
ExpectAMQP:
type: object
properties:
exchange:
type: string
description: TODO
routing_key:
type: string
description: TODO
queue:
type: string
description: TODO
ExpectHTTP:
type: object
properties:
method:
type: string
enum:
- POST
- GET
- DELETE
- PUT
- OPTIONS
- HEAD
description: HTTP method to expect to trigger this behavior
path:
type: string
description: HTTP path to expect to trigger this behavior
ExpectGRPC:
type: object
properties:
service:
type: string
description: GRPC service to expect to trigger this behavior
method:
type: string
description: GRPC method to expect to trigger this behavior
ActionDispatcher:
type: object
properties:
order:
type: integer
format: int64
default: 0
description: used to explicitly order the actions run when a behavior triggers
publish_amqp:
$ref: '#/definitions/ActionPublishAMQP'
publish_kafka:
$ref: '#/definitions/ActionPublishKafka'
redis:
$ref: '#/definitions/ActionRedis'
reply_http:
$ref: '#/definitions/ActionReplyHTTP'
send_http:
$ref: '#/definitions/ActionSendHTTP'
reply_grpc:
$ref: '#/definitions/ActionReplyGRPC'
sleep:
$ref: '#/definitions/ActionSleep'
ActionRedis:
type: array
description: a list of redis commands to run when the
items:
type: string
ActionSendHTTP:
type: object
description: Send a HTTP message as an action
properties:
url:
type: string
description: The URL to send HTTP to
method:
type: string
enum:
- POST
- GET
- DELETE
- PUT
- OPTIONS
- HEAD
description: HTTP method to use for the send
headers:
type: object
additionalProperties: true
description: >-
map of string to string specifying HTTP headers to attach to our
message
body:
type: string
description: 'Text body to send over HTTP, can use templating'
body_from_file:
type: string
description: >-
file path (relative to OPENMOCK_TEMPLATES_DIR of OM) to load HTTP body
from
ActionReplyHTTP:
type: object
description: reply to incoming HTTP that triggered this behavior with a response
properties:
status_code:
type: integer
format: int64
default: 200
description: HTTP status code to reply with
headers:
type: object
additionalProperties: true
description: >-
map of string to string specifying HTTP headers to attach to our
message
body:
type: string
description: 'Text body to send over HTTP, can use templating'
body_from_file:
type: string
description: file name (relative to working directory of OM) to load HTTP body from
ActionReplyGRPC:
type: object
description: reply to incoming GRPC that triggered this behavior with a response
properties:
headers:
type: object
additionalProperties: true
description: >-
map of string to string specifying gRPC headers to attach to our
message
payload:
type: string
description: >-
string payload to send via GRPC, this should be a json string that
maps to the protobuf response object
payload_from_file:
type: string
description: >-
file path (relative to OPENMOCK_TEMPLATES_DIR of OM) to load payload
from, this should be a json string that maps to the protobuf response
object
ActionPublishAMQP:
type: object
description: publish a message on AMQP if this behaviors condition is met
properties:
exchange:
type: string
description: AMQP exchange name
routing_key:
type: string
description: AMQP routing key
payload:
type: string
description: string payload to send on AMQP
payload_from_file:
type: string
description: file path (relative to OPENMOCK_TEMPLATES_DIR of OM) to load body from
ActionPublishKafka:
type: object
description: publish a message on kafka
properties:
topic:
type: string
description: kafka topic to publish on
payload:
type: string
description: string payload to send on AMQP
payload_from_file:
type: string
description: file path (relative to OPENMOCK_TEMPLATES_DIR of OM) to load body from
ActionSleep:
type: object
description: pause the action thread for a time
properties:
duration:
type: string
description: time to wait in seconds; e.g. '1s'