51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1428|回复: 0
打印 上一主题 下一主题

extentreport自定义报告集成到testng项目中,并在jenkins中指定为默认报告

[复制链接]
  • TA的每日心情
    擦汗
    3 天前
  • 签到天数: 527 天

    连续签到: 4 天

    [LV.9]测试副司令

    跳转到指定楼层
    1#
    发表于 2018-11-29 14:53:42 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    1、集成extentreport

    jenkins中安装groovy插件

    在任务中添加goovy脚本,填写如下:

    System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", "")

    在构建后操作中设置html报告,指定报告位置

    在项目的xml中指定监听:
    1. <listeners>
    2.     <listener class-name="common.ExtentTestNGIReporterListener"></listener>
    3.     <!--<listener class-name="test.sen.example.ExtentTestNGITestListener"></listener>-->
    4. </listeners>
    复制代码

    之前在testng项目中增加了自定义报告extentreport,但是集成到jenkins中之后,发现跑完case,这个报告并没有被更新过。
    于是查了一下网上,发现运行mvn test时默认是寻找项目test目录下的文件运行的,但我们测试报告的监听器实际放在textng.xml中,因此jenkins中的任务配置为mvn test之后,并不会走testng.xml的监听器去生成需要的报告。为了解决这个问题,需要在pom.xml中指定运行的文件为testng.xml

    解决办法:
    在pom.xml中配置一下内容:
    1. <build>  
    2.     <plugins>  
    3.         <plugin>  
    4.             <groupId>org.apache.maven.plugins</groupId>  
    5.             <artifactId>maven-compiler-plugin</artifactId>  
    6.             <configuration>  
    7.                 <encoding>UTF-8</encoding>  
    8.             </configuration>  
    9.         </plugin>  
    10.         <plugin>  
    11.             <groupId>org.apache.maven.plugins</groupId>  
    12.             <artifactId>maven-surefire-plugin</artifactId>  
    13.             <version>2.71</version>  
    14.             <configuration>
    15.         <suiteXmlFiles>
    16.           <suiteXmlFile>testng.xml</suiteXmlFile>
    17.         </suiteXmlFiles>
    18. </configuration>
    19.         </plugin>  
    20.     </plugins>  
    21.   </build>
    复制代码


    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-18 06:24 , Processed in 0.061324 second(s), 26 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表