4

我有一个应用程序,我正在使用不同的技术进行试验。我有一组用每种技术实现的接口,我使用 spring 配置文件来决定运行哪种技术。每种技术都有自己的 Spring java 配置,并用它们活跃的配置文件进行注释。

我运行我的黄瓜测试来定义哪个配置文件是活动的,但这迫使我每次想要测试不同的配置文件时手动更改字符串,从而无法为所有这些配置文件运行自动化测试。黄瓜中是否有提供一组配置文件以便为每个配置文件运行一次测试?

谢谢!

4

1 回答 1

4

你有两种可能

  1. 标准 - 使用 Cucumber 跑步者运行的少量测试课程
  2. 编写支持多种配置的自定义 Cucumber jUnit 运行器(或准备好运行器)。

在第一种情况下,它将如下所示。缺点是您必须为每个跑步者定义不同的报告,并且每个配置都有几乎相同的 Cucumber 跑步者。

在此处输入图像描述

下面是类的样子:

CucumberRunner1.java

@RunWith(Cucumber.class)
@CucumberOptions(glue = {"com.abc.def", "com.abc.common"},
        features = {"classpath:com/abc/def/",
                "classpath:com/abc/common.feature"},
        format = {"json:target/cucumber/cucumber-report-1.json"},
        tags = {"~@ignore"},
        monochrome = true)
public class CucumberRunner1 {
}

StepAndConfig1.java

@ContextConfiguration(locations = {"classpath:/com/abc/def/configuration1.xml"})
public class StepsAndConfig1 {
    @Then("^some useful step$")
    public void someStep(){
        int a = 0;
    }
}

CucumberRunner2.java

@RunWith(Cucumber.class)
@CucumberOptions(glue = {"com.abc.ghi", "com.abc.common"},
        features = {"classpath:com/abc/ghi/",
                "classpath:com/abc/common.feature"},
        format = {"json:target/cucumber/cucumber-report-2.json"},
        tags = {"~@ignore"},
        monochrome = true)
public class CucumberRunner2 {
}

OnlyConfig2.java

@ContextConfiguration(classes = JavaConfig2.class)
public class OnlyConfig2 {
    @Before
    public void justForCucumberToPickupThisClass(){}
}

第二种方法是使用支持多种配置的自定义黄瓜运行器。您可以自己编写或准备一个,例如我的 - CucumberJar.java和项目cucumber-junit的根。在这种情况下,Cucumber runner 将如下所示:

CucumberJarRunner.java

@RunWith(CucumberJar.class)
@CucumberOptions(glue = {"com.abc.common"},
        tags = {"~@ignore"},
        plugin = {"json:target/cucumber/cucumber-report-common.json"})
@CucumberGroupsOptions({
        @CucumberOptions(glue = {"com.abc.def"},
                features = {"classpath:com/abc/def/",
                        "classpath:com/abc/common.feature"}
        ),
        @CucumberOptions(glue = {"com.abc.ghi"},
                features = {"classpath:com/abc/ghi/",
                        "classpath:com/abc/common.feature"}
        )
})
public class CucumberJarRunner {
}
于 2017-02-21T11:43:54.637 回答