2

我有一个使用 spring boot 和 testng 的黄瓜项目。

这里的主要课程

@SpringBootTest
public class CucumberTestDefinitions extends FunctionalTesting {

    @Given("Something")
    public void smthg(){

    }
}
@ExtendWith(SpringExtension.class)
@ContextConfiguration(classes = FunctionalTestingApp.class, initializers =
        ConfigFileApplicationContextInitializer.class)
public class FunctionalTesting {

    @Autowired
    protected FunctionalTestingConfiguration configuration;
}
@EnableConfigurationProperties(value = {FunctionalTestingConfiguration.class})
public class FunctionalTestingApp  {
}
@EnableAutoConfiguration
@ConfigurationProperties(prefix = "testing")
@Data
public class FunctionalTestingConfiguration {
// the config from yml file
}

我没有 testng.xml 文件,因为测试是使用 spring-boot 启动的。由于某些原因,我想优先考虑测试,我发现我可以使用 QAF(https://qmetry.github.io/qaf/latest/scenario-meta-data.html#pre-defined-meta-data-for -bdd )。我尝试使用它,但它没有用。

这是我所做的:

我将依赖项添加到 pom.xml (我使用 cucumber 5)

我将此注释添加@QAFTestStepProvider到 CucumberTestDefinitions 类

"com.qmetry.qaf.automation.cucumber.QAFCucumberPlugin"我在 RunnerTest 类中添加了这个插件

这里的错误

java.lang.NoSuchMethodError: 'java.lang.reflect.Method com.qmetry.qaf.automation.step.client.TestNGScenario.getMethod()'

我尝试在配置文件夹中添加一个 testng.xml 文件,但没有帮助

QAF spring-boot 兼容吗?

非常感谢您的帮助

编辑

pom.xml:

        <dependency>
            <groupId>io.cucumber</groupId>
            <artifactId>cucumber-java</artifactId>
            <version>5.4.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>io.cucumber</groupId>
            <artifactId>cucumber-testng</artifactId>
            <version>5.6.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>io.cucumber</groupId>
            <artifactId>cucumber-spring</artifactId>
            <version>5.4.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.qmetry</groupId>
            <artifactId>qaf-cucumber</artifactId>
            <version>3.0.0</version>
        </dependency>
        
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.5.RELEASE</version>

跑步者班

        features = {"src/test/resources/toto"})
public class RunnerTest extends AbstractTestNGCucumberTests {

    @Autowired
    private ObjectMapper objectMapper;

    @Override
    @DataProvider(parallel = true)
    public Object[][] scenarios() {
        return super.scenarios();
    }

    @PostConstruct
    public void setUp() {
        objectMapper.registerModule(new JavaTimeModule());
    }

}

错误信息

java.lang.NoSuchMethodError: 'java.lang.reflect.Method com.qmetry.qaf.automation.step.client.TestNGScenario.getMethod()'
    at com.qmetry.qaf.automation.step.client.TestNGScenario.init(TestNGScenario.java:92)
    at com.qmetry.qaf.automation.step.client.TestNGScenario.<init>(TestNGScenario.java:70)
    at com.qmetry.qaf.automation.step.client.TestNGScenario.<init>(TestNGScenario.java:64)
    at com.qmetry.qaf.automation.testng.TestRunnerFactory.convert(TestRunnerFactory.java:76)
    at com.qmetry.qaf.automation.testng.TestRunnerFactory.init(TestRunnerFactory.java:67)
    at com.qmetry.qaf.automation.testng.TestRunnerFactory.newTestRunner(TestRunnerFactory.java:63)
    at org.testng.ITestRunnerFactory.newTestRunner(ITestRunnerFactory.java:55)
    at org.testng.SuiteRunner$ProxyTestRunnerFactory.newTestRunner(SuiteRunner.java:676)
    at org.testng.SuiteRunner.init(SuiteRunner.java:178)
    at org.testng.SuiteRunner.<init>(SuiteRunner.java:112)
    at org.testng.TestNG.createSuiteRunner(TestNG.java:1275)
    at org.testng.TestNG.createSuiteRunners(TestNG.java:1251)
    at org.testng.TestNG.runSuitesLocally(TestNG.java:1100)
    at org.testng.TestNG.runSuites(TestNG.java:1039)
    at org.testng.TestNG.run(TestNG.java:1007)
    at com.intellij.rt.testng.IDEARemoteTestNG.run(IDEARemoteTestNG.java:66)
    at com.intellij.rt.testng.RemoteTestNGStarter.main(RemoteTestNGStarter.java:110)
4

1 回答 1

1

不幸的是,我无法重现相同的错误并获得有关依赖项的其他错误。但是,要解决您最初的问题“QAF cucumber testNG with spring boot”和“喜欢优先测试”方面,简短的回答是肯定的。但可能不会同时使用 TESTNG 和 Cucumber runner,尤其是优先测试。这是什么意思?

当您为 TestNG 使用黄瓜建议的方式时,它只会在 TestNG 中创建一个虚拟测试并将场景作为测试数据提供。这将无法将每个场景视为独立的 TestNG 测试!因此您将无法从 TestNG 中获得所有好处(例如,优先级)。

但是,这并不意味着你不能实现或不能同时使用QAF+Cucumber+TestNG。当您使用QAF时,它具有BDD 的纯 TestNG 实现。QAF 将每个场景视为 TestNG 测试,将带有示例的场景(场景大纲)视为数据驱动测试。qaf-cucuber将能够使用黄瓜步骤,包括您选择的依赖注入,在您的情况下为 Spring。您将受益于所有 TestNG 功能,包括并行执行、侦听器和 QAF 的扩展功能,如元数据过滤器、测试数据过滤器、

因此,当您想使用 TestNG 时,最好提供TestNG 配置来运行用BDD2或 Gherkin(BDD2 的子集)编写的功能文件。您需要做的就是创建以下 XML 文件来运行使用 BDD2 或 Gherkin 编写的功能文件。

<suite name="QAF Demo" verbose="0">
<parameter name="step.provider.pkg" value="pkg.from.where.steps.needs.tobe.loaded" />
<parameter name="scenario.file.loc" value="src/test/resources/toto" />
<test name="BDD Test" enabled="true">
    <classes>
        <class name="com.qmetry.qaf.automation.step.client.text.BDDTestFactory2"></class>
    </classes>
</test>
</suite>

笔记:

  • 当使用黄瓜步骤实现和步骤中使用的类变量时设置step.provider.sharedinstance为。true

  • 在上述方式中,由于您没有使用黄瓜跑步者,因此不会执行任何黄瓜钩子。当您使用 TestNG 时,它具有更好的侦听器支持,您可以利用它和步进侦听器,您可以在 QAF 中使用它。因此,如果您实现了任何钩子,您可以将其移动到适当的之前/之后侦听器方法中,并在配置文件中注册侦听器。


编辑: 我尝试了您共享的测试项目,但我也遇到了不同的问题。最后我能够弄清楚如下。

POM 更新:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.vaadin.external.google</groupId>
                    <artifactId>android-json</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.10</version>
            <scope>test</scope>
        </dependency>

你有两个选择。使用为每个场景或黄瓜跑步者方式创建TestNGScenario的 BDD2 工厂。无论哪种情况,它都应该起作用。您可以添加报告仪表板以在执行后查看报告。

选项1:纯Testng

使用以下命令创建配置文件以作为纯 Testng 测试运行BDDTestFactory2

<suite name="QAF Demo" verbose="0">
    <parameter name="step.provider.pkg" value="my.custom.packagename.testing"/>
    <parameter name="scenario.file.loc" value="src/test/resources/my/custom/packagename/testing"/>
    <parameter name="step.provider.sharedinstance" value="true" />
    <test name="BDD Test" enabled="true">
        <classes>
            <class name="com.qmetry.qaf.automation.step.client.text.BDDTestFactory2"></class>
        </classes>
    </test>
</suite>

使用这个配置文件而不是你的跑步者类。在这种情况下,您不需要 cucumber-testng 依赖项

选项 2:Testng 的黄瓜跑者

  • 您将需要 cucumber-testng 依赖项
  • 要使用您的黄瓜跑步者运行,请使用相同版本的黄瓜和黄瓜测试。在您的情况下, cucumber-* 版本需要相同5.6.05.4.0
  • 更新跑步者类如下:
@CucumberOptions(plugin = {"com.qmetry.qaf.automation.cucumber.QAFCucumberPlugin", "pretty", "html:target", "timeline:target"},
        /*tags = {"@Ignore"},*/
        features = {"src/test/resources/my/custom/packagename/testing"})
public class RunnerTest extends AbstractTestNGCucumberTests {

    @Autowired
    private ObjectMapper objectMapper;
    
    @Test(groups = "cucumber", description = "Runs Cucumber Scenarios", dataProvider = "scenarios")
    public void runScenario(PickleWrapper pickleWrapper, FeatureWrapper featureWrapper) throws Throwable {
        super.runScenario(pickleWrapper,featureWrapper);
    }

    @Override
    @DataProvider(parallel = true, name = "scenarios")
    public Object[][] scenarios() {
        return super.scenarios();
    }

    @PostConstruct
    public void setUp() {
        objectMapper.registerModule(new JavaTimeModule());
    }

}

作为 TestNG 运行。

于 2020-09-14T21:19:51.903 回答