要求:
1.robotframework结合jenkins,实现集成构建
2.构建后能解析执行结果,并邮件发送给特定人的邮箱
3.邮件内容可以自定义,做到美观(自带的邮件内容不美观),下图是自定义模版
我的前置条件:
1.Jenkins部署在Windows环境下(如果Jenkins部署在Linux环境下,robotframework最好也搭建在Linux下)
2.robotframework也在Windows环境下,脚本没放到svn上,本次内容不涉及svn(jenkins结合本地的脚本跑的)
3.已经安装了Jenkins(下载地址https://jenkins.io/download/)
步骤:
一。登录Jenkins,系统设置
1.下载插件
系统管理-插件管理,选择“可选插件”tab页,在过滤框中依次搜索并下载:Robot Framework plugin,Email Extension Plugin,Zentimestamp plugin
2.系统设置邮件配置:系统管理-系统设置(只改图中的地方,其他不用管)
二。新建job
1.新建任务,选择“构建一个自由风格的软件项目”,点击确定
2.1因为我脚本没放在svn上,所以这边选择无
2.2构建选择执行Windows批处理命令,其中的路径是你脚本的存放路径,其他不变
3.3构建后操作,选择publish robot framework test results,路径是执行脚本后存放log地址,例如log.html,report.html等文件的目录,下面数字不用管了
3.4 构建后操作,再选择个editable email notification。配置信息如下
下图中照选。如果没有此页面点击advaned。其中reciplent list就是系统设置中邮箱收件人
三。自定义邮件内容
找到Jenkins按照目录,我的在d:/jenkins
目录下有个文件夹叫email-templates,没有自己新建个
在该文件夹下新建个文档,命名为:robot_results.groovy。里面内容:
<% <% def suites = action.result.allSuites <% DateFormat format = new SimpleDateFormat("yyyyMMdd HH:mm:ss") *这个是通过Jenkins自动构建得出的报告,仅供参考。 No Robot Framework test results found.
import java.text.DateFormat
import java.text.SimpleDateFormat
%>
<%
def robotResults = false
def actions = build.actions // List
actions.each() { action ->
if( action.class.simpleName.equals("RobotBuildAction") ) { // hudson.plugins.robot.RobotBuildAction
robotResults = true %>
自动化测试汇总报告
详细报告:
点击查看报告详情
用例总数
通过
不通过
通过率
<%= action.result.overallTotal %>
<%= action.result.overallPassed %>
<%= action.result.overallFailed %>
<%= action.overallPassPercentage %>%
Test Name
Status
Elapsed Time
suites.each() { suite ->
def currSuite = suite
def suiteName = currSuite.displayName
// ignore top 2 elements in the structure as they are placeholders
while (currSuite.parent != null && currSuite.parent.parent != null) {
currSuite = currSuite.parent
suiteName = currSuite.displayName + "." + suiteName
} %>
<%= suiteName %>
def execDateTcPairs = []
suite.caseResults.each() { tc ->
Date execDate = format.parse(tc.starttime)
execDateTcPairs << [execDate, tc]
}
// primary sort execDate, secondary displayName
execDateTcPairs = execDateTcPairs.sort{ a,b -> a[1].displayName <=> b[1].displayName }
execDateTcPairs = execDateTcPairs.sort{ a,b -> a[0] <=> b[0] }
execDateTcPairs.each() {
def execDate = it[0]
def tc = it[1] %>
<%= tc.displayName %>
"><%= tc.isPassed() ? "PASS" : "FAIL" %>
<%= tc.getDuration().intdiv(60000)+"分"+(tc.getDuration()-tc.getDuration().intdiv(60000)*60000).intdiv(1000)+"秒" %>
<% if(tc.errorMsg != null) {%>
错误描述:
<%= tc.errorMsg%>
<%
}%>
<% } // tests
} // suites %>
<%
} // robot results
}
if (!robotResults) { %>
<%
} %>
大功告成,去Jenkins里构建下,就能收到邮件了。
参考博客: https://blog.csdn.net/ojiawang/article/details/51872481
https://blog.csdn.net/chushujin/article/details/81279127