1
1
package io .cucumber .query ;
2
2
3
3
import io .cucumber .messages .Convertor ;
4
+ import io .cucumber .messages .types .Attachment ;
4
5
import io .cucumber .messages .types .Envelope ;
5
6
import io .cucumber .messages .types .Examples ;
6
7
import io .cucumber .messages .types .Feature ;
7
8
import io .cucumber .messages .types .GherkinDocument ;
9
+ import io .cucumber .messages .types .Hook ;
10
+ import io .cucumber .messages .types .Meta ;
8
11
import io .cucumber .messages .types .Pickle ;
9
12
import io .cucumber .messages .types .PickleStep ;
10
13
import io .cucumber .messages .types .Rule ;
@@ -67,7 +70,10 @@ public final class Query {
67
70
private final Map <String , Step > stepById = new ConcurrentHashMap <>();
68
71
private final Map <String , TestStep > testStepById = new ConcurrentHashMap <>();
69
72
private final Map <String , PickleStep > pickleStepById = new ConcurrentHashMap <>();
73
+ private final Map <String , Hook > hookById = new ConcurrentHashMap <>();
74
+ private final Map <String , List <Attachment >> attachmentsByTestCaseStartedId = new ConcurrentHashMap <>();
70
75
private final Map <Object , Lineage > lineageById = new ConcurrentHashMap <>();
76
+ private Meta meta ;
71
77
private TestRunStarted testRunStarted ;
72
78
private TestRunFinished testRunFinished ;
73
79
@@ -135,10 +141,29 @@ public List<TestStep> findAllTestSteps() {
135
141
.collect (toList ());
136
142
}
137
143
144
+ public List <Attachment > findAttachmentsBy (TestStepFinished testStepFinished ) {
145
+ requireNonNull (testStepFinished );
146
+ return attachmentsByTestCaseStartedId .getOrDefault (testStepFinished .getTestCaseStartedId (), emptyList ()).stream ()
147
+ .filter (attachment -> attachment .getTestStepId ()
148
+ .map (testStepId -> testStepFinished .getTestStepId ().equals (testStepId ))
149
+ .orElse (false ))
150
+ .collect (toList ());
151
+ }
152
+
138
153
public Optional <Feature > findFeatureBy (TestCaseStarted testCaseStarted ) {
139
154
return findLineageBy (testCaseStarted ).flatMap (Lineage ::feature );
140
155
}
141
156
157
+ public Optional <Hook > findHookBy (TestStep testStep ) {
158
+ requireNonNull (testStep );
159
+ return testStep .getHookId ()
160
+ .map (hookById ::get );
161
+ }
162
+
163
+ public Optional <Meta > findMeta () {
164
+ return ofNullable (meta );
165
+ }
166
+
142
167
public Optional <TestStepResult > findMostSevereTestStepResultBy (TestCaseStarted testCaseStarted ) {
143
168
requireNonNull (testCaseStarted );
144
169
return findTestStepsFinishedBy (testCaseStarted )
@@ -330,6 +355,7 @@ public List<Entry<TestStepFinished, TestStep>> findTestStepFinishedAndTestStepBy
330
355
}
331
356
332
357
public void update (Envelope envelope ) {
358
+ envelope .getMeta ().ifPresent (this ::updateMeta );
333
359
envelope .getTestRunStarted ().ifPresent (this ::updateTestRunStarted );
334
360
envelope .getTestRunFinished ().ifPresent (this ::updateTestRunFinished );
335
361
envelope .getTestCaseStarted ().ifPresent (this ::updateTestCaseStarted );
@@ -338,6 +364,8 @@ public void update(Envelope envelope) {
338
364
envelope .getGherkinDocument ().ifPresent (this ::updateGherkinDocument );
339
365
envelope .getPickle ().ifPresent (this ::updatePickle );
340
366
envelope .getTestCase ().ifPresent (this ::updateTestCase );
367
+ envelope .getHook ().ifPresent (this ::updateHook );
368
+ envelope .getAttachment ().ifPresent (this ::updateAttachment );
341
369
}
342
370
343
371
private Optional <Lineage > findLineageBy (GherkinDocument element ) {
@@ -382,6 +410,15 @@ private Optional<Lineage> findLineageBy(TestCaseStarted testCaseStarted) {
382
410
.flatMap (this ::findLineageBy );
383
411
}
384
412
413
+ private void updateAttachment (Attachment attachment ) {
414
+ attachment .getTestCaseStartedId ()
415
+ .ifPresent (testCaseStartedId -> this .attachmentsByTestCaseStartedId .compute (testCaseStartedId , updateList (attachment )));
416
+ }
417
+
418
+ private void updateHook (Hook hook ) {
419
+ this .hookById .put (hook .getId (), hook );
420
+ }
421
+
385
422
private void updateTestCaseStarted (TestCaseStarted testCaseStarted ) {
386
423
this .testCaseStarted .add (testCaseStarted );
387
424
}
@@ -437,6 +474,10 @@ private void updateSteps(List<Step> steps) {
437
474
steps .forEach (step -> stepById .put (step .getId (), step ));
438
475
}
439
476
477
+ private void updateMeta (Meta event ) {
478
+ this .meta = event ;
479
+ }
480
+
440
481
private <K , E > BiFunction <K , List <E >, List <E >> updateList (E element ) {
441
482
return (key , existing ) -> {
442
483
if (existing != null ) {
0 commit comments