博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TestNg 12. extentReport测试报告
阅读量:5107 次
发布时间:2019-06-13

本文共 8196 字,大约阅读时间需要 27 分钟。

直接上代码:以下是我的目录结构,首先新建一个包名字叫 com.tester.extent.demo,直接新建两个类就可以,名字叫  ExtentTestNGIReporterListener  和 TestMethodsDemo。在resource里面新建一个testng.xml文件

为什么要建两个类呢,因为不建这两个类的话,测试报告打开以后是没有样式的:比如下面的这样,然后查看他的源码

源码:因为css央视没有加载出来,所以,没有样式。我们就需要自己指定一个样式,所以新建一个监听类

 

TestMethodsDemo.java

package com.tester.extent.demo;import org.testng.Assert;import org.testng.Reporter;import org.testng.annotations.Test;public class TestMethodsDemo {    @Test    public void test1(){        Assert.assertEquals(1,2);    }    @Test    public void test2(){        Assert.assertEquals(1,1);    }    @Test    public void test3(){        Assert.assertEquals("sss","sss");    }    @Test    public void logDemo(){        Reporter.log("这是我们自己写的日志");        throw new RuntimeException("这是自己抛得异常");    }}

ExtentTestNGIReporterListener.java

package com.tester.extent.demo;import com.aventstack.extentreports.ExtentReports;import com.aventstack.extentreports.ExtentTest;import com.aventstack.extentreports.ResourceCDN;import com.aventstack.extentreports.Status;import com.aventstack.extentreports.model.TestAttribute;import com.aventstack.extentreports.reporter.ExtentHtmlReporter;import com.aventstack.extentreports.reporter.configuration.ChartLocation;import com.aventstack.extentreports.reporter.configuration.Theme;import org.testng.*;import org.testng.xml.XmlSuite;import java.io.File;import java.util.*;public class ExtentTestNGIReporterListener implements IReporter {    //生成的路径以及文件名    private static final String OUTPUT_FOLDER = "test-output/";    private static final String FILE_NAME = "index.html";    private ExtentReports extent;    @Override    public void generateReport(List
xmlSuites, List
suites, String outputDirectory) { init(); boolean createSuiteNode = false; if(suites.size()>1){ createSuiteNode=true; } for (ISuite suite : suites) { Map
result = suite.getResults(); //如果suite里面没有任何用例,直接跳过,不在报告里生成 if(result.size()==0){ continue; } //统计suite下的成功、失败、跳过的总用例数 int suiteFailSize=0; int suitePassSize=0; int suiteSkipSize=0; ExtentTest suiteTest=null; //存在多个suite的情况下,在报告中将同一个一个suite的测试结果归为一类,创建一级节点。 if(createSuiteNode){ suiteTest = extent.createTest(suite.getName()).assignCategory(suite.getName()); } boolean createSuiteResultNode = false; if(result.size()>1){ createSuiteResultNode=true; } for (ISuiteResult r : result.values()) { ExtentTest resultNode; ITestContext context = r.getTestContext(); if(createSuiteResultNode){ //没有创建suite的情况下,将在SuiteResult的创建为一级节点,否则创建为suite的一个子节点。 if( null == suiteTest){ resultNode = extent.createTest(r.getTestContext().getName()); }else{ resultNode = suiteTest.createNode(r.getTestContext().getName()); } }else{ resultNode = suiteTest; } if(resultNode != null){ resultNode.getModel().setName(suite.getName()+" : "+r.getTestContext().getName()); if(resultNode.getModel().hasCategory()){ resultNode.assignCategory(r.getTestContext().getName()); }else{ resultNode.assignCategory(suite.getName(),r.getTestContext().getName()); } resultNode.getModel().setStartTime(r.getTestContext().getStartDate()); resultNode.getModel().setEndTime(r.getTestContext().getEndDate()); //统计SuiteResult下的数据 int passSize = r.getTestContext().getPassedTests().size(); int failSize = r.getTestContext().getFailedTests().size(); int skipSize = r.getTestContext().getSkippedTests().size(); suitePassSize += passSize; suiteFailSize += failSize; suiteSkipSize += skipSize; if(failSize>0){ resultNode.getModel().setStatus(Status.FAIL); } resultNode.getModel().setDescription(String.format("Pass: %s ; Fail: %s ; Skip: %s ;",passSize,failSize,skipSize)); } buildTestNodes(resultNode,context.getFailedTests(), Status.FAIL); buildTestNodes(resultNode,context.getSkippedTests(), Status.SKIP); buildTestNodes(resultNode,context.getPassedTests(), Status.PASS); } if(suiteTest!= null){ suiteTest.getModel().setDescription(String.format("Pass: %s ; Fail: %s ; Skip: %s ;",suitePassSize,suiteFailSize,suiteSkipSize)); if(suiteFailSize>0){ suiteTest.getModel().setStatus(Status.FAIL); } } }// for (String s : Reporter.getOutput()) {// extent.setTestRunnerOutput(s);// } extent.flush(); } private void init() { //文件夹不存在的话进行创建 File reportDir= new File(OUTPUT_FOLDER); if(!reportDir.exists()&& !reportDir .isDirectory()){ reportDir.mkdir(); } ExtentHtmlReporter htmlReporter = new ExtentHtmlReporter(OUTPUT_FOLDER + FILE_NAME); // 设置静态文件的DNS //怎么样解决cdn.rawgit.com访问不了的情况 htmlReporter.config().setResourceCDN(ResourceCDN.EXTENTREPORTS); htmlReporter.config().setDocumentTitle("api自动化测试报告"); htmlReporter.config().setReportName("api自动化测试报告"); htmlReporter.config().setChartVisibilityOnOpen(true); htmlReporter.config().setTestViewChartLocation(ChartLocation.TOP); htmlReporter.config().setTheme(Theme.STANDARD); htmlReporter.config().setCSS(".node.level-1 ul{ display:none;} .node.level-1.active ul{display:block;}"); extent = new ExtentReports(); extent.attachReporter(htmlReporter); extent.setReportUsesManualConfiguration(true); } private void buildTestNodes(ExtentTest extenttest, IResultMap tests, Status status) { //存在父节点时,获取父节点的标签 String[] categories=new String[0]; if(extenttest != null ){ List
categoryList = extenttest.getModel().getCategoryContext().getAll(); categories = new String[categoryList.size()]; for(int index=0;index
0) { //调整用例排序,按时间排序 Set
treeSet = new TreeSet
(new Comparator
() { @Override public int compare(ITestResult o1, ITestResult o2) { return o1.getStartMillis()
0){ if(name.length()>50){ name= name.substring(0,49)+"..."; } }else{ name = result.getMethod().getMethodName(); } if(extenttest==null){ test = extent.createTest(name); }else{ //作为子节点进行创建时,设置同父节点的标签一致,便于报告检索。 test = extenttest.createNode(name).assignCategory(categories); } //test.getModel().setDescription(description.toString()); //test = extent.createTest(result.getMethod().getMethodName()); for (String group : result.getMethod().getGroups()) test.assignCategory(group); List
outputList = Reporter.getOutput(result); for(String output:outputList){ //将用例的log输出报告中 test.debug(output); } if (result.getThrowable() != null) { test.log(status, result.getThrowable()); } else { test.log(status, "Test " + status.toString().toLowerCase() + "ed"); } test.getModel().setStartTime(getTime(result.getStartMillis())); test.getModel().setEndTime(getTime(result.getEndMillis())); } } } private Date getTime(long millis) { Calendar calendar = Calendar.getInstance(); calendar.setTimeInMillis(millis); return calendar.getTime(); }}

testng.xml

运行结果:

 

转载于:https://www.cnblogs.com/peiminer/p/9597419.html

你可能感兴趣的文章
经纬度计算是否在圆形内,是否在矩形内,是否在多边形内方法
查看>>
python3.x 和 python2.x关于 urllib的用法
查看>>
网站搭建(二)
查看>>
VS2010插件
查看>>
[转]win7下修改C盘USERS文件下的名称
查看>>
HowTo:freeswitch在多网卡服务器下如何配置
查看>>
C语言中隐藏结构体定义的方法
查看>>
“父窗口拖动的时候Popup不随着父窗口移动”问题的解决方案
查看>>
Android源码:(一) 安卓2.1到4.4操作系统通用的Actionbar实现的tab导航例子。
查看>>
Ubuntu 下安装 CCNx0.8.2
查看>>
UVA-227 Puzzle(模拟)
查看>>
基于ruby的watir自动化测试 笔记一
查看>>
FTP服务器FileZilla Server配置及使用方法
查看>>
python radix算法实现
查看>>
globals和locals的区别
查看>>
delphi 动态数组
查看>>
JDK动态代理和CGLIB的区别
查看>>
js 日期证有效性验的通用方法
查看>>
PHP日常排错
查看>>
2142134
查看>>