@kaoto/camel-catalog 0.4.4 → 0.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,573 @@
1
+ {
2
+ "assert": {
3
+ "kind": "testContainer",
4
+ "version": "4.10.1",
5
+ "name": "assert",
6
+ "title": "Assert",
7
+ "description": "Assert exception test action.",
8
+ "propertiesSchema": {
9
+ "$schema": "http://json-schema.org/draft-07/schema#",
10
+ "type": "object",
11
+ "properties": {
12
+ "description": {
13
+ "type": "string",
14
+ "title": "Description",
15
+ "description": "Test action description printed when the action is executed.",
16
+ "$comment": "group:advanced"
17
+ },
18
+ "exception": {
19
+ "type": "string",
20
+ "title": "Exception",
21
+ "description": "The type of the Java exception."
22
+ },
23
+ "message": {
24
+ "type": "string",
25
+ "title": "Message",
26
+ "description": "The expected exception message."
27
+ },
28
+ "when": {
29
+ "title": "When",
30
+ "description": "Nested test actions that raise the exception.",
31
+ "type": "array",
32
+ "items": {
33
+ "type": "object",
34
+ "title": "When",
35
+ "description": "Nested test actions that raise the exception."
36
+ }
37
+ }
38
+ },
39
+ "required": [
40
+ "when"
41
+ ],
42
+ "additionalProperties": false }
43
+ },
44
+ "async": {
45
+ "kind": "testContainer",
46
+ "version": "4.10.1",
47
+ "name": "async",
48
+ "title": "Async",
49
+ "description": "Async test action.",
50
+ "propertiesSchema": {
51
+ "$schema": "http://json-schema.org/draft-07/schema#",
52
+ "type": "object",
53
+ "properties": {
54
+ "actions": {
55
+ "title": "Actions",
56
+ "description": "Sequence of test actions to execute.",
57
+ "type": "array",
58
+ "items": {
59
+ "type": "object",
60
+ "title": "Actions",
61
+ "description": "Sequence of test actions to execute."
62
+ }
63
+ },
64
+ "description": {
65
+ "type": "string",
66
+ "title": "Description",
67
+ "description": "Test action description printed when the action is executed.",
68
+ "$comment": "group:advanced"
69
+ },
70
+ "error": {
71
+ "title": "Error",
72
+ "description": "Test actions executed when async container has failed.",
73
+ "$comment": "group:advanced",
74
+ "type": "array",
75
+ "items": {
76
+ "type": "object",
77
+ "title": "Error",
78
+ "description": "Test actions executed when async container has failed.",
79
+ "$comment": "group:advanced"
80
+ }
81
+ },
82
+ "success": {
83
+ "title": "Success",
84
+ "description": "Test actions executed when async container is successful.",
85
+ "$comment": "group:advanced",
86
+ "type": "array",
87
+ "items": {
88
+ "type": "object",
89
+ "title": "Success",
90
+ "description": "Test actions executed when async container is successful.",
91
+ "$comment": "group:advanced"
92
+ }
93
+ }
94
+ },
95
+ "required": [
96
+ "actions"
97
+ ],
98
+ "additionalProperties": false }
99
+ },
100
+ "catch": {
101
+ "kind": "testContainer",
102
+ "version": "4.10.1",
103
+ "name": "catch",
104
+ "title": "Catch",
105
+ "description": "Catch exception test action.",
106
+ "propertiesSchema": {
107
+ "$schema": "http://json-schema.org/draft-07/schema#",
108
+ "type": "object",
109
+ "properties": {
110
+ "description": {
111
+ "type": "string",
112
+ "title": "Description",
113
+ "description": "Test action description printed when the action is executed.",
114
+ "$comment": "group:advanced"
115
+ },
116
+ "exception": {
117
+ "type": "string",
118
+ "title": "Exception",
119
+ "description": "The exception type to catch."
120
+ },
121
+ "when": {
122
+ "title": "When",
123
+ "description": "Nested test actions that may raise an exception.",
124
+ "type": "array",
125
+ "items": {
126
+ "type": "object",
127
+ "title": "When",
128
+ "description": "Nested test actions that may raise an exception."
129
+ }
130
+ }
131
+ },
132
+ "required": [
133
+ "when"
134
+ ],
135
+ "additionalProperties": false }
136
+ },
137
+ "conditional": {
138
+ "kind": "testContainer",
139
+ "version": "4.10.1",
140
+ "name": "conditional",
141
+ "title": "Conditional",
142
+ "description": "Conditional test action.",
143
+ "propertiesSchema": {
144
+ "$schema": "http://json-schema.org/draft-07/schema#",
145
+ "type": "object",
146
+ "properties": {
147
+ "actions": {
148
+ "title": "Actions",
149
+ "description": "Test actions that get executed when the condition matches.",
150
+ "type": "array",
151
+ "items": {
152
+ "type": "object",
153
+ "title": "Actions",
154
+ "description": "Test actions that get executed when the condition matches."
155
+ }
156
+ },
157
+ "description": {
158
+ "type": "string",
159
+ "title": "Description",
160
+ "description": "Test action description printed when the action is executed.",
161
+ "$comment": "group:advanced"
162
+ },
163
+ "when": {
164
+ "type": "string",
165
+ "title": "When",
166
+ "description": "The condition to evaluate."
167
+ }
168
+ },
169
+ "required": [
170
+ "actions",
171
+ "when"
172
+ ],
173
+ "additionalProperties": false }
174
+ },
175
+ "doFinally": {
176
+ "kind": "testContainer",
177
+ "version": "4.10.1",
178
+ "name": "doFinally",
179
+ "title": "DoFinally",
180
+ "description": "Runs test actions after the test.",
181
+ "propertiesSchema": {
182
+ "$schema": "http://json-schema.org/draft-07/schema#",
183
+ "type": "object",
184
+ "properties": {
185
+ "actions": {
186
+ "title": "Actions",
187
+ "description": "Test actions to execute after the test.",
188
+ "type": "array",
189
+ "items": {
190
+ "type": "object",
191
+ "title": "Actions",
192
+ "description": "Test actions to execute after the test."
193
+ }
194
+ },
195
+ "description": {
196
+ "type": "string",
197
+ "title": "Description",
198
+ "description": "Test action description printed when the action is executed.",
199
+ "$comment": "group:advanced"
200
+ }
201
+ },
202
+ "required": [
203
+ "actions"
204
+ ],
205
+ "additionalProperties": false }
206
+ },
207
+ "iterate": {
208
+ "kind": "testContainer",
209
+ "version": "4.10.1",
210
+ "name": "iterate",
211
+ "title": "Iterate",
212
+ "description": "Iterate test action.",
213
+ "propertiesSchema": {
214
+ "$schema": "http://json-schema.org/draft-07/schema#",
215
+ "type": "object",
216
+ "properties": {
217
+ "actions": {
218
+ "title": "Actions",
219
+ "description": "Sequence of test actions to execute.",
220
+ "type": "array",
221
+ "items": {
222
+ "type": "object",
223
+ "title": "Actions",
224
+ "description": "Sequence of test actions to execute."
225
+ }
226
+ },
227
+ "condition": {
228
+ "type": "string",
229
+ "title": "Condition",
230
+ "description": "Condition that keeps the iteration running."
231
+ },
232
+ "description": {
233
+ "type": "string",
234
+ "title": "Description",
235
+ "description": "Test action description printed when the action is executed.",
236
+ "$comment": "group:advanced"
237
+ },
238
+ "index": {
239
+ "type": "string",
240
+ "title": "Index",
241
+ "description": "Test variable holding the current iteration index.",
242
+ "$comment": "group:advanced"
243
+ },
244
+ "startsWith": {
245
+ "type": "integer",
246
+ "title": "StartsWith",
247
+ "description": "Index starts with this value.",
248
+ "default": "1",
249
+ "$comment": "group:advanced"
250
+ },
251
+ "step": {
252
+ "type": "integer",
253
+ "title": "Step",
254
+ "description": "The step added to the index for each iteration.",
255
+ "default": "1",
256
+ "$comment": "group:advanced"
257
+ }
258
+ },
259
+ "required": [
260
+ "actions",
261
+ "condition"
262
+ ],
263
+ "additionalProperties": false }
264
+ },
265
+ "parallel": {
266
+ "kind": "testContainer",
267
+ "version": "4.10.1",
268
+ "name": "parallel",
269
+ "title": "Parallel",
270
+ "description": "Parallel test action.",
271
+ "propertiesSchema": {
272
+ "$schema": "http://json-schema.org/draft-07/schema#",
273
+ "type": "object",
274
+ "properties": {
275
+ "actions": {
276
+ "title": "Actions",
277
+ "description": "Test actions to execute.",
278
+ "type": "array",
279
+ "items": {
280
+ "type": "object",
281
+ "title": "Actions",
282
+ "description": "Test actions to execute."
283
+ }
284
+ },
285
+ "description": {
286
+ "type": "string",
287
+ "title": "Description",
288
+ "description": "Test action description printed when the action is executed.",
289
+ "$comment": "group:advanced"
290
+ }
291
+ },
292
+ "required": [
293
+ "actions"
294
+ ],
295
+ "additionalProperties": false }
296
+ },
297
+ "repeat": {
298
+ "kind": "testContainer",
299
+ "version": "4.10.1",
300
+ "name": "repeat",
301
+ "title": "Repeat",
302
+ "description": "Repeat test action.",
303
+ "propertiesSchema": {
304
+ "$schema": "http://json-schema.org/draft-07/schema#",
305
+ "type": "object",
306
+ "properties": {
307
+ "actions": {
308
+ "title": "Actions",
309
+ "description": "Sequence of test actions to execute.",
310
+ "type": "array",
311
+ "items": {
312
+ "type": "object",
313
+ "title": "Actions",
314
+ "description": "Sequence of test actions to execute."
315
+ }
316
+ },
317
+ "description": {
318
+ "type": "string",
319
+ "title": "Description",
320
+ "description": "Test action description printed when the action is executed.",
321
+ "$comment": "group:advanced"
322
+ },
323
+ "index": {
324
+ "type": "string",
325
+ "title": "Index",
326
+ "description": "Test variable holding the current iteration index.",
327
+ "$comment": "group:advanced"
328
+ },
329
+ "startsWith": {
330
+ "type": "integer",
331
+ "title": "StartsWith",
332
+ "description": "Index starts with this value.",
333
+ "default": "1",
334
+ "$comment": "group:advanced"
335
+ },
336
+ "until": {
337
+ "type": "string",
338
+ "title": "Until",
339
+ "description": "Condition that ends the iteration."
340
+ }
341
+ },
342
+ "required": [
343
+ "actions"
344
+ ],
345
+ "additionalProperties": false }
346
+ },
347
+ "repeatOnError": {
348
+ "kind": "testContainer",
349
+ "version": "4.10.1",
350
+ "name": "repeatOnError",
351
+ "title": "RepeatOnError",
352
+ "description": "Repeat on error test action.",
353
+ "propertiesSchema": {
354
+ "$schema": "http://json-schema.org/draft-07/schema#",
355
+ "type": "object",
356
+ "properties": {
357
+ "actions": {
358
+ "title": "Actions",
359
+ "description": "Sequence of test actions to execute.",
360
+ "type": "array",
361
+ "items": {
362
+ "type": "object",
363
+ "title": "Actions",
364
+ "description": "Sequence of test actions to execute."
365
+ }
366
+ },
367
+ "autoSleep": {
368
+ "type": "integer",
369
+ "title": "AutoSleep",
370
+ "description": "Automatically sleep the time in milliseconds with each attempt."
371
+ },
372
+ "description": {
373
+ "type": "string",
374
+ "title": "Description",
375
+ "description": "Test action description printed when the action is executed.",
376
+ "$comment": "group:advanced"
377
+ },
378
+ "index": {
379
+ "type": "string",
380
+ "title": "Index",
381
+ "description": "Test variable holding the current iteration index.",
382
+ "$comment": "group:advanced"
383
+ },
384
+ "startsWith": {
385
+ "type": "integer",
386
+ "title": "StartsWith",
387
+ "description": "Index starts with this value.",
388
+ "default": "1",
389
+ "$comment": "group:advanced"
390
+ },
391
+ "until": {
392
+ "type": "string",
393
+ "title": "Until",
394
+ "description": "Condition that ends the iteration."
395
+ }
396
+ },
397
+ "required": [
398
+ "actions"
399
+ ],
400
+ "additionalProperties": false }
401
+ },
402
+ "sequential": {
403
+ "kind": "testContainer",
404
+ "version": "4.10.1",
405
+ "name": "sequential",
406
+ "title": "Sequential",
407
+ "description": "Sequential test action.",
408
+ "propertiesSchema": {
409
+ "$schema": "http://json-schema.org/draft-07/schema#",
410
+ "type": "object",
411
+ "properties": {
412
+ "actions": {
413
+ "title": "Actions",
414
+ "description": "Sequence of test actions to execute.",
415
+ "type": "array",
416
+ "items": {
417
+ "type": "object",
418
+ "title": "Actions",
419
+ "description": "Sequence of test actions to execute."
420
+ }
421
+ },
422
+ "description": {
423
+ "type": "string",
424
+ "title": "Description",
425
+ "description": "Test action description printed when the action is executed.",
426
+ "$comment": "group:advanced"
427
+ }
428
+ },
429
+ "required": [
430
+ "actions"
431
+ ],
432
+ "additionalProperties": false }
433
+ },
434
+ "soap-assertFault": {
435
+ "kind": "testContainer",
436
+ "version": "4.10.1",
437
+ "name": "soap-assertFault",
438
+ "group": "soap",
439
+ "module": "citrus-ws",
440
+ "title": "AssertFault",
441
+ "description": "Expects a SOAP fault response as a client.",
442
+ "propertiesSchema": {
443
+ "$schema": "http://json-schema.org/draft-07/schema#",
444
+ "type": "object",
445
+ "properties": {
446
+ "faultActor": {
447
+ "type": "string",
448
+ "title": "FaultActor",
449
+ "description": "The SOAP fault actor.",
450
+ "$comment": "group:advanced"
451
+ },
452
+ "faultCode": {
453
+ "type": "string",
454
+ "title": "FaultCode",
455
+ "description": "The SOAP fault code."
456
+ },
457
+ "faultDetails": {
458
+ "title": "FaultDetails",
459
+ "description": "The SOAP fault details.",
460
+ "$comment": "group:advanced",
461
+ "type": "array",
462
+ "items": {
463
+ "type": "object",
464
+ "properties": {
465
+ "content": {
466
+ "type": "string",
467
+ "title": "Content",
468
+ "description": "The SOAP fault detail content."
469
+ },
470
+ "resource": {
471
+ "type": "string",
472
+ "title": "Resource",
473
+ "description": "The SOAP fault detail loaded from a file resource."
474
+ }
475
+ },
476
+ "additionalProperties": false,
477
+ "title": "FaultDetails",
478
+ "description": "The SOAP fault details.",
479
+ "$comment": "group:advanced"
480
+ }
481
+ },
482
+ "faultString": {
483
+ "type": "string",
484
+ "title": "FaultString",
485
+ "description": "The SOAP fault string."
486
+ },
487
+ "validator": {
488
+ "type": "string",
489
+ "title": "Validator",
490
+ "description": "Explicit message validator.",
491
+ "$comment": "group:advanced"
492
+ },
493
+ "when": {
494
+ "type": "object",
495
+ "title": "When",
496
+ "description": "The test action raising the SOAP fault response message."
497
+ }
498
+ },
499
+ "required": [
500
+ "when"
501
+ ],
502
+ "additionalProperties": false }
503
+ },
504
+ "timer": {
505
+ "kind": "testContainer",
506
+ "version": "4.10.1",
507
+ "name": "timer",
508
+ "title": "Timer",
509
+ "description": "Timer test action.",
510
+ "propertiesSchema": {
511
+ "$schema": "http://json-schema.org/draft-07/schema#",
512
+ "type": "object",
513
+ "properties": {
514
+ "actions": {
515
+ "title": "Actions",
516
+ "description": "Sequence of test actions to execute.",
517
+ "type": "array",
518
+ "items": {
519
+ "type": "object",
520
+ "title": "Actions",
521
+ "description": "Sequence of test actions to execute."
522
+ }
523
+ },
524
+ "autoStop": {
525
+ "type": "boolean",
526
+ "title": "AutoStop",
527
+ "description": "Automatically stop the timer when the test is finished.",
528
+ "default": "true",
529
+ "$comment": "group:advanced"
530
+ },
531
+ "delay": {
532
+ "type": "integer",
533
+ "title": "Delay",
534
+ "description": "Initial delay to wait before starting the timer.",
535
+ "$comment": "group:advanced"
536
+ },
537
+ "description": {
538
+ "type": "string",
539
+ "title": "Description",
540
+ "description": "Test action description printed when the action is executed.",
541
+ "$comment": "group:advanced"
542
+ },
543
+ "fork": {
544
+ "type": "boolean",
545
+ "title": "Fork",
546
+ "description": "Do not block the test while the timer is running.",
547
+ "default": "false",
548
+ "$comment": "group:advanced"
549
+ },
550
+ "id": {
551
+ "type": "string",
552
+ "title": "Id",
553
+ "description": "The id of the timer."
554
+ },
555
+ "interval": {
556
+ "type": "integer",
557
+ "title": "Interval",
558
+ "description": "Timer interval in milliseconds.",
559
+ "default": "1000"
560
+ },
561
+ "repeatCount": {
562
+ "type": "integer",
563
+ "title": "RepeatCount",
564
+ "description": "Number of timer executions.",
565
+ "$comment": "group:advanced"
566
+ }
567
+ },
568
+ "required": [
569
+ "actions"
570
+ ],
571
+ "additionalProperties": false }
572
+ }
573
+ }