cucumber-messages 3.0.1 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cucumber/messages_pb.rb +450 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2df69c8821b691f49c37a289dc66bef9bfaabb59cc5e186b6fd34f5ceefe567c
|
4
|
+
data.tar.gz: eb0a25e288312ccd80ebf6024101c9710410eed6d3b642c1f7f86f1832ec5ed1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be206fce93cc588322c80b053f8dfd7f3309adb61a6d7fcefbebb0b740a6d4c611102e19a1d7e3ae79dc8af8d0af0f8aa3fa1ec51253ad11d0365a90e5228e8d
|
7
|
+
data.tar.gz: 5be58682a6ca31801a3f38c499612e4bd06cf2bffc8a51aecadcad644a976993d5b98e69b5f75872e339f768e36553636f3ec78b20aadd9a00bbe4095b3968f2
|
@@ -0,0 +1,450 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: messages.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/protobuf/timestamp_pb'
|
7
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_message "io.cucumber.messages.Envelope" do
|
9
|
+
oneof :message do
|
10
|
+
optional :source, :message, 1, "io.cucumber.messages.Source"
|
11
|
+
optional :gherkinDocument, :message, 2, "io.cucumber.messages.GherkinDocument"
|
12
|
+
optional :pickle, :message, 3, "io.cucumber.messages.Pickle"
|
13
|
+
optional :attachment, :message, 4, "io.cucumber.messages.Attachment"
|
14
|
+
optional :testCaseStarted, :message, 5, "io.cucumber.messages.TestCaseStarted"
|
15
|
+
optional :testStepStarted, :message, 6, "io.cucumber.messages.TestStepStarted"
|
16
|
+
optional :testStepFinished, :message, 7, "io.cucumber.messages.TestStepFinished"
|
17
|
+
optional :testCaseFinished, :message, 8, "io.cucumber.messages.TestCaseFinished"
|
18
|
+
optional :testHookStarted, :message, 9, "io.cucumber.messages.TestHookStarted"
|
19
|
+
optional :testHookFinished, :message, 10, "io.cucumber.messages.TestHookFinished"
|
20
|
+
optional :pickleAccepted, :message, 11, "io.cucumber.messages.PickleAccepted"
|
21
|
+
optional :pickleRejected, :message, 12, "io.cucumber.messages.PickleRejected"
|
22
|
+
optional :testCasePrepared, :message, 13, "io.cucumber.messages.TestCasePrepared"
|
23
|
+
optional :testRunStarted, :message, 14, "io.cucumber.messages.TestRunStarted"
|
24
|
+
optional :testRunFinished, :message, 15, "io.cucumber.messages.TestRunFinished"
|
25
|
+
optional :commandStart, :message, 16, "io.cucumber.messages.CommandStart"
|
26
|
+
optional :commandActionComplete, :message, 17, "io.cucumber.messages.CommandActionComplete"
|
27
|
+
optional :commandRunBeforeTestRunHooks, :message, 18, "io.cucumber.messages.CommandRunBeforeTestRunHooks"
|
28
|
+
optional :commandInitializeTestCase, :message, 19, "io.cucumber.messages.CommandInitializeTestCase"
|
29
|
+
optional :commandRunBeforeTestCaseHook, :message, 20, "io.cucumber.messages.CommandRunBeforeTestCaseHook"
|
30
|
+
optional :commandRunTestStep, :message, 21, "io.cucumber.messages.CommandRunTestStep"
|
31
|
+
optional :commandRunAfterTestCaseHook, :message, 22, "io.cucumber.messages.CommandRunAfterTestCaseHook"
|
32
|
+
optional :commandRunAfterTestRunHooks, :message, 23, "io.cucumber.messages.CommandRunAfterTestRunHooks"
|
33
|
+
optional :commandGenerateSnippet, :message, 24, "io.cucumber.messages.CommandGenerateSnippet"
|
34
|
+
optional :commandError, :string, 25
|
35
|
+
end
|
36
|
+
end
|
37
|
+
add_message "io.cucumber.messages.Location" do
|
38
|
+
optional :line, :uint32, 1
|
39
|
+
optional :column, :uint32, 2
|
40
|
+
end
|
41
|
+
add_message "io.cucumber.messages.SourceReference" do
|
42
|
+
optional :uri, :string, 1
|
43
|
+
optional :location, :message, 2, "io.cucumber.messages.Location"
|
44
|
+
end
|
45
|
+
add_message "io.cucumber.messages.Media" do
|
46
|
+
optional :encoding, :enum, 1, "io.cucumber.messages.Media.Encoding"
|
47
|
+
optional :content_type, :string, 2
|
48
|
+
end
|
49
|
+
add_enum "io.cucumber.messages.Media.Encoding" do
|
50
|
+
value :BASE64, 0
|
51
|
+
value :UTF8, 1
|
52
|
+
end
|
53
|
+
add_message "io.cucumber.messages.Source" do
|
54
|
+
optional :uri, :string, 1
|
55
|
+
optional :data, :string, 2
|
56
|
+
optional :media, :message, 3, "io.cucumber.messages.Media"
|
57
|
+
end
|
58
|
+
add_message "io.cucumber.messages.GherkinDocument" do
|
59
|
+
optional :uri, :string, 1
|
60
|
+
optional :feature, :message, 2, "io.cucumber.messages.GherkinDocument.Feature"
|
61
|
+
repeated :comments, :message, 3, "io.cucumber.messages.GherkinDocument.Comment"
|
62
|
+
end
|
63
|
+
add_message "io.cucumber.messages.GherkinDocument.Comment" do
|
64
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
65
|
+
optional :text, :string, 2
|
66
|
+
end
|
67
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature" do
|
68
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
69
|
+
repeated :tags, :message, 2, "io.cucumber.messages.GherkinDocument.Feature.Tag"
|
70
|
+
optional :language, :string, 3
|
71
|
+
optional :keyword, :string, 4
|
72
|
+
optional :name, :string, 5
|
73
|
+
optional :description, :string, 6
|
74
|
+
repeated :children, :message, 7, "io.cucumber.messages.GherkinDocument.Feature.FeatureChild"
|
75
|
+
end
|
76
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.Tag" do
|
77
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
78
|
+
optional :name, :string, 2
|
79
|
+
end
|
80
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.FeatureChild" do
|
81
|
+
oneof :value do
|
82
|
+
optional :rule, :message, 1, "io.cucumber.messages.GherkinDocument.Feature.FeatureChild.Rule"
|
83
|
+
optional :background, :message, 2, "io.cucumber.messages.GherkinDocument.Feature.Background"
|
84
|
+
optional :scenario, :message, 3, "io.cucumber.messages.GherkinDocument.Feature.Scenario"
|
85
|
+
end
|
86
|
+
end
|
87
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.FeatureChild.Rule" do
|
88
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
89
|
+
optional :keyword, :string, 2
|
90
|
+
optional :name, :string, 3
|
91
|
+
optional :description, :string, 4
|
92
|
+
repeated :children, :message, 5, "io.cucumber.messages.GherkinDocument.Feature.FeatureChild.RuleChild"
|
93
|
+
end
|
94
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.FeatureChild.RuleChild" do
|
95
|
+
oneof :value do
|
96
|
+
optional :background, :message, 1, "io.cucumber.messages.GherkinDocument.Feature.Background"
|
97
|
+
optional :scenario, :message, 2, "io.cucumber.messages.GherkinDocument.Feature.Scenario"
|
98
|
+
end
|
99
|
+
end
|
100
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.Background" do
|
101
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
102
|
+
optional :keyword, :string, 2
|
103
|
+
optional :name, :string, 3
|
104
|
+
optional :description, :string, 4
|
105
|
+
repeated :steps, :message, 5, "io.cucumber.messages.GherkinDocument.Feature.Step"
|
106
|
+
end
|
107
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.Scenario" do
|
108
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
109
|
+
repeated :tags, :message, 2, "io.cucumber.messages.GherkinDocument.Feature.Tag"
|
110
|
+
optional :keyword, :string, 3
|
111
|
+
optional :name, :string, 4
|
112
|
+
optional :description, :string, 5
|
113
|
+
repeated :steps, :message, 6, "io.cucumber.messages.GherkinDocument.Feature.Step"
|
114
|
+
repeated :examples, :message, 7, "io.cucumber.messages.GherkinDocument.Feature.Scenario.Examples"
|
115
|
+
end
|
116
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.Scenario.Examples" do
|
117
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
118
|
+
repeated :tags, :message, 2, "io.cucumber.messages.GherkinDocument.Feature.Tag"
|
119
|
+
optional :keyword, :string, 3
|
120
|
+
optional :name, :string, 4
|
121
|
+
optional :description, :string, 5
|
122
|
+
optional :table_header, :message, 6, "io.cucumber.messages.GherkinDocument.Feature.TableRow"
|
123
|
+
repeated :table_body, :message, 7, "io.cucumber.messages.GherkinDocument.Feature.TableRow"
|
124
|
+
end
|
125
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.TableRow" do
|
126
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
127
|
+
repeated :cells, :message, 2, "io.cucumber.messages.GherkinDocument.Feature.TableRow.TableCell"
|
128
|
+
end
|
129
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.TableRow.TableCell" do
|
130
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
131
|
+
optional :value, :string, 2
|
132
|
+
end
|
133
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.Step" do
|
134
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
135
|
+
optional :keyword, :string, 2
|
136
|
+
optional :text, :string, 3
|
137
|
+
oneof :argument do
|
138
|
+
optional :doc_string, :message, 5, "io.cucumber.messages.GherkinDocument.Feature.Step.DocString"
|
139
|
+
optional :data_table, :message, 6, "io.cucumber.messages.GherkinDocument.Feature.Step.DataTable"
|
140
|
+
end
|
141
|
+
end
|
142
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.Step.DataTable" do
|
143
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
144
|
+
repeated :rows, :message, 2, "io.cucumber.messages.GherkinDocument.Feature.TableRow"
|
145
|
+
end
|
146
|
+
add_message "io.cucumber.messages.GherkinDocument.Feature.Step.DocString" do
|
147
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
148
|
+
optional :content_type, :string, 2
|
149
|
+
optional :content, :string, 3
|
150
|
+
optional :delimiter, :string, 4
|
151
|
+
end
|
152
|
+
add_message "io.cucumber.messages.Attachment" do
|
153
|
+
optional :source, :message, 1, "io.cucumber.messages.SourceReference"
|
154
|
+
optional :data, :string, 2
|
155
|
+
optional :media, :message, 3, "io.cucumber.messages.Media"
|
156
|
+
end
|
157
|
+
add_message "io.cucumber.messages.Pickle" do
|
158
|
+
optional :id, :string, 1
|
159
|
+
optional :uri, :string, 2
|
160
|
+
optional :name, :string, 3
|
161
|
+
optional :language, :string, 4
|
162
|
+
repeated :steps, :message, 5, "io.cucumber.messages.Pickle.PickleStep"
|
163
|
+
repeated :tags, :message, 6, "io.cucumber.messages.Pickle.PickleTag"
|
164
|
+
repeated :locations, :message, 7, "io.cucumber.messages.Location"
|
165
|
+
end
|
166
|
+
add_message "io.cucumber.messages.Pickle.PickleTag" do
|
167
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
168
|
+
optional :name, :string, 2
|
169
|
+
end
|
170
|
+
add_message "io.cucumber.messages.Pickle.PickleStep" do
|
171
|
+
optional :text, :string, 1
|
172
|
+
repeated :locations, :message, 2, "io.cucumber.messages.Location"
|
173
|
+
optional :argument, :message, 5, "io.cucumber.messages.PickleStepArgument"
|
174
|
+
end
|
175
|
+
add_message "io.cucumber.messages.PickleStepArgument" do
|
176
|
+
oneof :message do
|
177
|
+
optional :doc_string, :message, 1, "io.cucumber.messages.PickleStepArgument.PickleDocString"
|
178
|
+
optional :data_table, :message, 2, "io.cucumber.messages.PickleStepArgument.PickleTable"
|
179
|
+
end
|
180
|
+
end
|
181
|
+
add_message "io.cucumber.messages.PickleStepArgument.PickleDocString" do
|
182
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
183
|
+
optional :contentType, :string, 2
|
184
|
+
optional :content, :string, 3
|
185
|
+
end
|
186
|
+
add_message "io.cucumber.messages.PickleStepArgument.PickleTable" do
|
187
|
+
repeated :rows, :message, 1, "io.cucumber.messages.PickleStepArgument.PickleTable.PickleTableRow"
|
188
|
+
end
|
189
|
+
add_message "io.cucumber.messages.PickleStepArgument.PickleTable.PickleTableRow" do
|
190
|
+
repeated :cells, :message, 1, "io.cucumber.messages.PickleStepArgument.PickleTable.PickleTableRow.PickleTableCell"
|
191
|
+
end
|
192
|
+
add_message "io.cucumber.messages.PickleStepArgument.PickleTable.PickleTableRow.PickleTableCell" do
|
193
|
+
optional :location, :message, 1, "io.cucumber.messages.Location"
|
194
|
+
optional :value, :string, 2
|
195
|
+
end
|
196
|
+
add_message "io.cucumber.messages.PickleAccepted" do
|
197
|
+
optional :pickleId, :string, 1
|
198
|
+
end
|
199
|
+
add_message "io.cucumber.messages.PickleRejected" do
|
200
|
+
optional :pickleId, :string, 2
|
201
|
+
end
|
202
|
+
add_message "io.cucumber.messages.TestRunStarted" do
|
203
|
+
optional :timestamp, :message, 1, "google.protobuf.Timestamp"
|
204
|
+
end
|
205
|
+
add_message "io.cucumber.messages.TestCasePreparedStep" do
|
206
|
+
optional :sourceLocation, :message, 1, "io.cucumber.messages.SourceReference"
|
207
|
+
optional :actionLocation, :message, 2, "io.cucumber.messages.SourceReference"
|
208
|
+
end
|
209
|
+
add_message "io.cucumber.messages.TestCasePrepared" do
|
210
|
+
optional :pickleId, :string, 1
|
211
|
+
repeated :steps, :message, 2, "io.cucumber.messages.TestCasePreparedStep"
|
212
|
+
end
|
213
|
+
add_message "io.cucumber.messages.TestCaseStarted" do
|
214
|
+
optional :pickleId, :string, 1
|
215
|
+
optional :timestamp, :message, 2, "google.protobuf.Timestamp"
|
216
|
+
optional :platform, :message, 3, "io.cucumber.messages.TestCaseStarted.Platform"
|
217
|
+
end
|
218
|
+
add_message "io.cucumber.messages.TestCaseStarted.Platform" do
|
219
|
+
optional :implementation, :string, 1
|
220
|
+
optional :version, :string, 2
|
221
|
+
optional :os, :string, 3
|
222
|
+
optional :cpu, :string, 4
|
223
|
+
end
|
224
|
+
add_message "io.cucumber.messages.TestCaseFinished" do
|
225
|
+
optional :pickleId, :string, 1
|
226
|
+
optional :timestamp, :message, 2, "google.protobuf.Timestamp"
|
227
|
+
optional :testResult, :message, 3, "io.cucumber.messages.TestResult"
|
228
|
+
end
|
229
|
+
add_message "io.cucumber.messages.TestStepStarted" do
|
230
|
+
optional :pickleId, :string, 1
|
231
|
+
optional :index, :uint32, 2
|
232
|
+
optional :timestamp, :message, 3, "google.protobuf.Timestamp"
|
233
|
+
end
|
234
|
+
add_message "io.cucumber.messages.TestStepFinished" do
|
235
|
+
optional :pickleId, :string, 1
|
236
|
+
optional :index, :uint32, 2
|
237
|
+
optional :testResult, :message, 3, "io.cucumber.messages.TestResult"
|
238
|
+
optional :timestamp, :message, 4, "google.protobuf.Timestamp"
|
239
|
+
end
|
240
|
+
add_message "io.cucumber.messages.TestHookStarted" do
|
241
|
+
optional :pickleId, :string, 1
|
242
|
+
optional :timestamp, :message, 2, "google.protobuf.Timestamp"
|
243
|
+
end
|
244
|
+
add_message "io.cucumber.messages.TestHookFinished" do
|
245
|
+
optional :pickleId, :string, 1
|
246
|
+
optional :testResult, :message, 2, "io.cucumber.messages.TestResult"
|
247
|
+
optional :timestamp, :message, 3, "google.protobuf.Timestamp"
|
248
|
+
end
|
249
|
+
add_message "io.cucumber.messages.TestResult" do
|
250
|
+
optional :status, :enum, 1, "io.cucumber.messages.TestResult.Status"
|
251
|
+
optional :message, :string, 2
|
252
|
+
optional :durationNanoseconds, :uint64, 3
|
253
|
+
end
|
254
|
+
add_enum "io.cucumber.messages.TestResult.Status" do
|
255
|
+
value :AMBIGUOUS, 0
|
256
|
+
value :FAILED, 1
|
257
|
+
value :PASSED, 2
|
258
|
+
value :PENDING, 3
|
259
|
+
value :SKIPPED, 4
|
260
|
+
value :UNDEFINED, 5
|
261
|
+
end
|
262
|
+
add_message "io.cucumber.messages.TestRunFinished" do
|
263
|
+
optional :success, :bool, 1
|
264
|
+
end
|
265
|
+
add_message "io.cucumber.messages.CommandStart" do
|
266
|
+
optional :baseDirectory, :string, 2
|
267
|
+
optional :sourcesConfig, :message, 3, "io.cucumber.messages.SourcesConfig"
|
268
|
+
optional :runtimeConfig, :message, 4, "io.cucumber.messages.RuntimeConfig"
|
269
|
+
optional :supportCodeConfig, :message, 5, "io.cucumber.messages.SupportCodeConfig"
|
270
|
+
end
|
271
|
+
add_message "io.cucumber.messages.SourcesConfig" do
|
272
|
+
repeated :absolutePaths, :string, 1
|
273
|
+
optional :language, :string, 2
|
274
|
+
optional :filters, :message, 3, "io.cucumber.messages.SourcesFilterConfig"
|
275
|
+
optional :order, :message, 4, "io.cucumber.messages.SourcesOrder"
|
276
|
+
end
|
277
|
+
add_message "io.cucumber.messages.SourcesFilterConfig" do
|
278
|
+
optional :tagExpression, :string, 1
|
279
|
+
repeated :nameRegularExpressions, :string, 2
|
280
|
+
repeated :uriToLinesMapping, :message, 3, "io.cucumber.messages.UriToLinesMapping"
|
281
|
+
end
|
282
|
+
add_message "io.cucumber.messages.UriToLinesMapping" do
|
283
|
+
optional :absolutePath, :string, 1
|
284
|
+
repeated :lines, :uint64, 2
|
285
|
+
end
|
286
|
+
add_message "io.cucumber.messages.SourcesOrder" do
|
287
|
+
optional :type, :enum, 1, "io.cucumber.messages.SourcesOrderType"
|
288
|
+
optional :seed, :uint64, 2
|
289
|
+
end
|
290
|
+
add_message "io.cucumber.messages.RuntimeConfig" do
|
291
|
+
optional :isFailFast, :bool, 1
|
292
|
+
optional :isDryRun, :bool, 2
|
293
|
+
optional :isStrict, :bool, 3
|
294
|
+
optional :maxParallel, :uint64, 4
|
295
|
+
end
|
296
|
+
add_message "io.cucumber.messages.SupportCodeConfig" do
|
297
|
+
repeated :beforeTestCaseHookDefinitionConfigs, :message, 1, "io.cucumber.messages.TestCaseHookDefinitionConfig"
|
298
|
+
repeated :afterTestCaseHookDefinitionConfigs, :message, 2, "io.cucumber.messages.TestCaseHookDefinitionConfig"
|
299
|
+
repeated :stepDefinitionConfigs, :message, 3, "io.cucumber.messages.StepDefinitionConfig"
|
300
|
+
repeated :parameterTypeConfigs, :message, 4, "io.cucumber.messages.ParameterTypeConfig"
|
301
|
+
end
|
302
|
+
add_message "io.cucumber.messages.TestCaseHookDefinitionConfig" do
|
303
|
+
optional :id, :string, 1
|
304
|
+
optional :tagExpression, :string, 2
|
305
|
+
optional :location, :message, 3, "io.cucumber.messages.SourceReference"
|
306
|
+
end
|
307
|
+
add_message "io.cucumber.messages.StepDefinitionConfig" do
|
308
|
+
optional :id, :string, 1
|
309
|
+
optional :pattern, :message, 2, "io.cucumber.messages.StepDefinitionPattern"
|
310
|
+
optional :location, :message, 3, "io.cucumber.messages.SourceReference"
|
311
|
+
end
|
312
|
+
add_message "io.cucumber.messages.StepDefinitionPattern" do
|
313
|
+
optional :source, :string, 1
|
314
|
+
optional :type, :enum, 2, "io.cucumber.messages.StepDefinitionPatternType"
|
315
|
+
end
|
316
|
+
add_message "io.cucumber.messages.ParameterTypeConfig" do
|
317
|
+
optional :name, :string, 1
|
318
|
+
repeated :regularExpressions, :string, 2
|
319
|
+
optional :preferForRegularExpressionMatch, :bool, 3
|
320
|
+
optional :useForSnippets, :bool, 4
|
321
|
+
end
|
322
|
+
add_message "io.cucumber.messages.CommandActionComplete" do
|
323
|
+
optional :completedId, :string, 1
|
324
|
+
oneof :result do
|
325
|
+
optional :testResult, :message, 2, "io.cucumber.messages.TestResult"
|
326
|
+
optional :snippet, :string, 3
|
327
|
+
end
|
328
|
+
end
|
329
|
+
add_message "io.cucumber.messages.CommandRunBeforeTestRunHooks" do
|
330
|
+
optional :actionId, :string, 1
|
331
|
+
end
|
332
|
+
add_message "io.cucumber.messages.CommandRunAfterTestRunHooks" do
|
333
|
+
optional :actionId, :string, 1
|
334
|
+
end
|
335
|
+
add_message "io.cucumber.messages.CommandInitializeTestCase" do
|
336
|
+
optional :actionId, :string, 1
|
337
|
+
optional :pickle, :message, 3, "io.cucumber.messages.Pickle"
|
338
|
+
end
|
339
|
+
add_message "io.cucumber.messages.CommandRunBeforeTestCaseHook" do
|
340
|
+
optional :actionId, :string, 1
|
341
|
+
optional :testCaseHookDefinitionId, :string, 3
|
342
|
+
optional :pickleId, :string, 4
|
343
|
+
end
|
344
|
+
add_message "io.cucumber.messages.CommandRunAfterTestCaseHook" do
|
345
|
+
optional :actionId, :string, 1
|
346
|
+
optional :testCaseHookDefinitionId, :string, 3
|
347
|
+
optional :pickleId, :string, 4
|
348
|
+
end
|
349
|
+
add_message "io.cucumber.messages.CommandRunTestStep" do
|
350
|
+
optional :actionId, :string, 1
|
351
|
+
optional :stepDefinitionId, :string, 3
|
352
|
+
repeated :patternMatches, :message, 4, "io.cucumber.messages.PatternMatch"
|
353
|
+
optional :pickleId, :string, 5
|
354
|
+
optional :pickleStepArgument, :message, 6, "io.cucumber.messages.PickleStepArgument"
|
355
|
+
end
|
356
|
+
add_message "io.cucumber.messages.PatternMatch" do
|
357
|
+
repeated :captures, :string, 1
|
358
|
+
optional :parameterTypeName, :string, 2
|
359
|
+
end
|
360
|
+
add_message "io.cucumber.messages.CommandGenerateSnippet" do
|
361
|
+
optional :actionId, :string, 1
|
362
|
+
repeated :generatedExpressions, :message, 2, "io.cucumber.messages.GeneratedExpression"
|
363
|
+
optional :pickleStepArgument, :message, 5, "io.cucumber.messages.PickleStepArgument"
|
364
|
+
end
|
365
|
+
add_message "io.cucumber.messages.GeneratedExpression" do
|
366
|
+
optional :text, :string, 1
|
367
|
+
repeated :parameterTypeNames, :string, 2
|
368
|
+
end
|
369
|
+
add_enum "io.cucumber.messages.SourcesOrderType" do
|
370
|
+
value :ORDER_OF_DEFINITION, 0
|
371
|
+
value :RANDOM, 1
|
372
|
+
end
|
373
|
+
add_enum "io.cucumber.messages.StepDefinitionPatternType" do
|
374
|
+
value :CUCUMBER_EXPRESSION, 0
|
375
|
+
value :REGULAR_EXPRESSION, 1
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
379
|
+
module Cucumber
|
380
|
+
module Messages
|
381
|
+
Envelope = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Envelope").msgclass
|
382
|
+
Location = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Location").msgclass
|
383
|
+
SourceReference = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.SourceReference").msgclass
|
384
|
+
Media = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Media").msgclass
|
385
|
+
Media::Encoding = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Media.Encoding").enummodule
|
386
|
+
Source = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Source").msgclass
|
387
|
+
GherkinDocument = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument").msgclass
|
388
|
+
GherkinDocument::Comment = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Comment").msgclass
|
389
|
+
GherkinDocument::Feature = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature").msgclass
|
390
|
+
GherkinDocument::Feature::Tag = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.Tag").msgclass
|
391
|
+
GherkinDocument::Feature::FeatureChild = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.FeatureChild").msgclass
|
392
|
+
GherkinDocument::Feature::FeatureChild::Rule = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.FeatureChild.Rule").msgclass
|
393
|
+
GherkinDocument::Feature::FeatureChild::RuleChild = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.FeatureChild.RuleChild").msgclass
|
394
|
+
GherkinDocument::Feature::Background = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.Background").msgclass
|
395
|
+
GherkinDocument::Feature::Scenario = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.Scenario").msgclass
|
396
|
+
GherkinDocument::Feature::Scenario::Examples = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.Scenario.Examples").msgclass
|
397
|
+
GherkinDocument::Feature::TableRow = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.TableRow").msgclass
|
398
|
+
GherkinDocument::Feature::TableRow::TableCell = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.TableRow.TableCell").msgclass
|
399
|
+
GherkinDocument::Feature::Step = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.Step").msgclass
|
400
|
+
GherkinDocument::Feature::Step::DataTable = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.Step.DataTable").msgclass
|
401
|
+
GherkinDocument::Feature::Step::DocString = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GherkinDocument.Feature.Step.DocString").msgclass
|
402
|
+
Attachment = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Attachment").msgclass
|
403
|
+
Pickle = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Pickle").msgclass
|
404
|
+
Pickle::PickleTag = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Pickle.PickleTag").msgclass
|
405
|
+
Pickle::PickleStep = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Pickle.PickleStep").msgclass
|
406
|
+
PickleStepArgument = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.PickleStepArgument").msgclass
|
407
|
+
PickleStepArgument::PickleDocString = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.PickleStepArgument.PickleDocString").msgclass
|
408
|
+
PickleStepArgument::PickleTable = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.PickleStepArgument.PickleTable").msgclass
|
409
|
+
PickleStepArgument::PickleTable::PickleTableRow = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.PickleStepArgument.PickleTable.PickleTableRow").msgclass
|
410
|
+
PickleStepArgument::PickleTable::PickleTableRow::PickleTableCell = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.PickleStepArgument.PickleTable.PickleTableRow.PickleTableCell").msgclass
|
411
|
+
PickleAccepted = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.PickleAccepted").msgclass
|
412
|
+
PickleRejected = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.PickleRejected").msgclass
|
413
|
+
TestRunStarted = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestRunStarted").msgclass
|
414
|
+
TestCasePreparedStep = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestCasePreparedStep").msgclass
|
415
|
+
TestCasePrepared = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestCasePrepared").msgclass
|
416
|
+
TestCaseStarted = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestCaseStarted").msgclass
|
417
|
+
TestCaseStarted::Platform = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestCaseStarted.Platform").msgclass
|
418
|
+
TestCaseFinished = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestCaseFinished").msgclass
|
419
|
+
TestStepStarted = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestStepStarted").msgclass
|
420
|
+
TestStepFinished = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestStepFinished").msgclass
|
421
|
+
TestHookStarted = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestHookStarted").msgclass
|
422
|
+
TestHookFinished = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestHookFinished").msgclass
|
423
|
+
TestResult = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestResult").msgclass
|
424
|
+
TestResult::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestResult.Status").enummodule
|
425
|
+
TestRunFinished = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestRunFinished").msgclass
|
426
|
+
CommandStart = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.CommandStart").msgclass
|
427
|
+
SourcesConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.SourcesConfig").msgclass
|
428
|
+
SourcesFilterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.SourcesFilterConfig").msgclass
|
429
|
+
UriToLinesMapping = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.UriToLinesMapping").msgclass
|
430
|
+
SourcesOrder = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.SourcesOrder").msgclass
|
431
|
+
RuntimeConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.RuntimeConfig").msgclass
|
432
|
+
SupportCodeConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.SupportCodeConfig").msgclass
|
433
|
+
TestCaseHookDefinitionConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestCaseHookDefinitionConfig").msgclass
|
434
|
+
StepDefinitionConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.StepDefinitionConfig").msgclass
|
435
|
+
StepDefinitionPattern = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.StepDefinitionPattern").msgclass
|
436
|
+
ParameterTypeConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.ParameterTypeConfig").msgclass
|
437
|
+
CommandActionComplete = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.CommandActionComplete").msgclass
|
438
|
+
CommandRunBeforeTestRunHooks = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.CommandRunBeforeTestRunHooks").msgclass
|
439
|
+
CommandRunAfterTestRunHooks = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.CommandRunAfterTestRunHooks").msgclass
|
440
|
+
CommandInitializeTestCase = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.CommandInitializeTestCase").msgclass
|
441
|
+
CommandRunBeforeTestCaseHook = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.CommandRunBeforeTestCaseHook").msgclass
|
442
|
+
CommandRunAfterTestCaseHook = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.CommandRunAfterTestCaseHook").msgclass
|
443
|
+
CommandRunTestStep = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.CommandRunTestStep").msgclass
|
444
|
+
PatternMatch = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.PatternMatch").msgclass
|
445
|
+
CommandGenerateSnippet = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.CommandGenerateSnippet").msgclass
|
446
|
+
GeneratedExpression = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.GeneratedExpression").msgclass
|
447
|
+
SourcesOrderType = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.SourcesOrderType").enummodule
|
448
|
+
StepDefinitionPatternType = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.StepDefinitionPatternType").enummodule
|
449
|
+
end
|
450
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber-messages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aslak Hellesøy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -98,6 +98,7 @@ files:
|
|
98
98
|
- lib/cucumber/messages/protobuf_delimited.rb
|
99
99
|
- lib/cucumber/messages/protobuf_io_enumerator.rb
|
100
100
|
- lib/cucumber/messages/varint.rb
|
101
|
+
- lib/cucumber/messages_pb.rb
|
101
102
|
- spec/capture_warnings.rb
|
102
103
|
- spec/coverage.rb
|
103
104
|
- spec/cucumber/messages/message_serialization_spec.rb
|
@@ -130,7 +131,7 @@ rubyforge_project:
|
|
130
131
|
rubygems_version: 2.7.6.2
|
131
132
|
signing_key:
|
132
133
|
specification_version: 4
|
133
|
-
summary: cucumber-messages-3.0.
|
134
|
+
summary: cucumber-messages-3.0.2
|
134
135
|
test_files:
|
135
136
|
- spec/cucumber/messages/message_serialization_spec.rb
|
136
137
|
- spec/capture_warnings.rb
|