python自动发送测试报告邮件功能的实现

时间:2021-05-22

自动化发邮件功能也是自动化测试项目中的重要需求之一。在自动化脚本运行完成之后,邮箱就可以收到最新的测试报告结果,把这种主动的且不及时的查看变成被动且及时的查收,就方便多了。

首先我们需要一份漂亮且通俗易懂的测试报告来展示自动化测试成果, HTMLTestRunner 是 python 标准库 unittest 单元测试框架的一个扩展,它生成易于使用的HTML测试报告。

下载地址: http://tungwaiyip.info/software/HTMLTestRunner.html

这个扩展非常简单,只有一个.py文件,选中后直接下载到本地即可。安装方法也很简单,将其复制到python的安装目录下即可。

windows:将下载的文件保存在../Python35/Lib目录下

Linux(ubuntu):以root身份将HTMLTestRunner.py复制到/usr/local/Python3.7/dist-packages/ 目录下

修改HTMLTestRunner

#第 94 行import StringIo修改为:import io#第 539 行self.outputBuffer=StringIO.StringIO()修改为:self.outputBuffer=io.StringIO()#第 631 行print >>sys.stderr, 'nTime Elapsed: %s' % (self.stopTime-self.startTime)修改为:print(sys.stderr, 'nTime Elapsed: %s' % (self.stopTime-self.startTime))#第 642 行if not rmap.has_key(cls):修改为:if not cls in rmap:#第 766 行uo=o.decode('latin-1')修改为:uo=o#第 772 行ue=e.decode('latin-1')修改为:ue=e

生成HTML测试报告

from selenium import webdriverimport unittestfrom HTMLTestRunner import HTMLTestRunnerclass Baidu(unittest.TestCase): def setUp(self): self.driver=webdriver.Firefox() self.driver.implicitly_wait(10) self.base_url="https://,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_nowif __name__=='__main__': test_dir='D:\\testpro\\test_case' test_report='D:\\testpro\\report' discover=unittest.defaultTestLoader.discover(test_dir,pattern='test_*.py') now=time.strftime("%Y-%M-%D_%H_%M_%S") filename=test_report+'\\'+now+'result.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)

整个程序的执行过程可以分为三个步骤:

  • 通过unittest框架的discover()找到匹配测试用例。由HTMLTestRunner的run()方法执行测试用例并生成最新的测试报告。
  • 调用new_report()函数找到测试报告目录(report)下最新生成的测试报告,返回测试报告的路径。
  • 将得到的最新测试报告的完整路径传给send_mail()函数,实现发邮件功能。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章