zoukankan      html  css  js  c++  java
  • reportng之测试报告升级美化

    背景:偶然看到一个人的自动化框架的测试报告好漂亮,心痒痒,今天弄了一下午,还是不行,结果到现在就现在,我特么成功了,不为什么

    Mark一下:

    本地化修改

    获取源码,修改reportng.properties文件,reportng.properties中的内容是键值对,修改后面的值为中文即可。其他视情况做改变。

    passed=通过

    修改测试结果顺序

    需要修改TestResultComparator类,参考链接

    class TestResultComparator implements Comparator<ITestResult> {
        publicintcompare(ITestResult result1, ITestResult result2) {
            // 按照名称排序显示
            // return result1.getName().compareTo(result2.getName());
    
            // 按照运行时间排序显示
            int longresult2 = 0;
            if (result1.getStartMillis() < result2.getStartMillis()) {
                longresult2 = -1;
            } else {
                longresult2 = 1;
            }
            return longresult2;
        }
    }

    主页添加饼图显示

    主页的饼图用的是ichart开源图形组件.
    主页的概括显示在overview.html.vm页面当中,先在文件中导入ichart组件。

    title标签下

    <script src='http://www.ichartjs.com/ichart.latest.min.js'></script>

    添加饼图的标签<h1>下

    <div id='ichart-render'></div>

     

    给通过总数,失败总数和跳过总数添加id属性

    <td class="passRate suite">之前添加,找到#if($totalPassed>0),为td标签,添加id属性,如下:

    #if ($totalPassed > 0)
    <td id="tpn" class="passed number">$totalPassed</td>
    #else
    <td id="tpn" class="zero number">0</td>
    #end
    
    #if ($totalSkipped > 0)
    <td id="tsn" class="skipped number">$totalSkipped</td>
    #else
    <td id="tsn" class="zero number">0</td>
    #end
    
    #if ($totalFailed > 0)
    <td id="tfn" class="failed number">$totalFailed</td>
    #else
    <td id="tfn" class="zero number">0</td>
    #end

    添加饼图显示的js代码

    <script type='text/javascript'>
    pcount=document.getElementById("tpn").innerHTML;
    fcount=document.getElementById("tfn").innerHTML;
    scount=document.getElementById("tsn").innerHTML;
    $(function(){
         var chart = iChart.create({
               render:"ichart-render",
               width:800,
               height:400,
               background_color:"#fefefe",
               gradient:false,
               color_factor:0.2,
               border:{
                     color:"BCBCBC",
                     width:0
               },
               align:"center",
               offsetx:0,
               offsety:0,
               sub_option:{
                     border:{
                           color:"#BCBCBC",
                           width:1
                     },
                     label:{
                           fontweight:500,
                           fontsize:11,
                           color:"#4572a7",
                           sign:"square",
                           sign_size:12,
                           border:{
                                 color:"#BCBCBC",
                                 width:1
                           }
                     }
               },
               shadow:true,
               shadow_color:"#666666",
               shadow_blur:2,
               showpercent:false,
               column_width:"70%",
               bar_height:"70%",
               radius:"90%",
               subtitle:{
                     text:"",
                     color:"#111111",
                     fontsize:16,
                     font:"微软雅黑",
                     textAlign:"center",
                     height:20,
                     offsetx:0,
                     offsety:0
               },
               footnote:{
                     text:"",
                     color:"#111111",
                     fontsize:12,
                     font:"微软雅黑",
                     textAlign:"right",
                     height:20,
                     offsetx:0,
                     offsety:0
               },
               legend:{
                     enable:false,
                     background_color:"#fefefe",
                     color:"#333333",
                     fontsize:12,
                     border:{
                           color:"#BCBCBC",
                           width:1
                     },
                     column:1,
                     align:"right",
                     valign:"center",
                     offsetx:0,
                     offsety:0
               },
               coordinate:{
                     width:"80%",
                     height:"84%",
                     background_color:"#ffffff",
                     axis:{
                           color:"#a5acb8",
                           width:[1,"",1,""]
                     },
                     grid_color:"#d9d9d9",
                     label:{
                           fontweight:500,
                           color:"#666666",
                           fontsize:11
                     }
               },
               label:{
                     fontweight:500,
                     color:"#666666",
                     fontsize:11
               },
               type:"pie2d",
               data:[
                     {
                     name:"通过",
                     value:pcount,
                     color:"#44aa44"
               },{
                     name:"失败",
                     value:fcount,
                     color:"#ff4444"
               },{
                     name:"跳过",
                     value:scount,
                     color:"#FFD700"
               }
               ]
         });
         chart.draw();
    });
    </script>

    饼图显示效果:

     

  • 相关阅读:
    sql 将某列转换成一个字符串 for xml path用法
    IAsyncResult 接口异步 和 匿名委托
    存储过程和sql语句的优缺点
    ADO.net中常用的对象有哪些?分别描述一下。
    ASP.Net页面生命周期
    请说明在.net中常用的几种页面间传递参数的方法,并说出他们的优缺点。
    .net常用的传值的方法
    SQL列合并
    程序员的情书!
    程序员的表达!
  • 原文地址:https://www.cnblogs.com/longronglang/p/6875721.html
Copyright © 2011-2022 走看看