对于测试来讲,不管是功能测试,自动化测试,还是单元测试。一般都会预设一个正确的预期结果,而在测试执行的过程中会得到一个实际的结果。测试的成功与否就是拿实际的结果与预期的结果进行比较。这个比的过程实际就是断言(assert)。

  在unittest单元测试框架中提供了丰富的断言方法,例如assertEqual()、assertIn()、assertTrue()、assertIs()等,而pytest单元测试框架中并没提供特殊的断言方法,而是直接使用python的assert进行断言。

  下面我们就来介绍assert的使用。

比较大小与是否相等

test_assert.py

#coding=utf-8import pytest# 功能def add(a,b):return a + b# 测试相等def test_add():assert add(3,4) == 7 # 测试不相等def test_add2():assert add(17,22) != 50# 测试大于def test_add3():assert add(17,22) = 50if __name__ == '__main__':pytest.main("test_assert.py")

 定义一个add()函数,用于计算两个入参相加,并将相加的结果返回。

  而assert可以使用直接使用“==”、“!=”、“”、“>=”、”<=" 等符号来比较相等、不相等、小于、大于、大于等于和小于等于。

  运行结果:

============================= test session starts =============================platform win32 -- Python 2.7.10 -- py-1.4.30 -- pytest-2.7.2rootdir: D:\pyse\pytest\test_case, inifile: plugins: htmlcollected 4 itemstest_assert.py ...F================================== FAILURES ===================================__________________________________ test_add4 __________________________________def test_add4():> assert add(17,22) >= 50Eassert 39 >= 50E +where 39 = add(17, 22)test_assert.py:22: AssertionError===================== 1 failed, 3 passed in 0.02 seconds ======================

  显然,17加22的结果并不大于50,所有最后一条用例失败。

测试包含或不包含

test_assert2.py

#coding=utf-8import pytest# 测试相等def test_in():a = "hello"b = "he"assert b in a # 测试不相等def test_not_in():a = "hello"b = "hi"assert b not in aif __name__ == '__main__':pytest.main("test_assert2.py")

  通过定义a和b 字符串变量来比较包含的关系。

  assert 可以直接使用 in 和not in 来比较包含与不包含。

  运行结果:

============================= test session starts =============================platform win32 -- Python 2.7.10 -- py-1.4.30 -- pytest-2.7.2rootdir: D:\pyse\pytest\test_case, inifile: plugins: htmlcollected 2 itemstest_assert2.py F.================================== FAILURES ===================================___________________________________ test_in ___________________________________def test_in():a = "hello"b = "hi"> assert b in aEassert 'hi' in 'hello'test_assert2.py:9: AssertionError===================== 1 failed, 1 passed in 0.01 seconds ======================

  显然“hello”并不包含“hi”,所以第一条测试用例运行失败。

测试true或false

test_assert3.py

#coding=utf-8import pytest#用于判断素数def is_prime(n):if n <= 1:return Falsefor i in range(2, n):if n % i == 0:return Falsereturn True# 判断是否为素数def test_true():assert is_prime(13)# 判断是否不为素数def test_true():assert not is_prime(7)if __name__ == '__main__':pytest.main("test_assert3.py")

  通过is_prime()函数来判断n 是否为素数(只能被1和它本身整除的数)。返回值为ture或false。

  通过assert不需要任何辅助符号,直接判断对象是否为ture,而assert not 用于判断是否为false。

  运行结果:

============================= test session starts =============================platform win32 -- Python 2.7.10 -- py-1.4.30 -- pytest-2.7.2rootdir: D:\pyse\pytest\test_case, inifile: plugins: htmlcollected 1 itemstest_assert3.py F================================== FAILURES ===================================__________________________________ test_true __________________________________def test_true():> assert not is_prime(7)Eassert not TrueE +where True = is_prime(7)test_assert3.py:22: AssertionError========================== 1 failed in 0.01 seconds ===========================

  显示,对于第二条测试用例来讲,7是素数,所以,is_prime()函数的返回结果是Ture,而assertnot需要的正确结果是False,因此,用例执行失败。

加油吧,测试人!如果你需要提升规划,那就行动吧,在路上总比在起点观望的要好。未来的你肯定会感谢现在拼命的自己!