编程语言
首页 > 编程语言> > [转]Python测试框架对比----unittest, pytest, nose, robot framework对比

[转]Python测试框架对比----unittest, pytest, nose, robot framework对比

作者:互联网

本人在工作中实际接触的几种测试框架,特意网上找了下几种框架的对比,个人还是比较推荐使用pytest。 测试框架

什么是框架?

框架(Framework)是整个或部分系统的可重用设计,
框架是用来解决代码的组织及运行控制问题的。

在我们编写自动化脚本的时候,经常需要读取配置文件,读取数据文件,发送请求,记录日志,连接并对比数据库数据。每个脚本里都重写一遍各种方法不仅工作量大而且易错。所以我们需要把公共的方法提取出来,封装成单独的模块,放到公用方法包里。另外配置文件,数据文件,日志等我们也需要分类存到不同的文件夹下。这种对公共方法的封装及对脚本及配置文件怎么组织的设计就叫做框架。

同时,一般框架除了完成对代码及配置文件的组织之外还要提供运行的控制功能。比如批量执行,分模块执行,生成报告,异常处理等等。

总结为以下3点:

什么是测试框架?

一个完整的测试脚本(用例)一般包含以下几个步骤:

而测试框架一般还要完成用例加载,批量执行,异常控制,结果输出等功能。基础的测试框架一般只提供执行控制方面的功能。

测试框架应具有的特点

unittest,pytest,nose,robot framework简介

项目unittestnosepytestrobot framework
用例编写 继承unittest.TestCase类需要组织各种testSuite断言种类繁多 test开头的方法即可 test开头的方法即 可 robot格式,文本文件
执行器 自己写run_all_tests+discover+CommandParser+... nosetests ... py.test ... pybot ...
用例发现Discover 支持 支持 支持 支持
跳过用例 unittest.skip()unittest.skipIf()raise uniitest.SkipTest from nose.plugins.skip import SkipTestraise SkipTest @pytest.mark.skipif( condition)@pytest.mark.xfail -
Fixtures setUp/tearDown@classmethodsetUpClass... 支持 @pytest.fixture(session="session", autouse=True)fixture的作用域:function、module、session ,autouse=True使得函数将默认执行 [Setup] ...[Teardown] ...
用例标签tags 借助unittest.skip()+comandParser实现 attrib标签from nose.plugins.attrib import attr@attr(speed='slow')def test_big_download(): pass$ nosetests -a speed=slow @pytest.mark.webtest自定义一个mark,如下,然后 py.test -v -m webtest 只运行标记了webtest的函数, py.test -v -m "not webtest" 来运行未标记webtest的 [Tags] test level1pybot -i/--include tagName C:\TF-Testpybot -e/--exculde level1 *.robot排除
超时机制Timeout 自己实现 from nose.tools import timedimport time@timed(1)def test_lean_5():time.sleep(2)pass pip install pytest-timeout@pytest.mark.timeout(60)或 pytest --timeout=300 [Timeout] 3 seconds
参数化 结合ddt使用 结合ddt使用 @pytest.mark.parametrize("a,b,expected", testdata)def test_timedistance_v0(a, b, expected):diff = a - bassert diff == expected [Template] 1 2 3
报告 HTMLTestRunner pip install nose-htmloutput--with-html --html-file= pip install -U pytest-htmlpy.test --html=./report.html 支持,默认自动生成
日志log 自己实现 --nologcapture 不使用log--logging-format=FORMAT使用自定义的格式显示日志--logging-datefmt=FORMAT 和上面类类似,多了日期格式--logging-filter=FILTER日志过滤,一般很少用,可以不关注--logging-clear-handlers 也可以不关注--logging-level=DEFAULT log的等级定义 pytest test_add.py --resultlog=./log.txtpytest test_add.py --pastebin=all 支持,默认自动生成
只列出用例collect-only nosetests --collect-onlynosetests -v --with-id --collect-only -v -
失败用例重跑rerun failures nosetests -v --failed pip install -U pytest-rerunfailures@pytest.mark.flaky(reruns=5)py.test --rerun=3 robot --rerunfailed
baseline对比
并发 改造unittest使用协程并发,或使用线程池+Beautiful Report 命令行并发 pytest-xdist:分发到不用的cpu或机器上 命令行并发
xml报告 --with-xunit --xunit-file=... /pytest+Allure --junit-xml=
Selenium支持 pytest-selenium robotframework-seleniumlibraryrobotframwork-selenium2library

总结:总体来说,unittest比较基础,二次开发方便,适合高手使用;pytest/nose更加方便快捷,效率更高,适合小白及追求效率的公司;robot framework由于有界面及美观的报告,易用性更好,灵活性及可定制性略差。

标签:框架,Python,unittest,用例,pytest,nose,test,对比
来源: https://www.cnblogs.com/helloTerry1987/p/12573711.html