-
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.
- Loading branch information
Showing
2 changed files
with
97 additions
and
11 deletions.
There are no files selected for viewing
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
72 changes: 72 additions & 0 deletions
72
src/test/java/com/epam/reportportal/karate/parameters/ExamplesScenarioParametersTest.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,72 @@ | ||
package com.epam.reportportal.karate.parameters; | ||
|
||
import com.epam.reportportal.karate.utils.TestUtils; | ||
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.ParameterResource; | ||
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.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 ExamplesScenarioParametersTest { | ||
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 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_scenario_parameters() { | ||
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 firstScenarioRq = items.get(1); | ||
StartTestItemRQ secondScenarioRq = items.get(2); | ||
List<ParameterResource> firstParameters = firstScenarioRq.getParameters(); | ||
List<ParameterResource> secondParameters = secondScenarioRq.getParameters(); | ||
assertThat(firstParameters, hasSize(3)); | ||
assertThat(secondParameters, hasSize(3)); | ||
|
||
assertThat( | ||
firstParameters.stream().map(p -> p.getKey() + ":" + p.getValue()).collect(Collectors.toSet()), | ||
allOf(hasItem("vara:2"), hasItem("varb:2"), hasItem("result:4")) | ||
); | ||
assertThat( | ||
secondParameters.stream().map(p -> p.getKey() + ":" + p.getValue()).collect(Collectors.toSet()), | ||
allOf(hasItem("vara:1"), hasItem("varb:2"), hasItem("result:3")) | ||
); | ||
} | ||
} |