发送测试报告邮件
from HTMLTestRunner import HTMLTestRunner
import unittest
from email.mime.text import MIMEText
from email.header import Header
import smtplib
import time
import os
#定义发送邮件
def send_mail(file_new):
f = open(file_new,"rb")
mail_body = f.read()
f.close()
#编写HTML类型邮件正文
msg = MIMEText(mail_body,"html","utf-8")
msg["Subject"] = Header("自动化测试报告","utf-8")
#发送邮箱服务器
smtp = smtplib.SMTP()
smtp.connect("smtp.qq.com")
#发送邮箱用户/qq邮箱smtp的授权码
smtp.login("xxxx@qq.com","xxxxx")
#发送邮箱/接收邮箱/邮件主题
smtp.sendmail("xxx@qq.com","xxxx@qq.com",msg.as_string())
smtp.quit()
print("email has send out")
#查找测试报告目录,找到最新生成的测试报告文件
def new_report(testreport):
lists = os.listdir(testreport)
#重新按时间对目录下的文件进行排序
lists.sort(key=lambda fn: os.path.getmtime(testreport +"\\"+fn))
file_new = os.path.join(testreport,lists[-1])
print(file_new)
return file_new
if __name__ == "__main__":
#测试用例文件路径
test_dir = "E:\\Workspace\\test_case\\test_a"
#测试报告存放路径
test_report = "E:\\"
discover = unittest.defaultTestLoader.discover(test_dir,
pattern="test*.py")
#时间格式
now = time.strftime("%Y-%m-%d %H_%M_%S")
filename = test_report + "\\" + now + "测试.html"
fp = open(filename,"wb")
runner = HTMLTestRunner(stream=fp,
title="测试报告",
description="测试执行情况:")
runner.run(discover)
fp.close()
#发送测试报告
new_report = new_report(test_report)
send_mail(new_report)