2010-11-25 19:11:10 +08:00
|
|
|
|
|
|
|
.. _`tbreportdemo`:
|
2014-01-18 19:31:33 +08:00
|
|
|
|
|
|
|
Demo of Python failure reports with pytest
|
2010-11-25 19:11:10 +08:00
|
|
|
==================================================
|
|
|
|
|
|
|
|
Here is a nice run of several tens of failures
|
2014-01-18 19:31:33 +08:00
|
|
|
and how ``pytest`` presents things (unfortunately
|
2010-11-25 19:11:10 +08:00
|
|
|
not showing the nice colors here in the HTML that you
|
2018-11-24 13:41:22 +08:00
|
|
|
get on the terminal - we are working on that):
|
|
|
|
|
|
|
|
.. code-block:: pytest
|
2010-11-26 03:06:42 +08:00
|
|
|
|
2016-09-01 08:30:06 +08:00
|
|
|
assertion $ pytest failure_demo.py
|
2019-01-06 01:32:16 +08:00
|
|
|
================================ test session starts =================================
|
2018-11-24 04:09:57 +08:00
|
|
|
platform linux -- Python 3.x.y, pytest-4.x.y, py-1.x.y, pluggy-0.x.y
|
2019-01-06 01:32:16 +08:00
|
|
|
hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase('$REGENDOC_TMPDIR/assertion/.hypothesis/examples')
|
2017-03-14 06:41:20 +08:00
|
|
|
rootdir: $REGENDOC_TMPDIR/assertion, inifile:
|
2019-01-06 01:32:16 +08:00
|
|
|
plugins: hypothesis-3.x.y
|
2019-01-05 23:21:49 +08:00
|
|
|
collected 44 items
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-06 01:32:16 +08:00
|
|
|
failure_demo.py FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF [100%]
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-06 01:32:16 +08:00
|
|
|
====================================== FAILURES ======================================
|
|
|
|
________________________________ test_generative[3-6] ________________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
param1 = 3, param2 = 6
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
@pytest.mark.parametrize("param1, param2", [(3, 6)])
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_generative(param1, param2):
|
|
|
|
> assert param1 * 2 < param2
|
|
|
|
E assert (3 * 2) < 6
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:22: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
______________________________ TestFailing.test_simple _______________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestFailing object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_simple(self):
|
|
|
|
def f():
|
|
|
|
return 42
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def g():
|
|
|
|
return 43
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
> assert f() == g()
|
|
|
|
E assert 42 == 43
|
2015-09-22 22:52:35 +08:00
|
|
|
E + where 42 = <function TestFailing.test_simple.<locals>.f at 0xdeadbeef>()
|
|
|
|
E + and 43 = <function TestFailing.test_simple.<locals>.g at 0xdeadbeef>()
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:33: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
_________________________ TestFailing.test_simple_multiline __________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestFailing object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_simple_multiline(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> otherfunc_multi(42, 6 * 9)
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:36:
|
2019-01-06 01:32:16 +08:00
|
|
|
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
a = 42, b = 54
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-06-05 09:11:27 +08:00
|
|
|
def otherfunc_multi(a, b):
|
|
|
|
> assert a == b
|
2010-11-25 19:11:10 +08:00
|
|
|
E assert 42 == 54
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:17: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
________________________________ TestFailing.test_not ________________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestFailing object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_not(self):
|
|
|
|
def f():
|
|
|
|
return 42
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
> assert not f()
|
|
|
|
E assert not 42
|
2015-09-22 22:52:35 +08:00
|
|
|
E + where 42 = <function TestFailing.test_not.<locals>.f at 0xdeadbeef>()
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:42: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
______________________ TestSpecialisedExplanations.test_eq_text ______________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_text(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> assert "spam" == "eggs"
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert 'spam' == 'eggs'
|
2010-11-25 19:11:10 +08:00
|
|
|
E - spam
|
|
|
|
E + eggs
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:47: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
__________________ TestSpecialisedExplanations.test_eq_similar_text __________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_similar_text(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> assert "foo 1 bar" == "foo 2 bar"
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert 'foo 1 bar' == 'foo 2 bar'
|
2010-11-25 19:11:10 +08:00
|
|
|
E - foo 1 bar
|
|
|
|
E ? ^
|
|
|
|
E + foo 2 bar
|
|
|
|
E ? ^
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:50: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
_________________ TestSpecialisedExplanations.test_eq_multiline_text _________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_multiline_text(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> assert "foo\nspam\nbar" == "foo\neggs\nbar"
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert 'foo\nspam\nbar' == 'foo\neggs\nbar'
|
2010-11-25 19:11:10 +08:00
|
|
|
E foo
|
|
|
|
E - spam
|
|
|
|
E + eggs
|
|
|
|
E bar
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:53: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
___________________ TestSpecialisedExplanations.test_eq_long_text ____________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_long_text(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
a = "1" * 100 + "a" + "2" * 100
|
|
|
|
b = "1" * 100 + "b" + "2" * 100
|
2010-11-25 19:11:10 +08:00
|
|
|
> assert a == b
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert '111111111111...2222222222222' == '1111111111111...2222222222222'
|
2013-04-30 18:26:30 +08:00
|
|
|
E Skipping 90 identical leading characters in diff, use -v to show
|
|
|
|
E Skipping 91 identical trailing characters in diff, use -v to show
|
2010-11-25 19:11:10 +08:00
|
|
|
E - 1111111111a222222222
|
|
|
|
E ? ^
|
|
|
|
E + 1111111111b222222222
|
|
|
|
E ? ^
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:58: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
______________ TestSpecialisedExplanations.test_eq_long_text_multiline _______________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_long_text_multiline(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
a = "1\n" * 100 + "a" + "2\n" * 100
|
|
|
|
b = "1\n" * 100 + "b" + "2\n" * 100
|
2010-11-25 19:11:10 +08:00
|
|
|
> assert a == b
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert '1\n1\n1\n1\n...n2\n2\n2\n2\n' == '1\n1\n1\n1\n1...n2\n2\n2\n2\n'
|
2013-04-30 18:26:30 +08:00
|
|
|
E Skipping 190 identical leading characters in diff, use -v to show
|
|
|
|
E Skipping 191 identical trailing characters in diff, use -v to show
|
2010-11-25 19:11:10 +08:00
|
|
|
E 1
|
|
|
|
E 1
|
|
|
|
E 1
|
|
|
|
E 1
|
2017-05-13 04:17:40 +08:00
|
|
|
E 1...
|
2018-06-20 08:34:03 +08:00
|
|
|
E
|
2017-05-13 04:17:40 +08:00
|
|
|
E ...Full output truncated (7 lines hidden), use '-vv' to show
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:63: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
______________________ TestSpecialisedExplanations.test_eq_list ______________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_list(self):
|
|
|
|
> assert [0, 1, 2] == [0, 1, 3]
|
|
|
|
E assert [0, 1, 2] == [0, 1, 3]
|
|
|
|
E At index 2 diff: 2 != 3
|
2014-10-24 21:08:43 +08:00
|
|
|
E Use -v to get the full diff
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:66: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
___________________ TestSpecialisedExplanations.test_eq_list_long ____________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_list_long(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
a = [0] * 100 + [1] + [3] * 100
|
|
|
|
b = [0] * 100 + [2] + [3] * 100
|
2010-11-25 19:11:10 +08:00
|
|
|
> assert a == b
|
|
|
|
E assert [0, 0, 0, 0, 0, 0, ...] == [0, 0, 0, 0, 0, 0, ...]
|
|
|
|
E At index 100 diff: 1 != 2
|
2014-10-24 21:08:43 +08:00
|
|
|
E Use -v to get the full diff
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:71: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
______________________ TestSpecialisedExplanations.test_eq_dict ______________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_dict(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> assert {"a": 0, "b": 1, "c": 0} == {"a": 0, "b": 2, "d": 0}
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert {'a': 0, 'b': 1, 'c': 0} == {'a': 0, 'b': 2, 'd': 0}
|
2017-05-13 04:17:40 +08:00
|
|
|
E Omitting 1 identical items, use -vv to show
|
2013-04-30 18:26:30 +08:00
|
|
|
E Differing items:
|
|
|
|
E {'b': 1} != {'b': 2}
|
|
|
|
E Left contains more items:
|
|
|
|
E {'c': 0}
|
|
|
|
E Right contains more items:
|
2017-05-13 04:17:40 +08:00
|
|
|
E {'d': 0}...
|
2018-06-20 08:34:03 +08:00
|
|
|
E
|
2017-05-13 04:17:40 +08:00
|
|
|
E ...Full output truncated (2 lines hidden), use '-vv' to show
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:74: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
______________________ TestSpecialisedExplanations.test_eq_set _______________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_set(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> assert {0, 10, 11, 12} == {0, 20, 21}
|
2017-05-13 04:17:40 +08:00
|
|
|
E AssertionError: assert {0, 10, 11, 12} == {0, 20, 21}
|
2010-11-25 19:11:10 +08:00
|
|
|
E Extra items in the left set:
|
|
|
|
E 10
|
|
|
|
E 11
|
|
|
|
E 12
|
|
|
|
E Extra items in the right set:
|
|
|
|
E 20
|
2017-05-13 04:17:40 +08:00
|
|
|
E 21...
|
2018-06-20 08:34:03 +08:00
|
|
|
E
|
2017-05-13 04:17:40 +08:00
|
|
|
E ...Full output truncated (2 lines hidden), use '-vv' to show
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:77: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
__________________ TestSpecialisedExplanations.test_eq_longer_list ___________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_eq_longer_list(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> assert [1, 2] == [1, 2, 3]
|
2010-11-25 19:11:10 +08:00
|
|
|
E assert [1, 2] == [1, 2, 3]
|
|
|
|
E Right contains more items, first extra item: 3
|
2014-10-24 21:08:43 +08:00
|
|
|
E Use -v to get the full diff
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:80: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
______________________ TestSpecialisedExplanations.test_in_list ______________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_in_list(self):
|
|
|
|
> assert 1 in [0, 2, 3, 4, 5]
|
|
|
|
E assert 1 in [0, 2, 3, 4, 5]
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:83: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
_______________ TestSpecialisedExplanations.test_not_in_text_multiline _______________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2011-02-03 22:14:50 +08:00
|
|
|
def test_not_in_text_multiline(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
text = "some multiline\ntext\nwhich\nincludes foo\nand a\ntail"
|
|
|
|
> assert "foo" not in text
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert 'foo' not in 'some multiline\ntext\nw...ncludes foo\nand a\ntail'
|
2011-02-03 22:14:50 +08:00
|
|
|
E 'foo' is contained here:
|
|
|
|
E some multiline
|
|
|
|
E text
|
|
|
|
E which
|
|
|
|
E includes foo
|
|
|
|
E ? +++
|
2017-05-13 04:17:40 +08:00
|
|
|
E and a...
|
2018-06-20 08:34:03 +08:00
|
|
|
E
|
2017-05-13 04:17:40 +08:00
|
|
|
E ...Full output truncated (2 lines hidden), use '-vv' to show
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:87: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
________________ TestSpecialisedExplanations.test_not_in_text_single _________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2011-02-03 22:14:50 +08:00
|
|
|
def test_not_in_text_single(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
text = "single foo line"
|
|
|
|
> assert "foo" not in text
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert 'foo' not in 'single foo line'
|
2011-02-03 22:14:50 +08:00
|
|
|
E 'foo' is contained here:
|
|
|
|
E single foo line
|
|
|
|
E ? +++
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:91: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
______________ TestSpecialisedExplanations.test_not_in_text_single_long ______________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2011-02-03 22:14:50 +08:00
|
|
|
def test_not_in_text_single_long(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
text = "head " * 50 + "foo " + "tail " * 20
|
|
|
|
> assert "foo" not in text
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert 'foo' not in 'head head head head hea...ail tail tail tail tail '
|
2011-02-03 22:14:50 +08:00
|
|
|
E 'foo' is contained here:
|
2018-06-20 08:34:03 +08:00
|
|
|
E head head foo tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail
|
2011-02-03 22:14:50 +08:00
|
|
|
E ? +++
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:95: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
___________ TestSpecialisedExplanations.test_not_in_text_single_long_term ____________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-06-07 05:30:49 +08:00
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2011-02-03 22:14:50 +08:00
|
|
|
def test_not_in_text_single_long_term(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
text = "head " * 50 + "f" * 70 + "tail " * 20
|
|
|
|
> assert "f" * 70 not in text
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert 'fffffffffff...ffffffffffff' not in 'head head he...l tail tail '
|
2011-02-03 22:14:50 +08:00
|
|
|
E 'ffffffffffffffffff...fffffffffffffffffff' is contained here:
|
2018-06-20 08:34:03 +08:00
|
|
|
E head head fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffftail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail tail
|
2011-02-03 22:14:50 +08:00
|
|
|
E ? ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:99: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
___________________ TestSpecialisedExplanations.test_eq_dataclass ____________________
|
2019-01-05 23:21:49 +08:00
|
|
|
|
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
|
|
|
|
|
|
|
def test_eq_dataclass(self):
|
2019-01-06 01:32:16 +08:00
|
|
|
from dataclasses import dataclass
|
2019-01-05 23:21:49 +08:00
|
|
|
|
2019-01-06 01:32:16 +08:00
|
|
|
@dataclass
|
|
|
|
class Foo(object):
|
|
|
|
a: int
|
|
|
|
b: str
|
|
|
|
|
|
|
|
left = Foo(1, "b")
|
|
|
|
right = Foo(1, "c")
|
|
|
|
> assert left == right
|
|
|
|
E AssertionError: assert TestSpecialis...oo(a=1, b='b') == TestSpecialise...oo(a=1, b='c')
|
|
|
|
E Omitting 1 identical items, use -vv to show
|
|
|
|
E Differing attributes:
|
|
|
|
E b: 'b' != 'c'
|
|
|
|
|
|
|
|
failure_demo.py:111: AssertionError
|
|
|
|
_____________________ TestSpecialisedExplanations.test_eq_attrs ______________________
|
2019-01-05 23:21:49 +08:00
|
|
|
|
|
|
|
self = <failure_demo.TestSpecialisedExplanations object at 0xdeadbeef>
|
|
|
|
|
|
|
|
def test_eq_attrs(self):
|
|
|
|
import attr
|
|
|
|
|
|
|
|
@attr.s
|
|
|
|
class Foo(object):
|
|
|
|
a = attr.ib()
|
|
|
|
b = attr.ib()
|
|
|
|
|
|
|
|
left = Foo(1, "b")
|
|
|
|
right = Foo(1, "c")
|
|
|
|
> assert left == right
|
|
|
|
E AssertionError: assert Foo(a=1, b='b') == Foo(a=1, b='c')
|
|
|
|
E Omitting 1 identical items, use -vv to show
|
|
|
|
E Differing attributes:
|
|
|
|
E b: 'b' != 'c'
|
|
|
|
|
|
|
|
failure_demo.py:123: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
___________________________________ test_attribute ___________________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_attribute():
|
|
|
|
class Foo(object):
|
|
|
|
b = 1
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
i = Foo()
|
|
|
|
> assert i.b == 2
|
|
|
|
E assert 1 == 2
|
2015-09-22 22:52:35 +08:00
|
|
|
E + where 1 = <failure_demo.test_attribute.<locals>.Foo object at 0xdeadbeef>.b
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:131: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
______________________________ test_attribute_instance _______________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_attribute_instance():
|
|
|
|
class Foo(object):
|
|
|
|
b = 1
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
> assert Foo().b == 2
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert 1 == 2
|
2015-09-22 22:52:35 +08:00
|
|
|
E + where 1 = <failure_demo.test_attribute_instance.<locals>.Foo object at 0xdeadbeef>.b
|
|
|
|
E + where <failure_demo.test_attribute_instance.<locals>.Foo object at 0xdeadbeef> = <class 'failure_demo.test_attribute_instance.<locals>.Foo'>()
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:138: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
_______________________________ test_attribute_failure _______________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_attribute_failure():
|
|
|
|
class Foo(object):
|
|
|
|
def _get_b(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
raise Exception("Failed to get attrib")
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
b = property(_get_b)
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
i = Foo()
|
|
|
|
> assert i.b == 2
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:149:
|
2019-01-06 01:32:16 +08:00
|
|
|
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.test_attribute_failure.<locals>.Foo object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def _get_b(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> raise Exception("Failed to get attrib")
|
2010-11-25 19:11:10 +08:00
|
|
|
E Exception: Failed to get attrib
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:144: Exception
|
2019-01-06 01:32:16 +08:00
|
|
|
______________________________ test_attribute_multiple _______________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_attribute_multiple():
|
|
|
|
class Foo(object):
|
|
|
|
b = 1
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
class Bar(object):
|
|
|
|
b = 2
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
> assert Foo().b == Bar().b
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert 1 == 2
|
2015-09-22 22:52:35 +08:00
|
|
|
E + where 1 = <failure_demo.test_attribute_multiple.<locals>.Foo object at 0xdeadbeef>.b
|
|
|
|
E + where <failure_demo.test_attribute_multiple.<locals>.Foo object at 0xdeadbeef> = <class 'failure_demo.test_attribute_multiple.<locals>.Foo'>()
|
|
|
|
E + and 2 = <failure_demo.test_attribute_multiple.<locals>.Bar object at 0xdeadbeef>.b
|
|
|
|
E + where <failure_demo.test_attribute_multiple.<locals>.Bar object at 0xdeadbeef> = <class 'failure_demo.test_attribute_multiple.<locals>.Bar'>()
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:159: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
_______________________________ TestRaises.test_raises _______________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestRaises object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_raises(self):
|
2019-01-05 23:21:49 +08:00
|
|
|
s = "qwe"
|
|
|
|
> raises(TypeError, int, s)
|
|
|
|
E ValueError: invalid literal for int() with base 10: 'qwe'
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:169: ValueError
|
2019-01-06 01:32:16 +08:00
|
|
|
___________________________ TestRaises.test_raises_doesnt ____________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestRaises object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_raises_doesnt(self):
|
2019-01-05 23:21:49 +08:00
|
|
|
> raises(IOError, int, "3")
|
2016-03-01 04:52:56 +08:00
|
|
|
E Failed: DID NOT RAISE <class 'OSError'>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:172: Failed
|
2019-01-06 01:32:16 +08:00
|
|
|
_______________________________ TestRaises.test_raise ________________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestRaises object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_raise(self):
|
|
|
|
> raise ValueError("demo error")
|
|
|
|
E ValueError: demo error
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:175: ValueError
|
2019-01-06 01:32:16 +08:00
|
|
|
_____________________________ TestRaises.test_tupleerror _____________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestRaises object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_tupleerror(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> a, b = [1] # NOQA
|
2016-05-31 17:15:57 +08:00
|
|
|
E ValueError: not enough values to unpack (expected 2, got 1)
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:178: ValueError
|
2019-01-06 01:32:16 +08:00
|
|
|
___________ TestRaises.test_reinterpret_fails_with_print_for_the_fun_of_it ___________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestRaises object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_reinterpret_fails_with_print_for_the_fun_of_it(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
items = [1, 2, 3]
|
|
|
|
print("items is %r" % items)
|
|
|
|
> a, b = items.pop()
|
2010-11-25 19:11:10 +08:00
|
|
|
E TypeError: 'int' object is not iterable
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:183: TypeError
|
2019-01-06 01:32:16 +08:00
|
|
|
-------------------------------- Captured stdout call --------------------------------
|
2018-06-05 09:11:27 +08:00
|
|
|
items is [1, 2, 3]
|
2019-01-06 01:32:16 +08:00
|
|
|
_____________________________ TestRaises.test_some_error _____________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestRaises object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_some_error(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
> if namenotexi: # NOQA
|
2015-09-22 22:52:35 +08:00
|
|
|
E NameError: name 'namenotexi' is not defined
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:186: NameError
|
2019-01-06 01:32:16 +08:00
|
|
|
_________________________ test_dynamic_compile_shows_nicely __________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_dynamic_compile_shows_nicely():
|
2018-01-31 03:47:56 +08:00
|
|
|
import imp
|
|
|
|
import sys
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-06-05 09:11:27 +08:00
|
|
|
src = "def foo():\n assert 1 == 0\n"
|
|
|
|
name = "abc-123"
|
2017-12-27 11:47:26 +08:00
|
|
|
module = imp.new_module(name)
|
2018-06-05 09:11:27 +08:00
|
|
|
code = _pytest._code.compile(src, name, "exec")
|
2018-08-26 20:43:43 +08:00
|
|
|
six.exec_(code, module.__dict__)
|
2017-12-27 11:47:26 +08:00
|
|
|
sys.modules[name] = module
|
2010-11-25 19:11:10 +08:00
|
|
|
> module.foo()
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:204:
|
2019-01-06 01:32:16 +08:00
|
|
|
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def foo():
|
|
|
|
> assert 1 == 0
|
2016-08-02 02:46:34 +08:00
|
|
|
E AssertionError
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
<0-codegen 'abc-123' $REGENDOC_TMPDIR/assertion/failure_demo.py:201>:2: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
_________________________ TestMoreErrors.test_complex_error __________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestMoreErrors object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_complex_error(self):
|
|
|
|
def f():
|
|
|
|
return 44
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def g():
|
|
|
|
return 43
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
> somefunc(f(), g())
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:215:
|
2019-01-06 01:32:16 +08:00
|
|
|
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:13: in somefunc
|
2018-06-05 09:11:27 +08:00
|
|
|
otherfunc(x, y)
|
2019-01-06 01:32:16 +08:00
|
|
|
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
a = 44, b = 43
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-06-05 09:11:27 +08:00
|
|
|
def otherfunc(a, b):
|
|
|
|
> assert a == b
|
2010-11-25 19:11:10 +08:00
|
|
|
E assert 44 == 43
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2018-11-14 05:01:51 +08:00
|
|
|
failure_demo.py:9: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
________________________ TestMoreErrors.test_z1_unpack_error _________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestMoreErrors object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_z1_unpack_error(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
items = []
|
|
|
|
> a, b = items
|
2016-05-31 17:15:57 +08:00
|
|
|
E ValueError: not enough values to unpack (expected 2, got 0)
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:219: ValueError
|
2019-01-06 01:32:16 +08:00
|
|
|
_________________________ TestMoreErrors.test_z2_type_error __________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestMoreErrors object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_z2_type_error(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
items = 3
|
|
|
|
> a, b = items
|
2010-11-25 19:11:10 +08:00
|
|
|
E TypeError: 'int' object is not iterable
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:223: TypeError
|
2019-01-06 01:32:16 +08:00
|
|
|
___________________________ TestMoreErrors.test_startswith ___________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestMoreErrors object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_startswith(self):
|
|
|
|
s = "123"
|
|
|
|
g = "456"
|
|
|
|
> assert s.startswith(g)
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert False
|
2016-08-02 02:46:34 +08:00
|
|
|
E + where False = <built-in method startswith of str object at 0xdeadbeef>('456')
|
|
|
|
E + where <built-in method startswith of str object at 0xdeadbeef> = '123'.startswith
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:228: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
_______________________ TestMoreErrors.test_startswith_nested ________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestMoreErrors object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_startswith_nested(self):
|
|
|
|
def f():
|
|
|
|
return "123"
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def g():
|
|
|
|
return "456"
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
> assert f().startswith(g())
|
2017-03-14 06:41:20 +08:00
|
|
|
E AssertionError: assert False
|
2016-08-02 02:46:34 +08:00
|
|
|
E + where False = <built-in method startswith of str object at 0xdeadbeef>('456')
|
|
|
|
E + where <built-in method startswith of str object at 0xdeadbeef> = '123'.startswith
|
|
|
|
E + where '123' = <function TestMoreErrors.test_startswith_nested.<locals>.f at 0xdeadbeef>()
|
|
|
|
E + and '456' = <function TestMoreErrors.test_startswith_nested.<locals>.g at 0xdeadbeef>()
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:237: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
__________________________ TestMoreErrors.test_global_func ___________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestMoreErrors object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_global_func(self):
|
|
|
|
> assert isinstance(globf(42), float)
|
2016-08-02 02:46:34 +08:00
|
|
|
E assert False
|
|
|
|
E + where False = isinstance(43, float)
|
|
|
|
E + where 43 = globf(42)
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:240: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
____________________________ TestMoreErrors.test_instance ____________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestMoreErrors object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_instance(self):
|
2018-06-05 09:11:27 +08:00
|
|
|
self.x = 6 * 7
|
2010-11-25 19:11:10 +08:00
|
|
|
> assert self.x != 42
|
|
|
|
E assert 42 != 42
|
2015-09-22 22:52:35 +08:00
|
|
|
E + where 42 = <failure_demo.TestMoreErrors object at 0xdeadbeef>.x
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:244: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
____________________________ TestMoreErrors.test_compare _____________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestMoreErrors object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_compare(self):
|
|
|
|
> assert globf(10) < 5
|
|
|
|
E assert 11 < 5
|
|
|
|
E + where 11 = globf(10)
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:247: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
__________________________ TestMoreErrors.test_try_finally ___________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestMoreErrors object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2010-11-25 19:11:10 +08:00
|
|
|
def test_try_finally(self):
|
|
|
|
x = 1
|
|
|
|
try:
|
|
|
|
> assert x == 0
|
|
|
|
E assert 1 == 0
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:252: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
________________________ TestCustomAssertMsg.test_single_line ________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestCustomAssertMsg object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2014-09-24 20:46:56 +08:00
|
|
|
def test_single_line(self):
|
2017-02-17 02:41:51 +08:00
|
|
|
class A(object):
|
2014-09-24 20:46:56 +08:00
|
|
|
a = 1
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2014-09-24 20:46:56 +08:00
|
|
|
b = 2
|
|
|
|
> assert A.a == b, "A.a appears not to be b"
|
|
|
|
E AssertionError: A.a appears not to be b
|
|
|
|
E assert 1 == 2
|
2015-09-22 22:52:35 +08:00
|
|
|
E + where 1 = <class 'failure_demo.TestCustomAssertMsg.test_single_line.<locals>.A'>.a
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:263: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
_________________________ TestCustomAssertMsg.test_multiline _________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestCustomAssertMsg object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2014-09-24 20:46:56 +08:00
|
|
|
def test_multiline(self):
|
2017-02-17 02:41:51 +08:00
|
|
|
class A(object):
|
2014-09-24 20:46:56 +08:00
|
|
|
a = 1
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2014-09-24 20:46:56 +08:00
|
|
|
b = 2
|
2018-06-05 09:11:27 +08:00
|
|
|
> assert (
|
|
|
|
A.a == b
|
2018-10-11 01:28:31 +08:00
|
|
|
), "A.a appears not to be b\nor does not appear to be b\none of those"
|
2014-09-24 20:46:56 +08:00
|
|
|
E AssertionError: A.a appears not to be b
|
|
|
|
E or does not appear to be b
|
|
|
|
E one of those
|
|
|
|
E assert 1 == 2
|
2015-09-22 22:52:35 +08:00
|
|
|
E + where 1 = <class 'failure_demo.TestCustomAssertMsg.test_multiline.<locals>.A'>.a
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:270: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
________________________ TestCustomAssertMsg.test_custom_repr ________________________
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2015-09-22 22:52:35 +08:00
|
|
|
self = <failure_demo.TestCustomAssertMsg object at 0xdeadbeef>
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2014-09-24 20:46:56 +08:00
|
|
|
def test_custom_repr(self):
|
2017-02-17 02:41:51 +08:00
|
|
|
class JSON(object):
|
2014-09-24 20:46:56 +08:00
|
|
|
a = 1
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2014-09-24 20:46:56 +08:00
|
|
|
def __repr__(self):
|
|
|
|
return "This is JSON\n{\n 'foo': 'bar'\n}"
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2014-09-24 20:46:56 +08:00
|
|
|
a = JSON()
|
|
|
|
b = 2
|
|
|
|
> assert a.a == b, a
|
|
|
|
E AssertionError: This is JSON
|
|
|
|
E {
|
|
|
|
E 'foo': 'bar'
|
|
|
|
E }
|
|
|
|
E assert 1 == 2
|
|
|
|
E + where 1 = This is JSON\n{\n 'foo': 'bar'\n}.a
|
2018-06-20 08:34:03 +08:00
|
|
|
|
2019-01-05 23:21:49 +08:00
|
|
|
failure_demo.py:283: AssertionError
|
2019-01-06 01:32:16 +08:00
|
|
|
============================= 44 failed in 0.12 seconds ==============================
|