-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add code reference for Examples scenarios
- Loading branch information
Showing
5 changed files
with
165 additions
and
25 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
src/main/java/com/epam/reportportal/karate/KarateUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright 2021 EPAM Systems | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.epam.reportportal.karate; | ||
|
||
import javax.annotation.Nonnull; | ||
import java.util.Map; | ||
import java.util.stream.Collectors; | ||
|
||
/** | ||
* Set of useful utils related to Karate -> ReportPortal integration | ||
*/ | ||
public class KarateUtils { | ||
|
||
private KarateUtils() { | ||
throw new AssertionError("No instances should exist for the class!"); | ||
} | ||
|
||
private static final String PARAMETER_ITEMS_START = "["; | ||
private static final String PARAMETER_ITEMS_END = "]"; | ||
private static final String PARAMETER_ITEMS_DELIMITER = ";"; | ||
private static final String KEY_VALUE_SEPARATOR = ":"; | ||
|
||
/** | ||
* Create a String from a parameter Map to be used as a test key and title | ||
* | ||
* @param example a map of parameters: name->value | ||
* @return a formatted string of parameters | ||
*/ | ||
public static String formatExampleKey(@Nonnull final Map<String, Object> example) { | ||
return example.entrySet() | ||
.stream() | ||
.map(e -> e.getKey() + KEY_VALUE_SEPARATOR + e.getValue().toString()) | ||
.collect(Collectors.joining(PARAMETER_ITEMS_DELIMITER, PARAMETER_ITEMS_START, PARAMETER_ITEMS_END)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
src/test/java/com/epam/reportportal/karate/coderef/ExamplesCodeRefTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
package com.epam.reportportal.karate.coderef; | ||
|
||
import com.epam.reportportal.karate.utils.TestUtils; | ||
import com.epam.reportportal.listeners.ItemType; | ||
import com.epam.reportportal.service.ReportPortal; | ||
import com.epam.reportportal.service.ReportPortalClient; | ||
import com.epam.reportportal.util.test.CommonUtils; | ||
import com.epam.ta.reportportal.ws.model.StartTestItemRQ; | ||
import org.apache.commons.lang3.tuple.Pair; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.mockito.ArgumentCaptor; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
import java.util.stream.IntStream; | ||
import java.util.stream.Stream; | ||
|
||
import static com.epam.reportportal.karate.utils.TestUtils.*; | ||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.*; | ||
import static org.mockito.ArgumentMatchers.same; | ||
import static org.mockito.Mockito.*; | ||
|
||
public class ExamplesCodeRefTest { | ||
private final String featureId = CommonUtils.namedId("feature_"); | ||
private final List<String> exampleIds = Stream.generate(() -> CommonUtils.namedId("example_")).limit(2) | ||
.collect(Collectors.toList()); | ||
private final List<Pair<String, List<String>>> stepIds = exampleIds.stream() | ||
.map(e -> Pair.of(e, Stream.generate(() -> CommonUtils.namedId("step_")) | ||
.limit(2).collect(Collectors.toList()))) | ||
.collect(Collectors.toList()); | ||
|
||
private static final String EXAMPLE_CODE_REFERENCE_PATTERN = "feature/examples.feature/[EXAMPLE:Verify different maths[%s]]"; | ||
private static final String FIRST_EXAMPLE_CODE_REFERENCE = String.format(EXAMPLE_CODE_REFERENCE_PATTERN, "vara:2;varb:2;result:4"); | ||
private static final String SECOND_EXAMPLE_CODE_REFERENCE = String.format(EXAMPLE_CODE_REFERENCE_PATTERN, "vara:1;varb:2;result:3"); | ||
|
||
private final ReportPortalClient client = mock(ReportPortalClient.class); | ||
private final ReportPortal rp = ReportPortal.create(client, standardParameters(), testExecutor()); | ||
|
||
@BeforeEach | ||
public void setupMock() { | ||
mockLaunch(client, null, featureId, stepIds); | ||
mockBatchLogging(client); | ||
} | ||
|
||
@Test | ||
public void test_examples_code_reference() { | ||
var results = TestUtils.runAsReport(rp, "classpath:feature/examples.feature"); | ||
assertThat(results.getFailCount(), equalTo(0)); | ||
|
||
ArgumentCaptor<StartTestItemRQ> captor = ArgumentCaptor.forClass(StartTestItemRQ.class); | ||
verify(client, times(1)).startTestItem(captor.capture()); | ||
verify(client, times(2)).startTestItem(same(featureId), captor.capture()); | ||
verify(client, times(2)).startTestItem(same(exampleIds.get(0)), captor.capture()); | ||
verify(client, times(2)).startTestItem(same(exampleIds.get(1)), captor.capture()); | ||
|
||
List<StartTestItemRQ> items = captor.getAllValues(); | ||
assertThat(items, hasSize(7)); | ||
|
||
StartTestItemRQ featureRq = items.get(0); | ||
|
||
assertThat(featureRq.getType(), allOf(notNullValue(), equalTo(ItemType.STORY.name()))); | ||
|
||
StartTestItemRQ firstScenarioRq = items.get(1); | ||
assertThat(firstScenarioRq.getType(), allOf(notNullValue(), equalTo(ItemType.STEP.name()))); | ||
assertThat(firstScenarioRq.getCodeRef(), allOf(notNullValue(), equalTo(FIRST_EXAMPLE_CODE_REFERENCE))); | ||
|
||
StartTestItemRQ secondScenarioRq = items.get(2); | ||
assertThat(secondScenarioRq.getType(), allOf(notNullValue(), equalTo(ItemType.STEP.name()))); | ||
assertThat(secondScenarioRq.getCodeRef(), allOf(notNullValue(), equalTo(SECOND_EXAMPLE_CODE_REFERENCE))); | ||
|
||
List<StartTestItemRQ> stepRqs = items.subList(3, items.size()); | ||
IntStream.range(0, stepRqs.size()).forEach(i -> { | ||
StartTestItemRQ step = stepRqs.get(i); | ||
assertThat(step.getType(), allOf(notNullValue(), equalTo(ItemType.STEP.name()))); | ||
assertThat(step.isHasStats(), equalTo(Boolean.FALSE)); | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Feature: math tests with examples | ||
|
||
Scenario Outline: Verify different maths | ||
Given def mathResult = vara + varb | ||
Then assert mathResult == result | ||
|
||
Examples: | ||
| vara! | varb! | result! | | ||
| 2 | 2 | 4 | | ||
| 1 | 2 | 3 | |