python自动化测试报告_Python unittest自动测试(获取最新测试报告并发送电子邮件),pythonunittest,自动化,的...

一、目录结构

watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2trX2dvZHM=,size_16,color_FFFFFF,t_70

二、实现

# coding=utf-8

from email.mime.text import MIMEText

from email.mime.multipart import MIMEMultipart

import smtplib,os

def get_report_file(report_path):

"""

获取最新的测试报告

:param report_path:

:return:

"""

lists = os.listdir(report_path)

lists.sort(key=lambda fn: os.path.getmtime(os.path.join(report_path, fn)))

print(u'最新测试生成的报告: '+lists[-1])

# 找到最新生成的报告文件

report_file = os.path.join(report_path, lists[-1])

return report_file

def send_mail(sender, psw, receiver, cc_receiver, smtpserver, report_file, port):

"""发送最新的测试报告内容"""

with open(report_file, "rb") as f:

mail_body = f.read()

# 定义邮件内容

msg = MIMEMultipart()

body = MIMEText(mail_body, _subtype='html', _charset='utf-8')

msg['Subject'] = u"接口自动化测试报告"

msg["from"] = sender

msg["to"] = ",".join(receiver)

msg["Cc"] = ",".join(cc_receiver)

msg.attach(body)

# 添加附件

att = MIMEText(open(report_file, "rb").read(), "base64", "utf-8")

att["Content-Type"] = "application/octet-stream"

att["Content-Disposition"] = 'attachment; filename= "report.html"'

msg.attach(att)

smtp = smtplib.SMTP()

smtp.connect(smtpserver, port)

# 用户名密码

smtp.login(sender, psw)

smtp.sendmail(sender, receiver+cc_receiver, msg.as_string())

smtp.quit()

print('Test report email has send to {} !'.format(receiver))

def main():

# 获取最新的测试报告文件

report_path = os.path.join(cur_path, "report") # 测试报告文件夹

report_file = get_report_file(report_path) # 获取最新的测试报告

print('report_file: ', report_file)

# 邮箱配置

sender = readconfig.sender

psw = readconfig.psw

smtp_server = readconfig.smtp_server

port = readconfig.port

receivers = readconfig.receiver.split(',')

cc_receiver = readconfig.cc_receiver.split(',')

send_mail(sender, psw, receivers, cc_receiver, smtp_server, report_file, port) # 发送报告

if __name__ == "__main__":

main()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值