@kaoto/camel-catalog 0.3.6 → 0.3.7

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.
Files changed (21) hide show
  1. package/dist/citrus-catalog/citrus/4.9.1/citrus-agent-configuration.json +118 -0
  2. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-endpoints.json +3210 -0
  3. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-functions.json +1069 -0
  4. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-test-actions.json +19185 -0
  5. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-test-containers.json +873 -0
  6. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-validation-matcher.json +464 -0
  7. package/dist/citrus-catalog/citrus/4.9.1/citrus-testcase.json +13872 -0
  8. package/dist/citrus-catalog/citrus/4.9.1/citrus-testcase.xsd +2970 -0
  9. package/dist/citrus-catalog/citrus/4.9.1/index.json +33 -0
  10. package/dist/citrus-catalog/citrus/citrus-agent-configuration.json +118 -0
  11. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-endpoints.json +3210 -0
  12. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-functions.json +1069 -0
  13. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-actions.json +19185 -0
  14. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-containers.json +873 -0
  15. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-validation-matcher.json +464 -0
  16. package/dist/citrus-catalog/citrus/citrus-testcase.json +13872 -0
  17. package/dist/citrus-catalog/citrus/citrus-testcase.xsd +2970 -0
  18. package/dist/citrus-catalog/citrus/index.json +33 -0
  19. package/dist/citrus-catalog/index.json +10 -0
  20. package/dist/types/catalog-index.d.ts +2 -2
  21. package/package.json +5 -3
@@ -0,0 +1,1069 @@
1
+ {
2
+ "average": {
3
+ "kind": "testFunction",
4
+ "name": "average",
5
+ "group": "citrus",
6
+ "title": "Average",
7
+ "propertiesSchema": {
8
+ "$schema": "http://json-schema.org/draft-07/schema#",
9
+ "type": "object",
10
+ "properties": {
11
+ "values": {
12
+ "title": "Values",
13
+ "description": "The list of values to evaluate. Must be numeric values or test variables that evaluate to numeric values.",
14
+ "type": "array",
15
+ "items": {
16
+ "type": "string",
17
+ "title": "Values",
18
+ "description": "The list of values to evaluate. Must be numeric values or test variables that evaluate to numeric values."
19
+ }
20
+ }
21
+ },
22
+ "required": [
23
+ "values"
24
+ ]
25
+ }
26
+ },
27
+ "cdataSection": {
28
+ "kind": "testFunction",
29
+ "name": "cdataSection",
30
+ "group": "citrus",
31
+ "title": "CdataSection",
32
+ "propertiesSchema": {
33
+ "$schema": "http://json-schema.org/draft-07/schema#",
34
+ "type": "object",
35
+ "properties": {
36
+ "value": {
37
+ "type": "string",
38
+ "title": "Value",
39
+ "description": "The value to evaluate."
40
+ }
41
+ },
42
+ "required": [
43
+ "value"
44
+ ]
45
+ }
46
+ },
47
+ "unixTimestamp": {
48
+ "kind": "testFunction",
49
+ "name": "unixTimestamp",
50
+ "group": "citrus",
51
+ "title": "UnixTimestamp",
52
+ "propertiesSchema": {
53
+ "$schema": "http://json-schema.org/draft-07/schema#",
54
+ "type": "object"
55
+ }
56
+ },
57
+ "randomString": {
58
+ "kind": "testFunction",
59
+ "name": "randomString",
60
+ "group": "citrus",
61
+ "title": "RandomString",
62
+ "propertiesSchema": {
63
+ "$schema": "http://json-schema.org/draft-07/schema#",
64
+ "type": "object",
65
+ "properties": {
66
+ "length": {
67
+ "type": "integer",
68
+ "title": "Length",
69
+ "description": "Defines the length of the generated string."
70
+ },
71
+ "minNumberOfLetters": {
72
+ "type": "integer",
73
+ "title": "MinNumberOfLetters",
74
+ "description": "Number of letters that must be part of the generated string."
75
+ },
76
+ "notationMethod": {
77
+ "type": "string",
78
+ "enum": [
79
+ "MIXED",
80
+ "UPPERCASE",
81
+ "LOWERCASE"
82
+ ],
83
+ "title": "NotationMethod",
84
+ "description": "The notation method to use."
85
+ }
86
+ },
87
+ "required": [
88
+ "length"
89
+ ]
90
+ }
91
+ },
92
+ "resolveExternalServiceUrl": {
93
+ "kind": "testFunction",
94
+ "name": "resolveExternalServiceUrl",
95
+ "group": "citrus",
96
+ "title": "ResolveExternalServiceUrl",
97
+ "propertiesSchema": {
98
+ "$schema": "http://json-schema.org/draft-07/schema#",
99
+ "type": "object",
100
+ "properties": {
101
+ "namespace": {
102
+ "type": "string",
103
+ "title": "Namespace",
104
+ "description": "The Kubernetes namespace."
105
+ },
106
+ "serviceName": {
107
+ "type": "string",
108
+ "title": "ServiceName",
109
+ "description": "The Kubernetes service name."
110
+ }
111
+ },
112
+ "required": [
113
+ "serviceName"
114
+ ]
115
+ }
116
+ },
117
+ "urlDecode": {
118
+ "kind": "testFunction",
119
+ "name": "urlDecode",
120
+ "group": "citrus",
121
+ "title": "UrlDecode",
122
+ "propertiesSchema": {
123
+ "$schema": "http://json-schema.org/draft-07/schema#",
124
+ "type": "object",
125
+ "properties": {
126
+ "charset": {
127
+ "type": "string",
128
+ "title": "Charset",
129
+ "description": "Optional charset used to decode.",
130
+ "default": "UTF-8"
131
+ },
132
+ "value": {
133
+ "type": "string",
134
+ "title": "Value",
135
+ "description": "The value to perform substring."
136
+ }
137
+ },
138
+ "required": [
139
+ "value"
140
+ ]
141
+ }
142
+ },
143
+ "localHostAddress": {
144
+ "kind": "testFunction",
145
+ "name": "localHostAddress",
146
+ "group": "citrus",
147
+ "title": "LocalHostAddress",
148
+ "propertiesSchema": {
149
+ "$schema": "http://json-schema.org/draft-07/schema#",
150
+ "type": "object"
151
+ }
152
+ },
153
+ "currentDate": {
154
+ "kind": "testFunction",
155
+ "name": "currentDate",
156
+ "group": "citrus",
157
+ "title": "CurrentDate",
158
+ "propertiesSchema": {
159
+ "$schema": "http://json-schema.org/draft-07/schema#",
160
+ "type": "object",
161
+ "properties": {
162
+ "dateFormat": {
163
+ "type": "string",
164
+ "title": "DateFormat",
165
+ "description": "The date format string."
166
+ },
167
+ "offset": {
168
+ "type": "string",
169
+ "title": "Offset",
170
+ "description": "The date offset."
171
+ },
172
+ "timeZone": {
173
+ "type": "string",
174
+ "title": "TimeZone",
175
+ "description": "The time zone."
176
+ }
177
+ }
178
+ }
179
+ },
180
+ "sum": {
181
+ "kind": "testFunction",
182
+ "name": "sum",
183
+ "group": "citrus",
184
+ "title": "Sum",
185
+ "propertiesSchema": {
186
+ "$schema": "http://json-schema.org/draft-07/schema#",
187
+ "type": "object",
188
+ "properties": {
189
+ "values": {
190
+ "title": "Values",
191
+ "description": "The list of values to evaluate. Must be numeric values or test variables that evaluate to numeric values.",
192
+ "type": "array",
193
+ "items": {
194
+ "type": "string",
195
+ "title": "Values",
196
+ "description": "The list of values to evaluate. Must be numeric values or test variables that evaluate to numeric values."
197
+ }
198
+ }
199
+ },
200
+ "required": [
201
+ "values"
202
+ ]
203
+ }
204
+ },
205
+ "urlEncode": {
206
+ "kind": "testFunction",
207
+ "name": "urlEncode",
208
+ "group": "citrus",
209
+ "title": "UrlEncode",
210
+ "propertiesSchema": {
211
+ "$schema": "http://json-schema.org/draft-07/schema#",
212
+ "type": "object",
213
+ "properties": {
214
+ "charset": {
215
+ "type": "string",
216
+ "title": "Charset",
217
+ "description": "Optional charset used to decode.",
218
+ "default": "UTF-8"
219
+ },
220
+ "value": {
221
+ "type": "string",
222
+ "title": "Value",
223
+ "description": "The value to perform substring."
224
+ }
225
+ },
226
+ "required": [
227
+ "value"
228
+ ]
229
+ }
230
+ },
231
+ "substring": {
232
+ "kind": "testFunction",
233
+ "name": "substring",
234
+ "group": "citrus",
235
+ "title": "Substring",
236
+ "propertiesSchema": {
237
+ "$schema": "http://json-schema.org/draft-07/schema#",
238
+ "type": "object",
239
+ "properties": {
240
+ "beginIndex": {
241
+ "type": "integer",
242
+ "title": "BeginIndex",
243
+ "description": "The substring begin index."
244
+ },
245
+ "endIndex": {
246
+ "type": "integer",
247
+ "title": "EndIndex",
248
+ "description": "Optional substring end index."
249
+ },
250
+ "value": {
251
+ "type": "string",
252
+ "title": "Value",
253
+ "description": "The value to perform substring."
254
+ }
255
+ },
256
+ "required": [
257
+ "beginIndex",
258
+ "value"
259
+ ]
260
+ }
261
+ },
262
+ "translate": {
263
+ "kind": "testFunction",
264
+ "name": "translate",
265
+ "group": "citrus",
266
+ "title": "Translate",
267
+ "propertiesSchema": {
268
+ "$schema": "http://json-schema.org/draft-07/schema#",
269
+ "type": "object",
270
+ "properties": {
271
+ "regex": {
272
+ "type": "string",
273
+ "title": "Regex",
274
+ "description": "The regular expression to evaluate."
275
+ },
276
+ "replacement": {
277
+ "type": "string",
278
+ "title": "Replacement",
279
+ "description": "The transform replacement."
280
+ },
281
+ "value": {
282
+ "type": "string",
283
+ "title": "Value",
284
+ "description": "The value to evaluate."
285
+ }
286
+ },
287
+ "required": [
288
+ "regex",
289
+ "replacement",
290
+ "value"
291
+ ]
292
+ }
293
+ },
294
+ "escapeJson": {
295
+ "kind": "testFunction",
296
+ "name": "escapeJson",
297
+ "group": "citrus",
298
+ "title": "EscapeJson",
299
+ "propertiesSchema": {
300
+ "$schema": "http://json-schema.org/draft-07/schema#",
301
+ "type": "object",
302
+ "properties": {
303
+ "value": {
304
+ "type": "string",
305
+ "title": "Value",
306
+ "description": "The value to evaluate."
307
+ }
308
+ },
309
+ "required": [
310
+ "value"
311
+ ]
312
+ }
313
+ },
314
+ "digestAuthHeader": {
315
+ "kind": "testFunction",
316
+ "name": "digestAuthHeader",
317
+ "group": "citrus",
318
+ "title": "DigestAuthHeader",
319
+ "propertiesSchema": {
320
+ "$schema": "http://json-schema.org/draft-07/schema#",
321
+ "type": "object",
322
+ "properties": {
323
+ "algorithm": {
324
+ "type": "string",
325
+ "title": "Algorithm",
326
+ "description": "The algorithm."
327
+ },
328
+ "method": {
329
+ "type": "string",
330
+ "title": "Method",
331
+ "description": "The method."
332
+ },
333
+ "noncekey": {
334
+ "type": "string",
335
+ "title": "Noncekey",
336
+ "description": "The noncekey."
337
+ },
338
+ "opaque": {
339
+ "type": "string",
340
+ "title": "Opaque",
341
+ "description": "The opaque."
342
+ },
343
+ "password": {
344
+ "type": "string",
345
+ "title": "Password",
346
+ "description": "The password."
347
+ },
348
+ "realm": {
349
+ "type": "string",
350
+ "title": "Realm",
351
+ "description": "The realm."
352
+ },
353
+ "uri": {
354
+ "type": "string",
355
+ "title": "Uri",
356
+ "description": "The uri."
357
+ },
358
+ "username": {
359
+ "type": "string",
360
+ "title": "Username",
361
+ "description": "The username."
362
+ }
363
+ },
364
+ "required": [
365
+ "algorithm",
366
+ "method",
367
+ "noncekey",
368
+ "opaque",
369
+ "password",
370
+ "realm",
371
+ "uri",
372
+ "username"
373
+ ]
374
+ }
375
+ },
376
+ "xpath": {
377
+ "kind": "testFunction",
378
+ "name": "xpath",
379
+ "group": "citrus",
380
+ "title": "Xpath",
381
+ "propertiesSchema": {
382
+ "$schema": "http://json-schema.org/draft-07/schema#",
383
+ "type": "object",
384
+ "properties": {
385
+ "expression": {
386
+ "type": "string",
387
+ "title": "Expression",
388
+ "description": "The XPath expression to evaluate."
389
+ },
390
+ "source": {
391
+ "type": "string",
392
+ "title": "Source",
393
+ "description": "The XML source."
394
+ }
395
+ },
396
+ "required": [
397
+ "source"
398
+ ]
399
+ }
400
+ },
401
+ "resolveServiceUrl": {
402
+ "kind": "testFunction",
403
+ "name": "resolveServiceUrl",
404
+ "group": "citrus",
405
+ "title": "ResolveServiceUrl",
406
+ "propertiesSchema": {
407
+ "$schema": "http://json-schema.org/draft-07/schema#",
408
+ "type": "object",
409
+ "properties": {
410
+ "secure": {
411
+ "type": "boolean",
412
+ "title": "Secure",
413
+ "description": "When enabled use secure Http connection."
414
+ },
415
+ "serviceName": {
416
+ "type": "string",
417
+ "title": "ServiceName",
418
+ "description": "The service name."
419
+ },
420
+ "servicePort": {
421
+ "type": "integer",
422
+ "title": "ServicePort",
423
+ "description": "The service port."
424
+ }
425
+ },
426
+ "required": [
427
+ "serviceName",
428
+ "servicePort"
429
+ ]
430
+ }
431
+ },
432
+ "lowerCase": {
433
+ "kind": "testFunction",
434
+ "name": "lowerCase",
435
+ "group": "citrus",
436
+ "title": "LowerCase",
437
+ "propertiesSchema": {
438
+ "$schema": "http://json-schema.org/draft-07/schema#",
439
+ "type": "object",
440
+ "properties": {
441
+ "value": {
442
+ "type": "string",
443
+ "title": "Value",
444
+ "description": "The value to evaluate."
445
+ }
446
+ },
447
+ "required": [
448
+ "value"
449
+ ]
450
+ }
451
+ },
452
+ "randomNumber": {
453
+ "kind": "testFunction",
454
+ "name": "randomNumber",
455
+ "group": "citrus",
456
+ "title": "RandomNumber",
457
+ "propertiesSchema": {
458
+ "$schema": "http://json-schema.org/draft-07/schema#",
459
+ "type": "object",
460
+ "properties": {
461
+ "length": {
462
+ "type": "integer",
463
+ "title": "Length",
464
+ "description": "Defines the length of the generated number."
465
+ },
466
+ "paddingOn": {
467
+ "type": "boolean",
468
+ "title": "PaddingOn",
469
+ "description": "When enabled the generated number is filled with zero numbers to always get the given length."
470
+ }
471
+ },
472
+ "required": [
473
+ "length"
474
+ ]
475
+ }
476
+ },
477
+ "changeDate": {
478
+ "kind": "testFunction",
479
+ "name": "changeDate",
480
+ "group": "citrus",
481
+ "title": "ChangeDate",
482
+ "propertiesSchema": {
483
+ "$schema": "http://json-schema.org/draft-07/schema#",
484
+ "type": "object",
485
+ "properties": {
486
+ "dateFormat": {
487
+ "type": "string",
488
+ "title": "DateFormat",
489
+ "description": "The date format string."
490
+ },
491
+ "offset": {
492
+ "type": "string",
493
+ "title": "Offset",
494
+ "description": "The date offset."
495
+ },
496
+ "value": {
497
+ "type": "string",
498
+ "title": "Value",
499
+ "description": "The value to evaluate."
500
+ }
501
+ },
502
+ "required": [
503
+ "value"
504
+ ]
505
+ }
506
+ },
507
+ "randomEnumValue": {
508
+ "kind": "testFunction",
509
+ "name": "randomEnumValue",
510
+ "group": "citrus",
511
+ "title": "RandomEnumValue",
512
+ "propertiesSchema": {
513
+ "$schema": "http://json-schema.org/draft-07/schema#",
514
+ "type": "object",
515
+ "properties": {
516
+ "values": {
517
+ "title": "Values",
518
+ "description": "The list of values to evaluate.",
519
+ "type": "array",
520
+ "items": {
521
+ "type": "string",
522
+ "title": "Values",
523
+ "description": "The list of values to evaluate."
524
+ }
525
+ }
526
+ },
527
+ "required": [
528
+ "values"
529
+ ]
530
+ }
531
+ },
532
+ "escapeXml": {
533
+ "kind": "testFunction",
534
+ "name": "escapeXml",
535
+ "group": "citrus",
536
+ "title": "EscapeXml",
537
+ "propertiesSchema": {
538
+ "$schema": "http://json-schema.org/draft-07/schema#",
539
+ "type": "object",
540
+ "properties": {
541
+ "value": {
542
+ "type": "string",
543
+ "title": "Value",
544
+ "description": "The value to evaluate."
545
+ }
546
+ },
547
+ "required": [
548
+ "value"
549
+ ]
550
+ }
551
+ },
552
+ "substringAfter": {
553
+ "kind": "testFunction",
554
+ "name": "substringAfter",
555
+ "group": "citrus",
556
+ "title": "SubstringAfter",
557
+ "propertiesSchema": {
558
+ "$schema": "http://json-schema.org/draft-07/schema#",
559
+ "type": "object",
560
+ "properties": {
561
+ "searchString": {
562
+ "type": "string",
563
+ "title": "SearchString",
564
+ "description": "Search string used to substring after the occurrence."
565
+ },
566
+ "value": {
567
+ "type": "string",
568
+ "title": "Value",
569
+ "description": "The value to perform substring."
570
+ }
571
+ },
572
+ "required": [
573
+ "searchString",
574
+ "value"
575
+ ]
576
+ }
577
+ },
578
+ "randomUUID": {
579
+ "kind": "testFunction",
580
+ "name": "randomUUID",
581
+ "group": "citrus",
582
+ "title": "RandomUUID",
583
+ "propertiesSchema": {
584
+ "$schema": "http://json-schema.org/draft-07/schema#",
585
+ "type": "object"
586
+ }
587
+ },
588
+ "jsonPatch": {
589
+ "kind": "testFunction",
590
+ "name": "jsonPatch",
591
+ "group": "citrus",
592
+ "title": "JsonPatch",
593
+ "propertiesSchema": {
594
+ "$schema": "http://json-schema.org/draft-07/schema#",
595
+ "type": "object",
596
+ "properties": {
597
+ "operations": {
598
+ "title": "Operations",
599
+ "description": "List of JSON Patch operations (add, remove, replace, move, copy) applied to the source JSON.",
600
+ "type": "array",
601
+ "items": {
602
+ "type": "object",
603
+ "properties": {
604
+ "operation": {
605
+ "type": "string",
606
+ "title": "Operation",
607
+ "description": "JSON Patch operation type. One of: add, remove, replace, move, copy."
608
+ },
609
+ "path": {
610
+ "type": "string",
611
+ "title": "Path",
612
+ "description": "JSONPath expression to the target element (e.g. '$.items[0].name')."
613
+ },
614
+ "value": {
615
+ "type": "string",
616
+ "title": "Value",
617
+ "description": "Value for add/replace operations, or source path for move/copy operations."
618
+ }
619
+ },
620
+ "required": [
621
+ "operation",
622
+ "path"
623
+ ],
624
+ "title": "Operations",
625
+ "description": "List of JSON Patch operations (add, remove, replace, move, copy) applied to the source JSON."
626
+ }
627
+ },
628
+ "source": {
629
+ "type": "string",
630
+ "title": "Source",
631
+ "description": "The JSON source content to be patched."
632
+ }
633
+ },
634
+ "required": [
635
+ "operations",
636
+ "source"
637
+ ]
638
+ }
639
+ },
640
+ "floor": {
641
+ "kind": "testFunction",
642
+ "name": "floor",
643
+ "group": "citrus",
644
+ "title": "Floor",
645
+ "propertiesSchema": {
646
+ "$schema": "http://json-schema.org/draft-07/schema#",
647
+ "type": "object",
648
+ "properties": {
649
+ "value": {
650
+ "type": "number",
651
+ "title": "Value",
652
+ "description": "The numeric value to evaluate."
653
+ }
654
+ },
655
+ "required": [
656
+ "value"
657
+ ]
658
+ }
659
+ },
660
+ "stringLength": {
661
+ "kind": "testFunction",
662
+ "name": "stringLength",
663
+ "group": "citrus",
664
+ "title": "StringLength",
665
+ "propertiesSchema": {
666
+ "$schema": "http://json-schema.org/draft-07/schema#",
667
+ "type": "object",
668
+ "properties": {
669
+ "value": {
670
+ "type": "string",
671
+ "title": "Value",
672
+ "description": "The value to evaluate."
673
+ }
674
+ },
675
+ "required": [
676
+ "value"
677
+ ]
678
+ }
679
+ },
680
+ "encodeBase64": {
681
+ "kind": "testFunction",
682
+ "name": "encodeBase64",
683
+ "group": "citrus",
684
+ "title": "EncodeBase64",
685
+ "propertiesSchema": {
686
+ "$schema": "http://json-schema.org/draft-07/schema#",
687
+ "type": "object",
688
+ "properties": {
689
+ "charset": {
690
+ "type": "string",
691
+ "title": "Charset",
692
+ "description": "Optional charset used to decode.",
693
+ "default": "UTF-8"
694
+ },
695
+ "value": {
696
+ "type": "string",
697
+ "title": "Value",
698
+ "description": "The value to perform substring."
699
+ }
700
+ },
701
+ "required": [
702
+ "value"
703
+ ]
704
+ }
705
+ },
706
+ "ceiling": {
707
+ "kind": "testFunction",
708
+ "name": "ceiling",
709
+ "group": "citrus",
710
+ "title": "Ceiling",
711
+ "propertiesSchema": {
712
+ "$schema": "http://json-schema.org/draft-07/schema#",
713
+ "type": "object",
714
+ "properties": {
715
+ "value": {
716
+ "type": "number",
717
+ "title": "Value",
718
+ "description": "The numeric value to evaluate."
719
+ }
720
+ },
721
+ "required": [
722
+ "value"
723
+ ]
724
+ }
725
+ },
726
+ "randomNumberGenerator": {
727
+ "kind": "testFunction",
728
+ "name": "randomNumberGenerator",
729
+ "group": "citrus",
730
+ "title": "RandomNumberGenerator",
731
+ "propertiesSchema": {
732
+ "$schema": "http://json-schema.org/draft-07/schema#",
733
+ "type": "object"
734
+ }
735
+ },
736
+ "systemProperty": {
737
+ "kind": "testFunction",
738
+ "name": "systemProperty",
739
+ "group": "citrus",
740
+ "title": "SystemProperty",
741
+ "propertiesSchema": {
742
+ "$schema": "http://json-schema.org/draft-07/schema#",
743
+ "type": "object",
744
+ "properties": {
745
+ "defaultValue": {
746
+ "type": "string",
747
+ "title": "DefaultValue",
748
+ "description": "The default value when system property is not set."
749
+ },
750
+ "propertyName": {
751
+ "type": "string",
752
+ "title": "PropertyName",
753
+ "description": "The system property name."
754
+ }
755
+ },
756
+ "required": [
757
+ "propertyName"
758
+ ]
759
+ }
760
+ },
761
+ "jsonPath": {
762
+ "kind": "testFunction",
763
+ "name": "jsonPath",
764
+ "group": "citrus",
765
+ "title": "JsonPath",
766
+ "propertiesSchema": {
767
+ "$schema": "http://json-schema.org/draft-07/schema#",
768
+ "type": "object",
769
+ "properties": {
770
+ "expression": {
771
+ "type": "string",
772
+ "title": "Expression",
773
+ "description": "The JsonPath expression to evaluate."
774
+ },
775
+ "source": {
776
+ "type": "string",
777
+ "title": "Source",
778
+ "description": "The Json source."
779
+ }
780
+ },
781
+ "required": [
782
+ "source"
783
+ ]
784
+ }
785
+ },
786
+ "concat": {
787
+ "kind": "testFunction",
788
+ "name": "concat",
789
+ "group": "citrus",
790
+ "title": "Concat",
791
+ "propertiesSchema": {
792
+ "$schema": "http://json-schema.org/draft-07/schema#",
793
+ "type": "object",
794
+ "properties": {
795
+ "values": {
796
+ "title": "Values",
797
+ "description": "The list of values to evaluate.",
798
+ "type": "array",
799
+ "items": {
800
+ "type": "string",
801
+ "title": "Values",
802
+ "description": "The list of values to evaluate."
803
+ }
804
+ }
805
+ },
806
+ "required": [
807
+ "values"
808
+ ]
809
+ }
810
+ },
811
+ "message": {
812
+ "kind": "testFunction",
813
+ "name": "message",
814
+ "group": "citrus",
815
+ "title": "Message",
816
+ "propertiesSchema": {
817
+ "$schema": "http://json-schema.org/draft-07/schema#",
818
+ "type": "object",
819
+ "properties": {
820
+ "value": {
821
+ "type": "string",
822
+ "title": "Value",
823
+ "description": "The value to evaluate."
824
+ }
825
+ },
826
+ "required": [
827
+ "value"
828
+ ]
829
+ }
830
+ },
831
+ "round": {
832
+ "kind": "testFunction",
833
+ "name": "round",
834
+ "group": "citrus",
835
+ "title": "Round",
836
+ "propertiesSchema": {
837
+ "$schema": "http://json-schema.org/draft-07/schema#",
838
+ "type": "object",
839
+ "properties": {
840
+ "value": {
841
+ "type": "number",
842
+ "title": "Value",
843
+ "description": "The numeric value to evaluate."
844
+ }
845
+ },
846
+ "required": [
847
+ "value"
848
+ ]
849
+ }
850
+ },
851
+ "decodeBase64": {
852
+ "kind": "testFunction",
853
+ "name": "decodeBase64",
854
+ "group": "citrus",
855
+ "title": "DecodeBase64",
856
+ "propertiesSchema": {
857
+ "$schema": "http://json-schema.org/draft-07/schema#",
858
+ "type": "object",
859
+ "properties": {
860
+ "charset": {
861
+ "type": "string",
862
+ "title": "Charset",
863
+ "description": "Optional charset used to decode.",
864
+ "default": "UTF-8"
865
+ },
866
+ "value": {
867
+ "type": "string",
868
+ "title": "Value",
869
+ "description": "The value to perform substring."
870
+ }
871
+ },
872
+ "required": [
873
+ "value"
874
+ ]
875
+ }
876
+ },
877
+ "serviceClusterIp": {
878
+ "kind": "testFunction",
879
+ "name": "serviceClusterIp",
880
+ "group": "citrus",
881
+ "title": "ServiceClusterIp",
882
+ "propertiesSchema": {
883
+ "$schema": "http://json-schema.org/draft-07/schema#",
884
+ "type": "object",
885
+ "properties": {
886
+ "namespace": {
887
+ "type": "string",
888
+ "title": "Namespace",
889
+ "description": "The Kubernetes namespace."
890
+ },
891
+ "serviceName": {
892
+ "type": "string",
893
+ "title": "ServiceName",
894
+ "description": "The Kubernetes service name."
895
+ }
896
+ },
897
+ "required": [
898
+ "serviceName"
899
+ ]
900
+ }
901
+ },
902
+ "randomPattern": {
903
+ "kind": "testFunction",
904
+ "name": "randomPattern",
905
+ "group": "citrus",
906
+ "title": "RandomPattern",
907
+ "propertiesSchema": {
908
+ "$schema": "http://json-schema.org/draft-07/schema#",
909
+ "type": "object",
910
+ "properties": {
911
+ "value": {
912
+ "type": "string",
913
+ "title": "Value",
914
+ "description": "The value to evaluate."
915
+ }
916
+ },
917
+ "required": [
918
+ "value"
919
+ ]
920
+ }
921
+ },
922
+ "upperCase": {
923
+ "kind": "testFunction",
924
+ "name": "upperCase",
925
+ "group": "citrus",
926
+ "title": "UpperCase",
927
+ "propertiesSchema": {
928
+ "$schema": "http://json-schema.org/draft-07/schema#",
929
+ "type": "object",
930
+ "properties": {
931
+ "value": {
932
+ "type": "string",
933
+ "title": "Value",
934
+ "description": "The value to evaluate."
935
+ }
936
+ },
937
+ "required": [
938
+ "value"
939
+ ]
940
+ }
941
+ },
942
+ "absolute": {
943
+ "kind": "testFunction",
944
+ "name": "absolute",
945
+ "group": "citrus",
946
+ "title": "Absolute",
947
+ "propertiesSchema": {
948
+ "$schema": "http://json-schema.org/draft-07/schema#",
949
+ "type": "object",
950
+ "properties": {
951
+ "value": {
952
+ "type": "number",
953
+ "title": "Value",
954
+ "description": "The numeric value to evaluate."
955
+ }
956
+ },
957
+ "required": [
958
+ "value"
959
+ ]
960
+ }
961
+ },
962
+ "readFile": {
963
+ "kind": "testFunction",
964
+ "name": "readFile",
965
+ "group": "citrus",
966
+ "title": "ReadFile",
967
+ "propertiesSchema": {
968
+ "$schema": "http://json-schema.org/draft-07/schema#",
969
+ "type": "object",
970
+ "properties": {
971
+ "base64": {
972
+ "type": "boolean",
973
+ "title": "Base64",
974
+ "description": "When enabled the read file content is converted into bas64."
975
+ },
976
+ "filePath": {
977
+ "type": "string",
978
+ "title": "FilePath",
979
+ "description": "The file path to read."
980
+ },
981
+ "useCharset": {
982
+ "type": "boolean",
983
+ "title": "UseCharset",
984
+ "description": "When enabled the charset to use is derived from the file path before converting into bas64.",
985
+ "$comment": "group:advanced"
986
+ }
987
+ },
988
+ "required": [
989
+ "filePath"
990
+ ]
991
+ }
992
+ },
993
+ "maximum": {
994
+ "kind": "testFunction",
995
+ "name": "maximum",
996
+ "group": "citrus",
997
+ "title": "Maximum",
998
+ "propertiesSchema": {
999
+ "$schema": "http://json-schema.org/draft-07/schema#",
1000
+ "type": "object",
1001
+ "properties": {
1002
+ "values": {
1003
+ "title": "Values",
1004
+ "description": "The list of values to evaluate. Must be numeric values or test variables that evaluate to numeric values.",
1005
+ "type": "array",
1006
+ "items": {
1007
+ "type": "string",
1008
+ "title": "Values",
1009
+ "description": "The list of values to evaluate. Must be numeric values or test variables that evaluate to numeric values."
1010
+ }
1011
+ }
1012
+ },
1013
+ "required": [
1014
+ "values"
1015
+ ]
1016
+ }
1017
+ },
1018
+ "substringBefore": {
1019
+ "kind": "testFunction",
1020
+ "name": "substringBefore",
1021
+ "group": "citrus",
1022
+ "title": "SubstringBefore",
1023
+ "propertiesSchema": {
1024
+ "$schema": "http://json-schema.org/draft-07/schema#",
1025
+ "type": "object",
1026
+ "properties": {
1027
+ "searchString": {
1028
+ "type": "string",
1029
+ "title": "SearchString",
1030
+ "description": "Search string used to substring before the occurrence."
1031
+ },
1032
+ "value": {
1033
+ "type": "string",
1034
+ "title": "Value",
1035
+ "description": "The value to perform substring."
1036
+ }
1037
+ },
1038
+ "required": [
1039
+ "searchString",
1040
+ "value"
1041
+ ]
1042
+ }
1043
+ },
1044
+ "minimum": {
1045
+ "kind": "testFunction",
1046
+ "name": "minimum",
1047
+ "group": "citrus",
1048
+ "title": "Minimum",
1049
+ "propertiesSchema": {
1050
+ "$schema": "http://json-schema.org/draft-07/schema#",
1051
+ "type": "object",
1052
+ "properties": {
1053
+ "values": {
1054
+ "title": "Values",
1055
+ "description": "The list of values to evaluate. Must be numeric values or test variables that evaluate to numeric values.",
1056
+ "type": "array",
1057
+ "items": {
1058
+ "type": "string",
1059
+ "title": "Values",
1060
+ "description": "The list of values to evaluate. Must be numeric values or test variables that evaluate to numeric values."
1061
+ }
1062
+ }
1063
+ },
1064
+ "required": [
1065
+ "values"
1066
+ ]
1067
+ }
1068
+ }
1069
+ }