标签:
在很多时候,用例可以分不同的等级来运行,在nose中很增加了这个功能,使用attrib将用例进行划分
有两种方式:
ef test_big_download(): import urllib # commence slowness... test_big_download.slow = 1
在运行时,用下面方式来执行:
$ nosetests -a ‘!slow‘
这种方式不太好用,另一种方式更简单
from nose.plugins.attrib import attr @attr(speed=‘slow‘) def test_big_download(): import urllib # commence slowness...
运行时该用例时,只需在运行时加入,如下:
$ nosetests -a speed=slow
在实际项目中,属性可以有多个,在使用时:
nosetests -a priority=2,status=stable
nose属性加表达式的用例在实际项目中运行的少,这里就不介绍,需要的可以上官方查看:https://nose.readthedocs.io/en/latest/plugins/attrib.html
该插件主要用铺获测试过程中的标准输出,该参数在项目实际过程中用的比较少,用法如下:
-s, --nocapture
不捕获
该功能一般与testid插件(后面会介绍到)一起使用,主要是列出需要测试的ID及名字,使用如下:
E:\workspace\nosetest_lear\test_case>nosetests -v test_case_0001 --collect-only test_case_0001.test_learn_1 ... ok test_case_0001.test_lean_2 ... ok ---------------------------------------------------------------------- Ran 2 tests in 0.004s OK
改插件使用频率很高,在测试过程中许要定位问题都要使用日志,该模块可以将日志按配置进行存储及显示,有以下几个选项
--nologcapture 不使用log --logging-format=FORMAT 使用自定义的格式显示日志 --logging-datefmt=FORMAT
和上面类类似,多了日期格式
--logging-filter=FILTER 日志过滤,一般很少用,可以不关注 --logging-clear-handlers 也可以不关注 --logging-level=DEFAULT log的等级定义
比如,下面这样一个log配置文件:
# logging.conf [loggers] keys=root,nose,boto [handlers] keys=consoleHandler,rotateFileHandler [formatters] keys=simpleFormatter [formatter_simpleFormatter] format=%(asctime)s [%(levelname)s] %(filename)s[line:%(lineno)d] %(message)s [handler_consoleHandler] class=StreamHandler level=DEBUG formatter=simpleFormatter args=(sys.stdout,) [handler_rotateFileHandler] class=handlers.RotatingFileHandler level=DEBUG formatter=simpleFormatter args=(‘F:/test_log.log‘, ‘a‘, 200000, 9) [logger_root] level=DEBUG handlers=consoleHandler,rotateFileHandler [logger_nose] level=DEBUG handlers=consoleHandler,rotateFileHandler qualname=nose propagate=0 [logger_boto] level=ERROR handlers=consoleHandler,rotateFileHandler qualname=boto propagate=0
在使用时只需要按以下方法使用就行:
E:\workspace\nosetest_lear\test_case>nosetests -v test_case_0001 --logging-config=logging.conf
这个使用很简单,如下:
% nosetests -v --with-id #1 tests.test_a ... ok #2 tests.test_b ... ok #3 tests.test_c ... ok
这里的-v是可以输出用例名
有了ID后,就可以通过id,自定义要运行的测试用例,使用如下:
% nosetests -v --with-id 2 #2 tests.test_b ... ok
% nosetests -v --with-id 2 3 #2 tests.test_b ... ok #3 tests.test_c ... ok
运行上次运行失败的用例:
很有用处的一个插件,只运行上次测试失败的用例,使用方法如下:
第一次运行,加入--failed参数
% nosetests -v --failed #1 test.test_a ... ok #2 test.test_b ... ERROR #3 test.test_c ... FAILED #4 test.test_d ... ok
第二次运行时,还是--failed参数,但只运行错误的用例了:
% nosetests -v --failed #2 test.test_b ... ERROR #3 test.test_c ... FAILED
当所有的用例全部运行通过后,再次运行会运行所有的用例
改插件主要用于在持续集(jenkins)成中使用,在jenkis中将输出设成“Publish JUnit test result report”,并输入文件名
在构建后就会输入你想要的报告。后面会有文章详细介绍。
标签:
原文地址:http://www.cnblogs.com/landhu/p/5689414.html