use of io.cucumber.core.runtime.StubBackendSupplier in project cucumber-jvm by cucumber.
the class TestNGFormatterTest method testScenarioWithPendingSteps.
@Test
void testScenarioWithPendingSteps() {
Feature feature = TestFeatureParser.parse("path/test.feature", "" + "Feature: feature\n" + " Scenario: scenario\n" + " When step1\n" + " Then step2\n");
ByteArrayOutputStream out = new ByteArrayOutputStream();
Runtime.builder().withFeatureSupplier(new StubFeatureSupplier(feature)).withAdditionalPlugins(new TestNGFormatter(out)).withEventBus(new TimeServiceEventBus(fixed(EPOCH, of("UTC")), UUID::randomUUID)).withBackendSupplier(new StubBackendSupplier(new StubStepDefinition("step1", new StubPendingException()), new StubStepDefinition("step2"))).build().run();
String expected = "" + "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n" + "<testng-results failed=\"1\" passed=\"0\" skipped=\"0\" total=\"1\">\n" + " <suite duration-ms=\"0\" name=\"io.cucumber.core.plugin.TestNGFormatter\">\n" + " <test duration-ms=\"0\" name=\"io.cucumber.core.plugin.TestNGFormatter\">\n" + " <class name=\"feature\">\n" + " <test-method duration-ms=\"0\" finished-at=\"1970-01-01T00:00:00Z\" name=\"scenario\" started-at=\"1970-01-01T00:00:00Z\" status=\"FAIL\">\n" + " <exception class=\"The scenario has pending or undefined step(s)\">\n" + " <message>\n" + " <![CDATA[When step1..................................................................pending\n" + "Then step2..................................................................skipped\n" + "]]>\n" + " </message>\n" + " <full-stacktrace>\n" + " <![CDATA[The scenario has pending or undefined step(s)]]>\n" + " </full-stacktrace>\n" + " </exception>\n" + " </test-method>\n" + " </class>\n" + " </test>\n" + " </suite>\n" + "</testng-results>\n";
assertXmlEquals(expected, out);
}
use of io.cucumber.core.runtime.StubBackendSupplier in project cucumber-jvm by cucumber.
the class PrettyFormatterTest method should_print_output_from_after_hooks.
@Test
void should_print_output_from_after_hooks() {
Feature feature = TestFeatureParser.parse("path/test.feature", "" + "Feature: feature name\n" + " Scenario: scenario name\n" + " Given first step\n");
ByteArrayOutputStream out = new ByteArrayOutputStream();
Runtime.builder().withFeatureSupplier(new StubFeatureSupplier(feature)).withAdditionalPlugins(new PrettyFormatter(out)).withRuntimeOptions(new RuntimeOptionsBuilder().setMonochrome().build()).withBackendSupplier(new StubBackendSupplier(emptyList(), singletonList(new StubStepDefinition("first step", "path/step_definitions.java:3")), singletonList(new StubHookDefinition(testCaseState -> testCaseState.log("printed from hook"))))).build().run();
assertThat(out, bytesContainsString("" + " Given first step # path/step_definitions.java:3\n" + "\n" + " printed from hook\n"));
}
use of io.cucumber.core.runtime.StubBackendSupplier in project cucumber-jvm by cucumber.
the class PrettyFormatterTest method should_handle_background.
@Test
void should_handle_background() {
Feature feature = TestFeatureParser.parse("path/test.feature", "" + "Feature: feature name\n" + " Background: background name\n" + " Given first step\n" + " Scenario: s1\n" + " Then second step\n" + " Scenario: s2\n" + " Then third step\n");
ByteArrayOutputStream out = new ByteArrayOutputStream();
Runtime.builder().withFeatureSupplier(new StubFeatureSupplier(feature)).withAdditionalPlugins(new PrettyFormatter(out)).withRuntimeOptions(new RuntimeOptionsBuilder().setMonochrome().build()).withBackendSupplier(new StubBackendSupplier(new StubStepDefinition("first step", "path/step_definitions.java:3"), new StubStepDefinition("second step", "path/step_definitions.java:7"), new StubStepDefinition("third step", "path/step_definitions.java:11"))).build().run();
assertThat(out, bytesContainsString("" + "\n" + "Scenario: s1 # path/test.feature:4\n" + " Given first step # path/step_definitions.java:3\n" + " Then second step # path/step_definitions.java:7\n" + "\n" + "Scenario: s2 # path/test.feature:6\n" + " Given first step # path/step_definitions.java:3\n" + " Then third step # path/step_definitions.java:11\n"));
}
use of io.cucumber.core.runtime.StubBackendSupplier in project cucumber-jvm by cucumber.
the class PrettyFormatterTest method should_print_tags.
@Test
void should_print_tags() {
Feature feature = TestFeatureParser.parse("path/test.feature", "" + "@feature_tag\n" + "Feature: feature name\n" + " @scenario_tag\n" + " Scenario: scenario name\n" + " Then first step\n" + " @scenario_outline_tag\n" + " Scenario Outline: scenario outline name\n" + " Then <arg> step\n" + " @examples_tag\n" + " Examples: examples name\n" + " | arg |\n" + " | second |\n");
ByteArrayOutputStream out = new ByteArrayOutputStream();
Runtime.builder().withFeatureSupplier(new StubFeatureSupplier(feature)).withAdditionalPlugins(new PrettyFormatter(out)).withRuntimeOptions(new RuntimeOptionsBuilder().setMonochrome().build()).withBackendSupplier(new StubBackendSupplier(new StubStepDefinition("first step", "path/step_definitions.java:7"), new StubStepDefinition("second step", "path/step_definitions.java:11"))).build().run();
assertThat(out, isBytesEqualTo("" + "\n" + "@feature_tag @scenario_tag\n" + "Scenario: scenario name # path/test.feature:4\n" + " Then first step # path/step_definitions.java:7\n" + "\n" + "@feature_tag @scenario_outline_tag @examples_tag\n" + "Scenario Outline: scenario outline name # path/test.feature:12\n" + " Then second step # path/step_definitions.java:11\n"));
}
use of io.cucumber.core.runtime.StubBackendSupplier in project cucumber-jvm by cucumber.
the class PrettyFormatterTest method should_print_multiple_tables.
@Test
void should_print_multiple_tables() {
Feature feature = TestFeatureParser.parse("path/test.feature", "" + "Feature: Test feature\n" + " Scenario: Test Scenario\n" + " Given first step\n" + " | key1 | key2 |\n" + " | value1 | value2 |\n" + " | another1 | another2 |\n" + " Given second step\n" + " | key3 | key4 |\n" + " | value3 | value4 |\n" + " | another3 | another4 |\n");
ByteArrayOutputStream out = new ByteArrayOutputStream();
Runtime.builder().withFeatureSupplier(new StubFeatureSupplier(feature)).withAdditionalPlugins(new PrettyFormatter(out)).withRuntimeOptions(new RuntimeOptionsBuilder().setMonochrome().build()).withBackendSupplier(new StubBackendSupplier(new StubStepDefinition("first step", "path/step_definitions.java:7", DataTable.class), new StubStepDefinition("second step", "path/step_definitions.java:15", DataTable.class))).build().run();
assertThat(out, isBytesEqualTo("" + "\n" + "Scenario: Test Scenario # path/test.feature:2\n" + " Given first step # path/step_definitions.java:7\n" + " | key1 | key2 |\n" + " | value1 | value2 |\n" + " | another1 | another2 |\n" + " Given second step # path/step_definitions.java:15\n" + " | key3 | key4 |\n" + " | value3 | value4 |\n" + " | another3 | another4 |\n"));
}
Aggregations