@kaoto/camel-catalog 0.6.0 → 0.7.0
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.
- package/dist/camel-catalog/camel-main/4.18.1.redhat-00019/{index-c2b60ed1b80d5703c243149485b59ddf.json → index-8bebcd40b377fba15825a272c711256f.json} +1 -1
- package/dist/camel-catalog/camel-quarkus/3.33.0.redhat-00007/{index-3ed9a5a025adede36713dadb2f88a5f8.json → index-435274155e166feeba853efd9320c43c.json} +1 -1
- package/dist/camel-catalog/camel-springboot/4.18.1.redhat-00014/{index-291f46403fc4b16c3273237d067064a9.json → index-fdd310743f9d9edd7a4923e6f70cd70b.json} +1 -1
- package/dist/camel-catalog/citrus/4.10.0/citrus-catalog-aggregate-test-actions.json +17056 -18138
- package/dist/camel-catalog/citrus/4.10.0/citrus-catalog-aggregate-test-containers.json +422 -526
- package/dist/camel-catalog/citrus/4.10.1/citrus-catalog-aggregate-test-actions.json +17109 -18215
- package/dist/camel-catalog/citrus/4.10.1/citrus-catalog-aggregate-test-containers.json +422 -526
- package/dist/camel-catalog/index.json +17 -6
- package/dist/camel-catalog/xslt/3.0/index.json +19 -0
- package/dist/camel-catalog/xslt/3.0/xslt-xpath-functions.json +12042 -0
- package/dist/index.js +1 -0
- package/dist/types/catalog-index.d.ts +30 -4
- package/package.json +2 -2
|
@@ -1,573 +1,469 @@
|
|
|
1
1
|
{
|
|
2
|
-
"assert": {
|
|
3
|
-
"kind": "testContainer",
|
|
4
|
-
"version": "4.10.0",
|
|
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."
|
|
2
|
+
"assert" : {
|
|
3
|
+
"kind" : "testContainer",
|
|
4
|
+
"version" : "4.10.0",
|
|
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
36
|
}
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
-
"required": [
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"additionalProperties": false }
|
|
39
|
+
"required" : [ "when" ],
|
|
40
|
+
"additionalProperties" : false
|
|
41
|
+
}
|
|
43
42
|
},
|
|
44
|
-
"async": {
|
|
45
|
-
"kind": "testContainer",
|
|
46
|
-
"version": "4.10.0",
|
|
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
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
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"
|
|
43
|
+
"async" : {
|
|
44
|
+
"kind" : "testContainer",
|
|
45
|
+
"version" : "4.10.0",
|
|
46
|
+
"name" : "async",
|
|
47
|
+
"title" : "Async",
|
|
48
|
+
"description" : "Async test action.",
|
|
49
|
+
"propertiesSchema" : {
|
|
50
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
51
|
+
"type" : "object",
|
|
52
|
+
"properties" : {
|
|
53
|
+
"description" : {
|
|
54
|
+
"type" : "string",
|
|
55
|
+
"title" : "Description",
|
|
56
|
+
"description" : "Test action description printed when the action is executed.",
|
|
57
|
+
"$comment" : "group:advanced"
|
|
58
|
+
},
|
|
59
|
+
"error" : {
|
|
60
|
+
"title" : "Error",
|
|
61
|
+
"description" : "Test actions executed when async container has failed.",
|
|
62
|
+
"$comment" : "group:advanced",
|
|
63
|
+
"type" : "array",
|
|
64
|
+
"items" : {
|
|
65
|
+
"type" : "object",
|
|
66
|
+
"title" : "Error",
|
|
67
|
+
"description" : "Test actions executed when async container has failed.",
|
|
68
|
+
"$comment" : "group:advanced"
|
|
80
69
|
}
|
|
81
70
|
},
|
|
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"
|
|
71
|
+
"success" : {
|
|
72
|
+
"title" : "Success",
|
|
73
|
+
"description" : "Test actions executed when async container is successful.",
|
|
74
|
+
"$comment" : "group:advanced",
|
|
75
|
+
"type" : "array",
|
|
76
|
+
"items" : {
|
|
77
|
+
"type" : "object",
|
|
78
|
+
"title" : "Success",
|
|
79
|
+
"description" : "Test actions executed when async container is successful.",
|
|
80
|
+
"$comment" : "group:advanced"
|
|
92
81
|
}
|
|
93
82
|
}
|
|
94
83
|
},
|
|
95
|
-
"required": [
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
"additionalProperties": false }
|
|
84
|
+
"required" : [ ],
|
|
85
|
+
"additionalProperties" : false
|
|
86
|
+
}
|
|
99
87
|
},
|
|
100
|
-
"catch": {
|
|
101
|
-
"kind": "testContainer",
|
|
102
|
-
"version": "4.10.0",
|
|
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."
|
|
88
|
+
"catch" : {
|
|
89
|
+
"kind" : "testContainer",
|
|
90
|
+
"version" : "4.10.0",
|
|
91
|
+
"name" : "catch",
|
|
92
|
+
"title" : "Catch",
|
|
93
|
+
"description" : "Catch exception test action.",
|
|
94
|
+
"propertiesSchema" : {
|
|
95
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
96
|
+
"type" : "object",
|
|
97
|
+
"properties" : {
|
|
98
|
+
"description" : {
|
|
99
|
+
"type" : "string",
|
|
100
|
+
"title" : "Description",
|
|
101
|
+
"description" : "Test action description printed when the action is executed.",
|
|
102
|
+
"$comment" : "group:advanced"
|
|
103
|
+
},
|
|
104
|
+
"exception" : {
|
|
105
|
+
"type" : "string",
|
|
106
|
+
"title" : "Exception",
|
|
107
|
+
"description" : "The exception type to catch."
|
|
108
|
+
},
|
|
109
|
+
"when" : {
|
|
110
|
+
"title" : "When",
|
|
111
|
+
"description" : "Nested test actions that may raise an exception.",
|
|
112
|
+
"type" : "array",
|
|
113
|
+
"items" : {
|
|
114
|
+
"type" : "object",
|
|
115
|
+
"title" : "When",
|
|
116
|
+
"description" : "Nested test actions that may raise an exception."
|
|
129
117
|
}
|
|
130
118
|
}
|
|
131
119
|
},
|
|
132
|
-
"required": [
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
"additionalProperties": false }
|
|
120
|
+
"required" : [ "when" ],
|
|
121
|
+
"additionalProperties" : false
|
|
122
|
+
}
|
|
136
123
|
},
|
|
137
|
-
"conditional": {
|
|
138
|
-
"kind": "testContainer",
|
|
139
|
-
"version": "4.10.0",
|
|
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
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
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."
|
|
124
|
+
"conditional" : {
|
|
125
|
+
"kind" : "testContainer",
|
|
126
|
+
"version" : "4.10.0",
|
|
127
|
+
"name" : "conditional",
|
|
128
|
+
"title" : "Conditional",
|
|
129
|
+
"description" : "Conditional test action.",
|
|
130
|
+
"propertiesSchema" : {
|
|
131
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
132
|
+
"type" : "object",
|
|
133
|
+
"properties" : {
|
|
134
|
+
"description" : {
|
|
135
|
+
"type" : "string",
|
|
136
|
+
"title" : "Description",
|
|
137
|
+
"description" : "Test action description printed when the action is executed.",
|
|
138
|
+
"$comment" : "group:advanced"
|
|
139
|
+
},
|
|
140
|
+
"when" : {
|
|
141
|
+
"type" : "string",
|
|
142
|
+
"title" : "When",
|
|
143
|
+
"description" : "The condition to evaluate."
|
|
167
144
|
}
|
|
168
145
|
},
|
|
169
|
-
"required": [
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
],
|
|
173
|
-
"additionalProperties": false }
|
|
146
|
+
"required" : [ "when" ],
|
|
147
|
+
"additionalProperties" : false
|
|
148
|
+
}
|
|
174
149
|
},
|
|
175
|
-
"doFinally": {
|
|
176
|
-
"kind": "testContainer",
|
|
177
|
-
"version": "4.10.0",
|
|
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
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
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"
|
|
150
|
+
"doFinally" : {
|
|
151
|
+
"kind" : "testContainer",
|
|
152
|
+
"version" : "4.10.0",
|
|
153
|
+
"name" : "doFinally",
|
|
154
|
+
"title" : "DoFinally",
|
|
155
|
+
"description" : "Runs test actions after the test.",
|
|
156
|
+
"propertiesSchema" : {
|
|
157
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
158
|
+
"type" : "object",
|
|
159
|
+
"properties" : {
|
|
160
|
+
"description" : {
|
|
161
|
+
"type" : "string",
|
|
162
|
+
"title" : "Description",
|
|
163
|
+
"description" : "Test action description printed when the action is executed.",
|
|
164
|
+
"$comment" : "group:advanced"
|
|
200
165
|
}
|
|
201
166
|
},
|
|
202
|
-
"required": [
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
"additionalProperties": false }
|
|
167
|
+
"required" : [ ],
|
|
168
|
+
"additionalProperties" : false
|
|
169
|
+
}
|
|
206
170
|
},
|
|
207
|
-
"iterate": {
|
|
208
|
-
"kind": "testContainer",
|
|
209
|
-
"version": "4.10.0",
|
|
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
|
-
"
|
|
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
|
-
"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"
|
|
171
|
+
"iterate" : {
|
|
172
|
+
"kind" : "testContainer",
|
|
173
|
+
"version" : "4.10.0",
|
|
174
|
+
"name" : "iterate",
|
|
175
|
+
"title" : "Iterate",
|
|
176
|
+
"description" : "Iterate test action.",
|
|
177
|
+
"propertiesSchema" : {
|
|
178
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
179
|
+
"type" : "object",
|
|
180
|
+
"properties" : {
|
|
181
|
+
"condition" : {
|
|
182
|
+
"type" : "string",
|
|
183
|
+
"title" : "Condition",
|
|
184
|
+
"description" : "Condition that keeps the iteration running."
|
|
185
|
+
},
|
|
186
|
+
"description" : {
|
|
187
|
+
"type" : "string",
|
|
188
|
+
"title" : "Description",
|
|
189
|
+
"description" : "Test action description printed when the action is executed.",
|
|
190
|
+
"$comment" : "group:advanced"
|
|
191
|
+
},
|
|
192
|
+
"index" : {
|
|
193
|
+
"type" : "string",
|
|
194
|
+
"title" : "Index",
|
|
195
|
+
"description" : "Test variable holding the current iteration index.",
|
|
196
|
+
"$comment" : "group:advanced"
|
|
197
|
+
},
|
|
198
|
+
"startsWith" : {
|
|
199
|
+
"type" : "integer",
|
|
200
|
+
"title" : "StartsWith",
|
|
201
|
+
"description" : "Index starts with this value.",
|
|
202
|
+
"default" : "1",
|
|
203
|
+
"$comment" : "group:advanced"
|
|
204
|
+
},
|
|
205
|
+
"step" : {
|
|
206
|
+
"type" : "integer",
|
|
207
|
+
"title" : "Step",
|
|
208
|
+
"description" : "The step added to the index for each iteration.",
|
|
209
|
+
"default" : "1",
|
|
210
|
+
"$comment" : "group:advanced"
|
|
257
211
|
}
|
|
258
212
|
},
|
|
259
|
-
"required": [
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
],
|
|
263
|
-
"additionalProperties": false }
|
|
213
|
+
"required" : [ "condition" ],
|
|
214
|
+
"additionalProperties" : false
|
|
215
|
+
}
|
|
264
216
|
},
|
|
265
|
-
"parallel": {
|
|
266
|
-
"kind": "testContainer",
|
|
267
|
-
"version": "4.10.0",
|
|
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
|
-
"
|
|
276
|
-
"
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
"
|
|
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"
|
|
217
|
+
"parallel" : {
|
|
218
|
+
"kind" : "testContainer",
|
|
219
|
+
"version" : "4.10.0",
|
|
220
|
+
"name" : "parallel",
|
|
221
|
+
"title" : "Parallel",
|
|
222
|
+
"description" : "Parallel test action.",
|
|
223
|
+
"propertiesSchema" : {
|
|
224
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
225
|
+
"type" : "object",
|
|
226
|
+
"properties" : {
|
|
227
|
+
"description" : {
|
|
228
|
+
"type" : "string",
|
|
229
|
+
"title" : "Description",
|
|
230
|
+
"description" : "Test action description printed when the action is executed.",
|
|
231
|
+
"$comment" : "group:advanced"
|
|
290
232
|
}
|
|
291
233
|
},
|
|
292
|
-
"required": [
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
"additionalProperties": false }
|
|
234
|
+
"required" : [ ],
|
|
235
|
+
"additionalProperties" : false
|
|
236
|
+
}
|
|
296
237
|
},
|
|
297
|
-
"repeat": {
|
|
298
|
-
"kind": "testContainer",
|
|
299
|
-
"version": "4.10.0",
|
|
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
|
-
"
|
|
308
|
-
"
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
"
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
"
|
|
321
|
-
"
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
"
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
"
|
|
328
|
-
|
|
329
|
-
|
|
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."
|
|
238
|
+
"repeat" : {
|
|
239
|
+
"kind" : "testContainer",
|
|
240
|
+
"version" : "4.10.0",
|
|
241
|
+
"name" : "repeat",
|
|
242
|
+
"title" : "Repeat",
|
|
243
|
+
"description" : "Repeat test action.",
|
|
244
|
+
"propertiesSchema" : {
|
|
245
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
246
|
+
"type" : "object",
|
|
247
|
+
"properties" : {
|
|
248
|
+
"description" : {
|
|
249
|
+
"type" : "string",
|
|
250
|
+
"title" : "Description",
|
|
251
|
+
"description" : "Test action description printed when the action is executed.",
|
|
252
|
+
"$comment" : "group:advanced"
|
|
253
|
+
},
|
|
254
|
+
"index" : {
|
|
255
|
+
"type" : "string",
|
|
256
|
+
"title" : "Index",
|
|
257
|
+
"description" : "Test variable holding the current iteration index.",
|
|
258
|
+
"$comment" : "group:advanced"
|
|
259
|
+
},
|
|
260
|
+
"startsWith" : {
|
|
261
|
+
"type" : "integer",
|
|
262
|
+
"title" : "StartsWith",
|
|
263
|
+
"description" : "Index starts with this value.",
|
|
264
|
+
"default" : "1",
|
|
265
|
+
"$comment" : "group:advanced"
|
|
266
|
+
},
|
|
267
|
+
"until" : {
|
|
268
|
+
"type" : "string",
|
|
269
|
+
"title" : "Until",
|
|
270
|
+
"description" : "Condition that ends the iteration."
|
|
340
271
|
}
|
|
341
272
|
},
|
|
342
|
-
"required": [
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
"additionalProperties": false }
|
|
273
|
+
"required" : [ ],
|
|
274
|
+
"additionalProperties" : false
|
|
275
|
+
}
|
|
346
276
|
},
|
|
347
|
-
"repeatOnError": {
|
|
348
|
-
"kind": "testContainer",
|
|
349
|
-
"version": "4.10.0",
|
|
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
|
-
"
|
|
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
|
-
"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."
|
|
277
|
+
"repeatOnError" : {
|
|
278
|
+
"kind" : "testContainer",
|
|
279
|
+
"version" : "4.10.0",
|
|
280
|
+
"name" : "repeatOnError",
|
|
281
|
+
"title" : "RepeatOnError",
|
|
282
|
+
"description" : "Repeat on error test action.",
|
|
283
|
+
"propertiesSchema" : {
|
|
284
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
285
|
+
"type" : "object",
|
|
286
|
+
"properties" : {
|
|
287
|
+
"autoSleep" : {
|
|
288
|
+
"type" : "integer",
|
|
289
|
+
"title" : "AutoSleep",
|
|
290
|
+
"description" : "Automatically sleep the time in milliseconds with each attempt."
|
|
291
|
+
},
|
|
292
|
+
"description" : {
|
|
293
|
+
"type" : "string",
|
|
294
|
+
"title" : "Description",
|
|
295
|
+
"description" : "Test action description printed when the action is executed.",
|
|
296
|
+
"$comment" : "group:advanced"
|
|
297
|
+
},
|
|
298
|
+
"index" : {
|
|
299
|
+
"type" : "string",
|
|
300
|
+
"title" : "Index",
|
|
301
|
+
"description" : "Test variable holding the current iteration index.",
|
|
302
|
+
"$comment" : "group:advanced"
|
|
303
|
+
},
|
|
304
|
+
"startsWith" : {
|
|
305
|
+
"type" : "integer",
|
|
306
|
+
"title" : "StartsWith",
|
|
307
|
+
"description" : "Index starts with this value.",
|
|
308
|
+
"default" : "1",
|
|
309
|
+
"$comment" : "group:advanced"
|
|
310
|
+
},
|
|
311
|
+
"until" : {
|
|
312
|
+
"type" : "string",
|
|
313
|
+
"title" : "Until",
|
|
314
|
+
"description" : "Condition that ends the iteration."
|
|
395
315
|
}
|
|
396
316
|
},
|
|
397
|
-
"required": [
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
"additionalProperties": false }
|
|
317
|
+
"required" : [ ],
|
|
318
|
+
"additionalProperties" : false
|
|
319
|
+
}
|
|
401
320
|
},
|
|
402
|
-
"sequential": {
|
|
403
|
-
"kind": "testContainer",
|
|
404
|
-
"version": "4.10.0",
|
|
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
|
-
"
|
|
413
|
-
"
|
|
414
|
-
"
|
|
415
|
-
"
|
|
416
|
-
"
|
|
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"
|
|
321
|
+
"sequential" : {
|
|
322
|
+
"kind" : "testContainer",
|
|
323
|
+
"version" : "4.10.0",
|
|
324
|
+
"name" : "sequential",
|
|
325
|
+
"title" : "Sequential",
|
|
326
|
+
"description" : "Sequential test action.",
|
|
327
|
+
"propertiesSchema" : {
|
|
328
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
329
|
+
"type" : "object",
|
|
330
|
+
"properties" : {
|
|
331
|
+
"description" : {
|
|
332
|
+
"type" : "string",
|
|
333
|
+
"title" : "Description",
|
|
334
|
+
"description" : "Test action description printed when the action is executed.",
|
|
335
|
+
"$comment" : "group:advanced"
|
|
427
336
|
}
|
|
428
337
|
},
|
|
429
|
-
"required": [
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
"additionalProperties": false }
|
|
338
|
+
"required" : [ ],
|
|
339
|
+
"additionalProperties" : false
|
|
340
|
+
}
|
|
433
341
|
},
|
|
434
|
-
"soap-assertFault": {
|
|
435
|
-
"kind": "testContainer",
|
|
436
|
-
"version": "4.10.0",
|
|
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."
|
|
342
|
+
"soap-assertFault" : {
|
|
343
|
+
"kind" : "testContainer",
|
|
344
|
+
"version" : "4.10.0",
|
|
345
|
+
"name" : "soap-assertFault",
|
|
346
|
+
"group" : "soap",
|
|
347
|
+
"module" : "citrus-ws",
|
|
348
|
+
"title" : "AssertFault",
|
|
349
|
+
"description" : "Expects a SOAP fault response as a client.",
|
|
350
|
+
"propertiesSchema" : {
|
|
351
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
352
|
+
"type" : "object",
|
|
353
|
+
"properties" : {
|
|
354
|
+
"faultActor" : {
|
|
355
|
+
"type" : "string",
|
|
356
|
+
"title" : "FaultActor",
|
|
357
|
+
"description" : "The SOAP fault actor.",
|
|
358
|
+
"$comment" : "group:advanced"
|
|
359
|
+
},
|
|
360
|
+
"faultCode" : {
|
|
361
|
+
"type" : "string",
|
|
362
|
+
"title" : "FaultCode",
|
|
363
|
+
"description" : "The SOAP fault code."
|
|
364
|
+
},
|
|
365
|
+
"faultDetails" : {
|
|
366
|
+
"title" : "FaultDetails",
|
|
367
|
+
"description" : "The SOAP fault details.",
|
|
368
|
+
"$comment" : "group:advanced",
|
|
369
|
+
"type" : "array",
|
|
370
|
+
"items" : {
|
|
371
|
+
"type" : "object",
|
|
372
|
+
"properties" : {
|
|
373
|
+
"content" : {
|
|
374
|
+
"type" : "string",
|
|
375
|
+
"title" : "Content",
|
|
376
|
+
"description" : "The SOAP fault detail content."
|
|
469
377
|
},
|
|
470
|
-
"resource": {
|
|
471
|
-
"type": "string",
|
|
472
|
-
"title": "Resource",
|
|
473
|
-
"description": "The SOAP fault detail loaded from a file resource."
|
|
378
|
+
"resource" : {
|
|
379
|
+
"type" : "string",
|
|
380
|
+
"title" : "Resource",
|
|
381
|
+
"description" : "The SOAP fault detail loaded from a file resource."
|
|
474
382
|
}
|
|
475
383
|
},
|
|
476
|
-
"additionalProperties": false,
|
|
477
|
-
"title": "FaultDetails",
|
|
478
|
-
"description": "The SOAP fault details.",
|
|
479
|
-
"$comment": "group:advanced"
|
|
384
|
+
"additionalProperties" : false,
|
|
385
|
+
"title" : "FaultDetails",
|
|
386
|
+
"description" : "The SOAP fault details.",
|
|
387
|
+
"$comment" : "group:advanced"
|
|
480
388
|
}
|
|
481
389
|
},
|
|
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."
|
|
390
|
+
"faultString" : {
|
|
391
|
+
"type" : "string",
|
|
392
|
+
"title" : "FaultString",
|
|
393
|
+
"description" : "The SOAP fault string."
|
|
394
|
+
},
|
|
395
|
+
"validator" : {
|
|
396
|
+
"type" : "string",
|
|
397
|
+
"title" : "Validator",
|
|
398
|
+
"description" : "Explicit message validator.",
|
|
399
|
+
"$comment" : "group:advanced"
|
|
400
|
+
},
|
|
401
|
+
"when" : {
|
|
402
|
+
"type" : "object",
|
|
403
|
+
"title" : "When",
|
|
404
|
+
"description" : "The test action raising the SOAP fault response message."
|
|
497
405
|
}
|
|
498
406
|
},
|
|
499
|
-
"required": [
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
"additionalProperties": false }
|
|
407
|
+
"required" : [ "when" ],
|
|
408
|
+
"additionalProperties" : false
|
|
409
|
+
}
|
|
503
410
|
},
|
|
504
|
-
"timer": {
|
|
505
|
-
"kind": "testContainer",
|
|
506
|
-
"version": "4.10.0",
|
|
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
|
-
"
|
|
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
|
-
"
|
|
554
|
-
|
|
555
|
-
|
|
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"
|
|
411
|
+
"timer" : {
|
|
412
|
+
"kind" : "testContainer",
|
|
413
|
+
"version" : "4.10.0",
|
|
414
|
+
"name" : "timer",
|
|
415
|
+
"title" : "Timer",
|
|
416
|
+
"description" : "Timer test action.",
|
|
417
|
+
"propertiesSchema" : {
|
|
418
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
419
|
+
"type" : "object",
|
|
420
|
+
"properties" : {
|
|
421
|
+
"autoStop" : {
|
|
422
|
+
"type" : "boolean",
|
|
423
|
+
"title" : "AutoStop",
|
|
424
|
+
"description" : "Automatically stop the timer when the test is finished.",
|
|
425
|
+
"default" : "true",
|
|
426
|
+
"$comment" : "group:advanced"
|
|
427
|
+
},
|
|
428
|
+
"delay" : {
|
|
429
|
+
"type" : "integer",
|
|
430
|
+
"title" : "Delay",
|
|
431
|
+
"description" : "Initial delay to wait before starting the timer.",
|
|
432
|
+
"$comment" : "group:advanced"
|
|
433
|
+
},
|
|
434
|
+
"description" : {
|
|
435
|
+
"type" : "string",
|
|
436
|
+
"title" : "Description",
|
|
437
|
+
"description" : "Test action description printed when the action is executed.",
|
|
438
|
+
"$comment" : "group:advanced"
|
|
439
|
+
},
|
|
440
|
+
"fork" : {
|
|
441
|
+
"type" : "boolean",
|
|
442
|
+
"title" : "Fork",
|
|
443
|
+
"description" : "Do not block the test while the timer is running.",
|
|
444
|
+
"default" : "false",
|
|
445
|
+
"$comment" : "group:advanced"
|
|
446
|
+
},
|
|
447
|
+
"id" : {
|
|
448
|
+
"type" : "string",
|
|
449
|
+
"title" : "Id",
|
|
450
|
+
"description" : "The id of the timer."
|
|
451
|
+
},
|
|
452
|
+
"interval" : {
|
|
453
|
+
"type" : "integer",
|
|
454
|
+
"title" : "Interval",
|
|
455
|
+
"description" : "Timer interval in milliseconds.",
|
|
456
|
+
"default" : "1000"
|
|
457
|
+
},
|
|
458
|
+
"repeatCount" : {
|
|
459
|
+
"type" : "integer",
|
|
460
|
+
"title" : "RepeatCount",
|
|
461
|
+
"description" : "Number of timer executions.",
|
|
462
|
+
"$comment" : "group:advanced"
|
|
566
463
|
}
|
|
567
464
|
},
|
|
568
|
-
"required": [
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
"additionalProperties": false }
|
|
465
|
+
"required" : [ ],
|
|
466
|
+
"additionalProperties" : false
|
|
467
|
+
}
|
|
572
468
|
}
|
|
573
|
-
}
|
|
469
|
+
}
|