Nose-3-精通

简介: Nose-3-精通

网络异常,图片无法展示
|


用例标签


前面我们已经介绍了用例的组织,测试报告等。现在我们一起来了解下 nose 的用例标签怎么使用。


代码结构上边文章中有介绍:Nose | 超轻的单元测试框架-进阶


test_01.py


from nose.plugins.attrib import attr
def setup():
    print('tests set 01 will be start...')
def teardown():
    print('tests set 01 has been end...')
@attr(tag='ok')
def test_A():
    assert 1+1 == 2
@attr(tag='ok')
def test_B():
    assert 2-1 == 1
复制代码


test_02.py


from nose.plugins.attrib import attr
def setup():
    print('tests set 02 will be start...')
def teardown():
    print('tests set 02 has been end...')
@attr(tag='ok')
def test_1():
    assert 'a' == 'a'
@attr(tag='not ok')
def test_2():
    assert 'A' == 'a'
复制代码


main.py


import os
ph = os.path.dirname(__file__)
cmd = 'nosetests -v -s -a tag="not ok" {}'.format(ph)
if __name__ == "__main__":
    os.system(cmd)
复制代码


如上可以看到在 nosetests 命令行中增加了参数:-a tag="not ok"

运行 main.py 执行测试:


python main.py
tests set 02 will be start...
test_02.test_2 ... FAIL
tests set 02 has been end...
======================================================================
FAIL: test_02.test_2
----------------------------------------------------------------------
Traceback (most recent call last):
  File "d:\python37\lib\site-packages\nose\case.py", line 198, in runTest
    self.test(*self.arg)
  File "c:\Users\Administrator\Desktop\document\wechatPublic\noses_project\test_str\test_02.py", line 15, in test_2
    assert 'A' == 'a'
AssertionError
----------------------------------------------------------------------
Ran 1 test in 0.031s
FAILED (failures=1)
复制代码


根据测试结果,我们看到只运行了 tag="not ok"属性的用例。


仅列出用例名称


nose 很贴心的为我们提供了能够查看用例列表,但不运行用例的方式。

使用参数:--collect-only 实现

main.py


import os
ph = os.path.dirname(__file__)
cmd = 'nosetests -v -s --collect-only {}'.format(ph)
if __name__ == "__main__":
    os.system(cmd)
复制代码


执行结果:


python main.py
test_01.test_A ... ok
test_01.test_B ... ok
test_02.test_1 ... ok
test_02.test_2 ... ok
----------------------------------------------------------------------
Ran 4 tests in 0.031s
OK
复制代码


如上,通过此参数,我们可以快速查看测试项目中的用例列表。


跳过用例


通常在测试中,对于要下线或者不想要运行的用例,我们一般都会通过制定标签来区分它们,但是 nose 为我们提供了跳过测试用例的方式。通过 skip 插件中的 SkipTest 方法实现。

test_02.py


from nose.plugins.attrib import attr
from nose.plugins.skip import SkipTest
def setup():
    print('tests set 02 will be start...')
def teardown():
    print('tests set 02 has been end...')
@attr(tag='ok')
def test_1():
    raise SkipTest
    assert 'a' == 'a'
@attr(tag='not ok')
def test_2():
    raise SkipTest
    assert 'A' == 'a'
复制代码


运行 main.py 执行测试:


python main.py
tests set 01 will be start...
test_01.test_A ... ok
test_01.test_B ... ok
tests set 01 has been end...
tests set 02 will be start...
test_02.test_1 ... SKIP
test_02.test_2 ... SKIP
tests set 02 has been end...
----------------------------------------------------------------------
Ran 4 tests in 0.037s
OK (SKIP=2)
复制代码


通过测试结果,我们能够看到 test_02 用例集中的两个用例已经被跳过。


增加用例序号


前面的测试中,我们都能清楚的看到用例的结果,但是用例很多的时候,我们无法清楚的知道用例的个数,所以 nose 为我们提供了展示用例序号的方式。通过参数--with-id 实现。


main.py


import os
ph = os.path.dirname(__file__)
cmd = 'nosetests -v -s --with-id {}'.format(ph)
if __name__ == "__main__":
    os.system(cmd)
复制代码


运行 main.py 执行测试:


python main.py
tests set 01 will be start...
#1 test_01.test_A ... ok
#2 test_01.test_B ... ok
tests set 01 has been end...
tests set 02 will be start...
#3 test_02.test_1 ... SKIP
#4 test_02.test_2 ... SKIP
tests set 02 has been end...
----------------------------------------------------------------------
Ran 4 tests in 0.055s
OK (SKIP=2)
复制代码


如上,我们看到,测试用例的前面已经加上了形如:#1 这样的序号,方便我们统计和定位用例。


更优雅的测试报告


前面我们已经了解了 nosexml 格式的报告,其可以方便我们二次开发。但是其不直观,为了能够方便直观的观察测试结果,我们来介绍另一种插件形式的 html 测试报告。


安装 html 报告插件:


pip install nosehtmloutput-2
复制代码


修改 main.py


import os
from nose import run
from htmloutput.htmloutput import HtmlOutput
ph = os.path.dirname(__file__)
if __name__ == "__main__":
    #os.system(cmd)
    run(argv=['nosetests', '-v','--with-html-output','--html-out-file=result.html',ph],plugins=[HtmlOutput()])
复制代码


1、导入 html 测试报告插件 2、使用 noserun 方法来执行测试,指定插件

测试结果:


main.py
tests set 01 will be start...
test_01.test_A ... ok
test_01.test_B ... ok
tests set 01 has been end...
tests set 02 will be start...
test_02.test_1 ... test_02.test_2 ... FAIL
tests set 02 has been end...
======================================================================
FAIL: test_02.test_2
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\Python37\lib\site-packages\nose\case.py", line 198, in runTest
    self.test(*self.arg)
  File "c:\Users\Administrator\Desktop\document\wechatPublic\noses_project\test_str\test_02.py", line 18, in test_2
    assert 'A' == 'a'
AssertionError
----------------------------------------------------------------------
Ran 4 tests in 0.050s
FAILED (failures=1)
复制代码


生成的测试报告:


Python 测试和开发(现名:Python 研究所)为本人所属公众账号。


网络异常,图片无法展示
|


效果:


网络异常,图片无法展示
|


查看失败详情:


网络异常,图片无法展示
|

相关文章
|
2月前
|
数据可视化
跟着exercise案例学Seaborn之FacetGrid
跟着exercise案例学Seaborn之FacetGrid
31 0
Figma|Generate color palette
Figma|Generate color palette
112 0
|
算法 数据可视化 C++
OpenCASCADE Outline
OpenCASCADE Outline eryar@163.com      有网友反映blog中关于OpenCASCADE的文章比较杂乱,不太好找,最好能提供一个大纲,这样方便查找。于是决定将这些学习时写的文章整理下,方便对OpenCASCADE的学习理解。
3061 0
|
XML 测试技术 数据格式
Nose-1-入门
Nose-1-入门
139 0
|
XML 测试技术 数据格式
Nose-2-进阶
Nose-2-进阶
135 0
|
传感器 机器人
robot_pose_ekf运行报错问题解决
robot_pose_ekf运行报错问题解决
robot_pose_ekf运行报错问题解决
《The Moon and Sixpence》Day 45
relentless adj 顽强的,持续的,坚定地,冷酷的 cuckoo n杜鹃鸟,布谷鸟 v杜鹃叫,不断重复
96 0
《The Moon and Sixpence》Day 44
作者和Charles来到一家咖啡厅,作者尝试用情感道义去规劝感化他,也朝他大加嘲讽试图骂醒他但都无济于事。最后,Charles告诉作者他来巴黎的原因是因为他想画画,想成为一个画家。
90 0
《The Moon and Sixpence》Day 46
作者在旅途中反复琢磨Charles这样做的冬季和对世俗观点毫不在乎的态度。最后,作者回到伦敦去给Mrs.Strickland汇报在巴黎的情况。作者告诉Mrs.Strickland他在巴黎见到了Charled并且他的离开是因为他想画画,Mrs.Strickkland大吃一惊,丝毫不信。 3.好词佳句
103 0