在我的自动化项目中,我有两位负责人,如下所示:
主运行程序-执行所有@ui测试标记的测试用例,如果场景失败,target/rerun.txt将填充场景位置(例如features/Dummy.feature:22):
@CucumberOptions(
features = "classpath:features",
plugin = {"pretty", "html:target/cucumber-html-report", "json:target/cucumber.json", "rerun:target/rerun.txt"},
tags = {"@ui-test", "~@ignore"}
)
辅助运行程序-从target/rerun.txt重新执行场景:
@CucumberOptions(
features = "@target/rerun.txt",
plugin = {"pretty", "html:target/cucumber-html-report-rerun", "json:target/cucumber_rerun.json"}
)
执行时,会创建两个结果json文件:
cucumber.json cucumber_rerun.json
Maven Cucumber报告插件将收集结果并创建一个组合报告。
问题是,即使在第二次运行中通过了所有target/rerun.txt测试,由于cucumber.json错误,报告状态仍将保持失败。
有没有办法(设置Cucumber JVM Reports插件或修改上面的运行程序)用Cucumber_rerun.json的结果覆盖Cucumber.json并只发布修改后的cucucumber.json?
As given in link-
https://stackoverflow.com/questions/39742420/combine-multiple-json-results-in-one-updated-cucumber-jvm-report?rq=1
I wrote the logic to perform following steps in second runner-
1- Deserialize the cucumber.json data into POJO.
2- Remove the testcases data which got failed from POJO as these cases will be rerun.
3- Serialize the POJO objects into json and overwrite the cucumber.json file
Below is the logic for same-
@BeforeClass
public static void readjson() {
try{
File jsonFile = new File("./target/cucumber.json");
String cucumberJsondata=new String(Files.readAllBytes(Paths.get(jsonFile.toURI())));
ObjectMapper om = new ObjectMapper();
//Root is the POJO Class
List<Root> listRoot = om.readValue(cucumberJsondata, new TypeReference<List<Root>>(){});
//Root root = om.readValue(cucumberJsondata, Root.class);
boolean removeflag=false;
int[][]FeatureScn = new int[listRoot.size()][];
//ArrayList<ArrayList<Integer>> FeatureScn = new ArrayList<ArrayList<Integer>>();
int featurecount=0;
for(Root root:listRoot)
{
List<Element> ele=root.elements;
int scncount=0;
ArrayList<Integer> removeEleIndex = new ArrayList<Integer>();
FeatureScn[featurecount] = new int[root.elements.size()];
for(Element e:root.elements)//scenario counter
{
if(e.type.equalsIgnoreCase("scenario"))
{
removeflag=false;
for(Step s:e.steps)
{
if(s.result.status.equals("failed"))
{
removeflag=true;
break;
}
}
if(removeflag)
FeatureScn[featurecount][scncount]= scncount;
else
FeatureScn[featurecount][scncount]= -1;
}
scncount++;
}
featurecount++;
}
for(int i =0;i<listRoot.size();i++)
{
for(int j=0;j<FeatureScn[i].length;j++)
if(FeatureScn[i][j]!=-1)
listRoot.get(i).getElements().remove(FeatureScn[i][j]);
}
ObjectMapper objectMapper = new ObjectMapper();
FileOutputStream fos = null;
File file = new File("target/cucumber.json");
if (file.exists()) {
fos = new FileOutputStream(file, false);
objectMapper.writeValue(fos, listRoot);
fos.close();
}
} catch (FileNotFoundException e) {
System.out.println("An error occurred.");
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
本文向大家介绍如何从TestNG中的测试用例集合中合并和删除测试方法?,包括了如何从TestNG中的测试用例集合中合并和删除测试方法?的使用技巧和注意事项,需要的朋友参考一下 我们可以借助testng xml文件中的<groups>标记从执行中合并和删除测试方法。 示例 Testng xml文件。 testNG xml具有要包含的Smoke组和要从执行中排除的CodingModule组。 示例 在
我有一个名为$PRODUCTS_LIST的数组,它填充了数据,结构如下: 如果数组中的值具有相同的描述和条件,我正在尝试从数组中删除任何重复值,并合并重复值中的数量。 我尝试将数据设置为临时数组,以便能够将两个数组比较为foreach语句。类似这样的事情:
我试图通过合并排序对数组进行排序,并在排序时删除我认为相等的元素。我递归调用合并排序,然后合并。 到了这一点,我发现a和c是重复的。 我根据特定的标准决定我想要哪一个,我选择c。我递增右手计数器和左手计数器,比较b和d。假设我选择d,然后我选择b。我希望我的最终列表只有元素 但是,发生的事情是在下一个递归调用中,和是0和3,因此d在下一次调用时在数组中列出两次。合并过程使用的数组是: 这是代码。提
在我认为是彻底的谷歌搜索后,我只能找到一种方法来做这件事与声纳。有没有更简单的方法可以做到这一点? 相关问题:Maven分离单元测试和集成测试
是否有任何方法可以使用REST API创建组并邀请用户?我试过这个请求帖子https://www.yammer.com/api/v1/groups.json{“name”:“test name”,“private”:false,“description”:“测试组”} 响应客户端错误响应[url]https://www.yammer.com/api/v1/groups.json[状态代码] 404
问题内容: 我有两个JavaScript数组: 我希望输出为: 输出数组应删除重复的单词。 如何在JavaScript中合并两个数组,以使每个数组中的唯一项按插入原始数组中的相同顺序获得? 问题答案: 仅合并数组(不删除重复项) ES5版本使用: ES6版本使用解构 由于没有“内置”方式来删除重复项ECMA-262实际上有这样做的好处),因此我们必须手动进行: 然后,使用它: 这也将保留数组的顺序