使用System.getProperty()获取@CucumberOptions标签属性



我正在Eclipse中为我的Cucumber测试运行一个maven项目。我的测试运行器类看起来像这样:

@RunWith(Cucumber.class)
@CucumberOptions(
        tags = { "@Now" },      
//      tags = { "@Ready" },
//      tags = { "@Draft" },
        features = { "src/test/java/com/myCompany/FaultReporting/Features" },
        glue = { "com.myCompany.myApp.StepDefinitions" }
        )
public class RunnerTest {   
}

与其将标记硬编码到测试运行器中,我更愿意使用.command文件传递它们。(即使用System.getProperty("cucumber.tag")

但是,当我将这行代码添加到上面的测试运行程序中时,我得到了一个错误:
@RunWith(Cucumber.class)
@CucumberOptions(
        tags = { System.getProperty("cucumber.tag") }
//      tags = { "@Now" },      
//      tags = { "@Ready" },
//      tags = { "@Draft" },
        features = { "src/test/java/com/myCompany/FaultReporting/Features" },
        glue = { "com.myCompany.myApp.StepDefinitions" }
        )
public class RunnerTest {   
}

得到的错误是:标注属性"CucumberOptions"的值。标签必须是一个常量表达式"。

似乎只需要常量而不是参数化的值。有人知道一个聪明的方法吗?

您可以使用cucumber.options环境变量在运行时指定标签

mvn -D"cucumber.options=--tags @Other,@Now" test

替换测试代码中已经包含的标签。

我是这样做的:-

cucmberOption.properties

#cucumber.options=--plugin html:output/cucumber-html-report 
#src/test/resources
cucumber.options.feature =src/test/resources
cucumber.options.report.html=--plugin html:output/cucumber-html-report

Java类:CreateCucumberOptions.java

加载属性文件的方法:-
private static void loadPropertiesFile(){
    InputStream input = null;
    try{
        String filename = "cucumberOptions.properties";
        input = CreateCucumberOptions.class.getClassLoader().getResourceAsStream(filename);
        if(input==null){
            LOGGER.error("Sorry, unable to find " + filename);
            return;
        }
        prop.load(input);
    }catch(IOException e){
        e.printStackTrace();
    }finally{
        if(input!=null) {
            try {
                input.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

获取和设置黄瓜选项的方法

private String createAndGetCucumberOption(){       
 StringBuilder sb = new StringBuilder();
 String featureFilesPath = 
 prop.getProperty("cucumber.options.feature");
 LOGGER.info(" featureFilesPath: " +featureFilesPath);
 String htmlOutputReport = 
  prop.getProperty("cucumber.options.report.html");
 LOGGER.info(" htmlOutputReport: " +htmlOutputReport);
 sb.append(htmlOutputReport);
 sb.append(" ");
 sb.append(featureFilesPath);
 return sb.toString();
}
private void setOptions(){
   String value = createAndGetCucumberOption();
   LOGGER.info(" Value: " +value);
   System.setProperty(KEY, value);
   }

和运行它的主要方法:-

public static void main(String[] args) {
    CreateCucumberOptions cucumberOptions = new CreateCucumberOptions();
    JUnitCore junitRunner = new JUnitCore();
    loadPropertiesFile();
    cucumberOptions.setOptions();
    junitRunner.run(cucumberTest.runners.RunGwMLCompareTests.class);
 }

rungwmlcomparetests。class是我的Cucumber类

@

RunWith(Cucumber.class)
@CucumberOptions(
        monochrome = true,
        tags = {"@passed"},
        glue =  "cucumberTest.steps")
public class RunGwMLCompareTests {
    public RunGwMLCompareTests(){
    }
}

所以基本上现在你得到设置输出报告和功能文件夹通过属性文件和其他选项,如胶水定义java类。要运行测试用例,只需运行你的主类。

问候,学院<维克拉姆•帕塔尼亚p>

相关内容

  • 没有找到相关文章

最新更新