Search in sources :

Example 1 with StubFeatureSupplier

use of io.cucumber.core.runtime.StubFeatureSupplier in project cucumber-jvm by cucumber.

the class TestNGFormatterTest method testScenarioWithPassedSteps.

@Test
void testScenarioWithPassedSteps() {
    Feature feature = TestFeatureParser.parse("path/test.feature", "" + "Feature: feature\n" + "  Scenario: scenario\n" + "    When step\n" + "    Then step\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("step"))).build().run();
    String expected = "" + "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>" + "<testng-results total=\"1\" passed=\"1\" failed=\"0\" skipped=\"0\">" + "    <suite name=\"io.cucumber.core.plugin.TestNGFormatter\" duration-ms=\"0\">" + "        <test name=\"io.cucumber.core.plugin.TestNGFormatter\" duration-ms=\"0\">" + "            <class name=\"feature\">" + "                <test-method name=\"scenario\" status=\"PASS\" duration-ms=\"0\" started-at=\"1970-01-01T00:00:00Z\" finished-at=\"1970-01-01T00:00:00Z\"/>" + "            </class>" + "        </test>" + "    </suite>" + "</testng-results>";
    assertXmlEquals(expected, out);
}
Also used : TimeServiceEventBus(io.cucumber.core.runtime.TimeServiceEventBus) StubBackendSupplier(io.cucumber.core.runtime.StubBackendSupplier) StubFeatureSupplier(io.cucumber.core.runtime.StubFeatureSupplier) StubStepDefinition(io.cucumber.core.backend.StubStepDefinition) ByteArrayOutputStream(java.io.ByteArrayOutputStream) UUID(java.util.UUID) Feature(io.cucumber.core.gherkin.Feature) Test(org.junit.jupiter.api.Test)

Example 2 with StubFeatureSupplier

use of io.cucumber.core.runtime.StubFeatureSupplier in project cucumber-jvm by cucumber.

the class TestNGFormatterTest method testScenarioOutlineWithExamples.

@Test
void testScenarioOutlineWithExamples() {
    Feature feature = TestFeatureParser.parse("path/test.feature", "" + "Feature: feature\n" + "  Scenario Outline: scenario\n" + "    When step\n" + "    Then step\n" + "    Examples:\n" + "    | arg |\n" + "    |  1  |\n" + "    |  2  |\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()).build().run();
    String expected = "" + "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n" + "<testng-results failed=\"2\" passed=\"0\" skipped=\"0\" total=\"2\">\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 step...................................................................undefined\n" + "Then step...................................................................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" + "                <test-method duration-ms=\"0\" finished-at=\"1970-01-01T00:00:00Z\" name=\"scenario_2\" 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 step...................................................................undefined\n" + "Then step...................................................................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);
}
Also used : TimeServiceEventBus(io.cucumber.core.runtime.TimeServiceEventBus) StubBackendSupplier(io.cucumber.core.runtime.StubBackendSupplier) StubFeatureSupplier(io.cucumber.core.runtime.StubFeatureSupplier) ByteArrayOutputStream(java.io.ByteArrayOutputStream) UUID(java.util.UUID) Feature(io.cucumber.core.gherkin.Feature) Test(org.junit.jupiter.api.Test)

Example 3 with StubFeatureSupplier

use of io.cucumber.core.runtime.StubFeatureSupplier in project cucumber-jvm by cucumber.

the class TestNGFormatterTest method testScenarioWithUndefinedSteps.

@Test
void testScenarioWithUndefinedSteps() {
    Feature feature = TestFeatureParser.parse("path/test.feature", "" + "Feature: feature\n" + "  Scenario: scenario\n" + "    When step\n" + "    Then step\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()).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 step...................................................................undefined\n" + "Then step...................................................................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);
}
Also used : TimeServiceEventBus(io.cucumber.core.runtime.TimeServiceEventBus) StubBackendSupplier(io.cucumber.core.runtime.StubBackendSupplier) StubFeatureSupplier(io.cucumber.core.runtime.StubFeatureSupplier) ByteArrayOutputStream(java.io.ByteArrayOutputStream) UUID(java.util.UUID) Feature(io.cucumber.core.gherkin.Feature) Test(org.junit.jupiter.api.Test)

Example 4 with StubFeatureSupplier

use of io.cucumber.core.runtime.StubFeatureSupplier in project cucumber-jvm by cucumber.

the class TestNGFormatterTest method testScenarioWithBackground.

@Test
void testScenarioWithBackground() {
    Feature feature = TestFeatureParser.parse("path/test.feature", "" + "Feature: feature\n" + "  Background:\n" + "    When background\n" + "    Then background\n" + "  Scenario: scenario\n" + "    When step\n" + "    Then step\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()).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 background.............................................................undefined\n" + "Then background.............................................................skipped\n" + "When step...................................................................skipped\n" + "Then step...................................................................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);
}
Also used : TimeServiceEventBus(io.cucumber.core.runtime.TimeServiceEventBus) StubBackendSupplier(io.cucumber.core.runtime.StubBackendSupplier) StubFeatureSupplier(io.cucumber.core.runtime.StubFeatureSupplier) ByteArrayOutputStream(java.io.ByteArrayOutputStream) UUID(java.util.UUID) Feature(io.cucumber.core.gherkin.Feature) Test(org.junit.jupiter.api.Test)

Example 5 with StubFeatureSupplier

use of io.cucumber.core.runtime.StubFeatureSupplier 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);
}
Also used : TimeServiceEventBus(io.cucumber.core.runtime.TimeServiceEventBus) StubBackendSupplier(io.cucumber.core.runtime.StubBackendSupplier) StubFeatureSupplier(io.cucumber.core.runtime.StubFeatureSupplier) StubPendingException(io.cucumber.core.backend.StubPendingException) StubStepDefinition(io.cucumber.core.backend.StubStepDefinition) ByteArrayOutputStream(java.io.ByteArrayOutputStream) UUID(java.util.UUID) Feature(io.cucumber.core.gherkin.Feature) Test(org.junit.jupiter.api.Test)

Aggregations

StubBackendSupplier (io.cucumber.core.runtime.StubBackendSupplier)78 StubFeatureSupplier (io.cucumber.core.runtime.StubFeatureSupplier)78 Feature (io.cucumber.core.gherkin.Feature)77 ByteArrayOutputStream (java.io.ByteArrayOutputStream)77 Test (org.junit.jupiter.api.Test)77 StubStepDefinition (io.cucumber.core.backend.StubStepDefinition)70 TimeServiceEventBus (io.cucumber.core.runtime.TimeServiceEventBus)55 UUID (java.util.UUID)53 StubHookDefinition (io.cucumber.core.backend.StubHookDefinition)25 StepDurationTimeService (io.cucumber.core.runner.StepDurationTimeService)18 DocString (io.cucumber.docstring.DocString)17 RuntimeOptionsBuilder (io.cucumber.core.options.RuntimeOptionsBuilder)16 PrintStream (java.io.PrintStream)11 TestFeatureParser (io.cucumber.core.feature.TestFeatureParser)6 Runtime (io.cucumber.core.runtime.Runtime)6 DataTable (io.cucumber.datatable.DataTable)6 Arrays.asList (java.util.Arrays.asList)6 Collections.emptyList (java.util.Collections.emptyList)6 Collections.singletonList (java.util.Collections.singletonList)6 MatcherAssert.assertThat (org.hamcrest.MatcherAssert.assertThat)6