Exemple #1
0
def test_soft_assertions():
    try:
        with soft_assertions():
            assert_that('foo').is_length(4)
            assert_that('foo').is_empty()
            assert_that('foo').is_false()
            assert_that('foo').is_digit()
            assert_that('123').is_alpha()
            assert_that('foo').is_upper()
            assert_that('FOO').is_lower()
            assert_that('foo').is_equal_to('bar')
            assert_that('foo').is_not_equal_to('foo')
            assert_that('foo').is_equal_to_ignoring_case('BAR')
        fail('should have raised error')
    except AssertionError as e:
        assert_that(str(e)).contains(
            '1. Expected <foo> to be of length <4>, but was <3>.')
        assert_that(str(e)).contains(
            '2. Expected <foo> to be empty string, but was not.')
        assert_that(str(e)).contains('3. Expected <False>, but was not.')
        assert_that(str(e)).contains(
            '4. Expected <foo> to contain only digits, but did not.')
        assert_that(str(e)).contains(
            '5. Expected <123> to contain only alphabetic chars, but did not.')
        assert_that(str(e)).contains(
            '6. Expected <foo> to contain only uppercase chars, but did not.')
        assert_that(str(e)).contains(
            '7. Expected <FOO> to contain only lowercase chars, but did not.')
        assert_that(str(e)).contains(
            '8. Expected <foo> to be equal to <bar>, but was not.')
        assert_that(str(e)).contains(
            '9. Expected <foo> to be not equal to <foo>, but was.')
        assert_that(str(e)).contains(
            '10. Expected <foo> to be case-insensitive equal to <BAR>, but was not.'
        )
Exemple #2
0
def test_fail_with_msg():
    try:
        with soft_assertions():
            fail('foobar')
        fail('should have raised error')
    except AssertionError as e:
        out = str(e)
        assert_that(out).is_equal_to('Fail: foobar!')
Exemple #3
0
def test_success():
    with soft_assertions():
        assert_that('foo').is_length(3)
        assert_that('foo').is_not_empty()
        assert_that('foo').is_true()
        assert_that('foo').is_alpha()
        assert_that('123').is_digit()
        assert_that('foo').is_lower()
        assert_that('FOO').is_upper()
        assert_that('foo').is_equal_to('foo')
        assert_that('foo').is_not_equal_to('bar')
        assert_that('foo').is_equal_to_ignoring_case('FOO')
        assert_that({'a': 1}).has_a(1)
Exemple #4
0
def test_nested():
    try:
        with soft_assertions():
            assert_that('a').is_equal_to('A')
            with soft_assertions():
                assert_that('b').is_equal_to('B')
                with soft_assertions():
                    assert_that('c').is_equal_to('C')
                assert_that('b').is_equal_to('B2')
            assert_that('a').is_equal_to('A2')
        fail('should have raised error')
    except AssertionError as e:
        out = str(e)
        assert_that(out).contains(
            '1. Expected <a> to be equal to <A>, but was not.')
        assert_that(out).contains(
            '2. Expected <b> to be equal to <B>, but was not.')
        assert_that(out).contains(
            '3. Expected <c> to be equal to <C>, but was not.')
        assert_that(out).contains(
            '4. Expected <b> to be equal to <B2>, but was not.')
        assert_that(out).contains(
            '5. Expected <a> to be equal to <A2>, but was not.')
Exemple #5
0
def test_expected_exception_failure():
    try:
        with soft_assertions():
            assert_that(func_err).raises(RuntimeError).when_called_with(
                'foo').is_equal_to('bar')
            assert_that(func_ok).raises(RuntimeError).when_called_with('baz')
        fail('should have raised error')
    except AssertionError as e:
        out = str(e)
        assert_that(out).contains(
            'Expected <err> to be equal to <bar>, but was not.')
        assert_that(out).contains(
            "Expected <func_ok> to raise <RuntimeError> when called with ('baz')."
        )
Exemple #6
0
def test_failure():
    try:
        with soft_assertions():
            assert_that('foo').is_length(4)
            assert_that('foo').is_empty()
            assert_that('foo').is_false()
            assert_that('foo').is_digit()
            assert_that('123').is_alpha()
            assert_that('foo').is_upper()
            assert_that('FOO').is_lower()
            assert_that('foo').is_equal_to('bar')
            assert_that('foo').is_not_equal_to('foo')
            assert_that('foo').is_equal_to_ignoring_case('BAR')
            assert_that({'a': 1}).has_a(2)
            assert_that({'a': 1}).has_foo(1)
        fail('should have raised error')
    except AssertionError as e:
        out = str(e)
        assert_that(out).contains(
            'Expected <foo> to be of length <4>, but was <3>.')
        assert_that(out).contains(
            'Expected <foo> to be empty string, but was not.')
        assert_that(out).contains('Expected <False>, but was not.')
        assert_that(out).contains(
            'Expected <foo> to contain only digits, but did not.')
        assert_that(out).contains(
            'Expected <123> to contain only alphabetic chars, but did not.')
        assert_that(out).contains(
            'Expected <foo> to contain only uppercase chars, but did not.')
        assert_that(out).contains(
            'Expected <FOO> to contain only lowercase chars, but did not.')
        assert_that(out).contains(
            'Expected <foo> to be equal to <bar>, but was not.')
        assert_that(out).contains(
            'Expected <foo> to be not equal to <foo>, but was.')
        assert_that(out).contains(
            'Expected <foo> to be case-insensitive equal to <BAR>, but was not.'
        )
        assert_that(out).contains(
            'Expected <1> to be equal to <2> on key <a>, but was not.')
        assert_that(out).contains(
            'Expected key <foo>, but val has no key <foo>.')
Exemple #7
0
def test_fail_with_soft_failing_asserts():
    try:
        with soft_assertions():
            assert_that('foo').is_length(4)
            assert_that('foo').is_empty()
            fail('foobar')
            assert_that('foo').is_not_equal_to('foo')
            assert_that('foo').is_equal_to_ignoring_case('BAR')
        fail('should have raised error')
    except AssertionError as e:
        out = str(e)
        assert_that(out).is_equal_to('Fail: foobar!')
        assert_that(out).does_not_contain(
            'Expected <foo> to be of length <4>, but was <3>.')
        assert_that(out).does_not_contain(
            'Expected <foo> to be empty string, but was not.')
        assert_that(out).does_not_contain(
            'Expected <foo> to be not equal to <foo>, but was.')
        assert_that(out).does_not_contain(
            'Expected <foo> to be case-insensitive equal to <BAR>, but was not.'
        )
Exemple #8
0
def test_failure_chain():
    try:
        with soft_assertions():
            assert_that('foo').is_length(4).is_empty().is_false().is_digit().is_upper() \
                .is_equal_to('bar').is_not_equal_to('foo').is_equal_to_ignoring_case('BAR')
        fail('should have raised error')
    except AssertionError as e:
        out = str(e)
        assert_that(out).contains(
            'Expected <foo> to be of length <4>, but was <3>.')
        assert_that(out).contains(
            'Expected <foo> to be empty string, but was not.')
        assert_that(out).contains('Expected <False>, but was not.')
        assert_that(out).contains(
            'Expected <foo> to contain only digits, but did not.')
        assert_that(out).contains(
            'Expected <foo> to contain only uppercase chars, but did not.')
        assert_that(out).contains(
            'Expected <foo> to be equal to <bar>, but was not.')
        assert_that(out).contains(
            'Expected <foo> to be not equal to <foo>, but was.')
        assert_that(out).contains(
            'Expected <foo> to be case-insensitive equal to <BAR>, but was not.'
        )
Exemple #9
0
 def recurs(i):
     if i <= 0:
         return
     with soft_assertions():
         recurs(i - 1)
         assert_that(i).is_equal_to(7)
Exemple #10
0
def test_expected_exception_success():
    with soft_assertions():
        assert_that(func_err).raises(RuntimeError).when_called_with(
            'foo').is_equal_to('err')