2010-10-14 07:25:09 +08:00
|
|
|
|
2011-03-04 06:40:38 +08:00
|
|
|
The writing and reporting of assertions in tests
|
|
|
|
==================================================
|
2010-10-14 07:25:09 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
.. _`assert with the assert statement`:
|
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
assert with the ``assert`` statement
|
|
|
|
---------------------------------------------------------
|
|
|
|
|
2011-03-04 06:40:38 +08:00
|
|
|
``py.test`` allows you to use the standard python ``assert`` for verifying
|
2010-10-14 07:25:09 +08:00
|
|
|
expectations and values in Python tests. For example, you can write the
|
2011-03-04 06:40:38 +08:00
|
|
|
following::
|
2010-10-14 07:25:09 +08:00
|
|
|
|
|
|
|
# content of test_assert1.py
|
|
|
|
def f():
|
|
|
|
return 3
|
|
|
|
|
|
|
|
def test_function():
|
|
|
|
assert f() == 4
|
|
|
|
|
2011-03-04 06:40:38 +08:00
|
|
|
to assert that your object returns a certain value. If this
|
2010-10-14 07:25:09 +08:00
|
|
|
assertion fails you will see the value of ``x``::
|
|
|
|
|
|
|
|
$ py.test test_assert1.py
|
|
|
|
=========================== test session starts ============================
|
2011-05-01 18:38:56 +08:00
|
|
|
platform linux2 -- Python 2.6.6 -- pytest-2.0.3
|
2010-11-26 20:26:56 +08:00
|
|
|
collecting ... collected 1 items
|
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
test_assert1.py F
|
2010-11-26 20:26:56 +08:00
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
================================= FAILURES =================================
|
|
|
|
______________________________ test_function _______________________________
|
2010-11-26 20:26:56 +08:00
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
def test_function():
|
|
|
|
> assert f() == 4
|
|
|
|
E assert 3 == 4
|
|
|
|
E + where 3 = f()
|
2010-11-26 20:26:56 +08:00
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
test_assert1.py:5: AssertionError
|
2011-05-01 18:38:56 +08:00
|
|
|
========================= 1 failed in 0.02 seconds =========================
|
2010-10-14 07:25:09 +08:00
|
|
|
|
2011-03-04 06:40:38 +08:00
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
assertions about expected exceptions
|
|
|
|
------------------------------------------
|
|
|
|
|
|
|
|
In order to write assertions about raised exceptions, you can use
|
2010-11-18 05:12:16 +08:00
|
|
|
``pytest.raises`` as a context manager like this::
|
2010-10-14 07:25:09 +08:00
|
|
|
|
2011-03-04 06:40:38 +08:00
|
|
|
import pytest
|
2010-11-18 05:12:16 +08:00
|
|
|
with pytest.raises(ZeroDivisionError):
|
2010-10-14 07:25:09 +08:00
|
|
|
1 / 0
|
|
|
|
|
|
|
|
and if you need to have access to the actual exception info you may use::
|
|
|
|
|
2010-11-18 05:12:16 +08:00
|
|
|
with pytest.raises(RuntimeError) as excinfo:
|
2010-10-14 07:25:09 +08:00
|
|
|
def f():
|
|
|
|
f()
|
|
|
|
f()
|
|
|
|
|
|
|
|
# do checks related to excinfo.type, excinfo.value, excinfo.traceback
|
|
|
|
|
|
|
|
If you want to write test code that works on Python2.4 as well,
|
|
|
|
you may also use two other ways to test for an expected exception::
|
|
|
|
|
2010-11-18 05:12:16 +08:00
|
|
|
pytest.raises(ExpectedException, func, *args, **kwargs)
|
|
|
|
pytest.raises(ExpectedException, "func(*args, **kwargs)")
|
2010-10-14 07:25:09 +08:00
|
|
|
|
|
|
|
both of which execute the specified function with args and kwargs and
|
|
|
|
asserts that the given ``ExpectedException`` is raised. The reporter will
|
|
|
|
provide you with helpful output in case of failures such as *no
|
|
|
|
exception* or *wrong exception*.
|
|
|
|
|
2010-11-26 03:06:42 +08:00
|
|
|
.. _newreport:
|
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
Making use of context-sensitive comparisons
|
|
|
|
-------------------------------------------------
|
|
|
|
|
|
|
|
.. versionadded:: 2.0
|
|
|
|
|
2011-02-17 21:46:40 +08:00
|
|
|
py.test has rich support for providing context-sensitive information
|
2010-10-14 07:25:09 +08:00
|
|
|
when it encounters comparisons. For example::
|
|
|
|
|
|
|
|
# content of test_assert2.py
|
|
|
|
|
|
|
|
def test_set_comparison():
|
|
|
|
set1 = set("1308")
|
|
|
|
set2 = set("8035")
|
|
|
|
assert set1 == set2
|
|
|
|
|
|
|
|
if you run this module::
|
|
|
|
|
|
|
|
$ py.test test_assert2.py
|
|
|
|
=========================== test session starts ============================
|
2011-05-01 18:38:56 +08:00
|
|
|
platform linux2 -- Python 2.6.6 -- pytest-2.0.3
|
2010-11-26 20:26:56 +08:00
|
|
|
collecting ... collected 1 items
|
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
test_assert2.py F
|
2010-11-26 20:26:56 +08:00
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
================================= FAILURES =================================
|
|
|
|
___________________________ test_set_comparison ____________________________
|
2010-11-26 20:26:56 +08:00
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
def test_set_comparison():
|
|
|
|
set1 = set("1308")
|
|
|
|
set2 = set("8035")
|
|
|
|
> assert set1 == set2
|
|
|
|
E assert set(['0', '1', '3', '8']) == set(['0', '3', '5', '8'])
|
|
|
|
E Extra items in the left set:
|
|
|
|
E '1'
|
|
|
|
E Extra items in the right set:
|
|
|
|
E '5'
|
2010-11-26 20:26:56 +08:00
|
|
|
|
2010-10-14 07:25:09 +08:00
|
|
|
test_assert2.py:5: AssertionError
|
2011-05-01 18:38:56 +08:00
|
|
|
========================= 1 failed in 0.03 seconds =========================
|
2010-10-14 07:25:09 +08:00
|
|
|
|
|
|
|
Special comparisons are done for a number of cases:
|
|
|
|
|
|
|
|
* comparing long strings: a context diff is shown
|
|
|
|
* comparing long sequences: first failing indices
|
|
|
|
* comparing dicts: different entries
|
|
|
|
|
2010-11-26 03:06:42 +08:00
|
|
|
See the :ref:`reporting demo <tbreportdemo>` for many more examples.
|
2010-11-25 20:00:01 +08:00
|
|
|
|
2011-05-27 10:08:55 +08:00
|
|
|
|
|
|
|
Assertion debugging details
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
Reporting details about the failing assertion is achieved either by rewriting
|
|
|
|
assert statements before they are run or re-evaluating the assert expression and
|
|
|
|
recording the intermediate values. Which technique is used depends on the
|
|
|
|
location of the assert, py.test's configuration, and Python version being used
|
|
|
|
to run py.test.
|
|
|
|
|
|
|
|
By default, if the Python version is greater than or equal to 2.6, py.test
|
|
|
|
rewrites assert statements in test modules. Rewritten assert statements put
|
|
|
|
debugging information into the assertion failure message. Note py.test only
|
|
|
|
rewrites test modules directly discovered by its test collection process, so
|
|
|
|
asserts in supporting modules will not be rewritten.
|
|
|
|
|
|
|
|
If an assert statement has not been rewritten or the Python version is less than
|
|
|
|
2.6, py.test falls back on assert reinterpretation. In assert reinterpretation,
|
|
|
|
py.test walks the frame of the function containing the assert statement to
|
|
|
|
discover sub-expression results of the failing assert statement. You can force
|
|
|
|
py.test to always use assertion reinterpretation by passing the
|
|
|
|
``--assertmode=old`` option.
|
|
|
|
|
|
|
|
Assert reinterpretation has a caveat not present with assert rewriting: If
|
|
|
|
evaluating the assert expression has side effects you may get a warning that the
|
|
|
|
intermediate values could not be determined safely. A common example of this
|
|
|
|
issue is an assertion which reads from a file::
|
|
|
|
|
|
|
|
assert f.read() != '...'
|
|
|
|
|
|
|
|
If this assertion fails then the re-evaluation will probably succeed!
|
|
|
|
This is because ``f.read()`` will return an empty string when it is
|
|
|
|
called the second time during the re-evaluation. However, it is
|
|
|
|
easy to rewrite the assertion and avoid any trouble::
|
|
|
|
|
|
|
|
content = f.read()
|
|
|
|
assert content != '...'
|
|
|
|
|
|
|
|
All assert debugging can be turned off by passing ``--assertmode=off``.
|
|
|
|
|
2010-11-18 05:12:16 +08:00
|
|
|
..
|
2010-10-14 07:25:09 +08:00
|
|
|
Defining your own comparison
|
|
|
|
----------------------------------------------
|
|
|
|
|
|
|
|
|