|
| 1 | +from textwrap import dedent |
| 2 | + |
| 3 | +import pytest |
| 4 | + |
| 5 | + |
| 6 | +def test_no_error_when_scope_passed_as_sole_keyword_argument( |
| 7 | + pytester: pytest.Pytester, |
| 8 | +): |
| 9 | + pytester.makepyfile( |
| 10 | + dedent( |
| 11 | + """\ |
| 12 | + import pytest |
| 13 | +
|
| 14 | + @pytest.mark.asyncio(loop_scope="session") |
| 15 | + async def test_anything(): |
| 16 | + pass |
| 17 | + """ |
| 18 | + ) |
| 19 | + ) |
| 20 | + result = pytester.runpytest_subprocess() |
| 21 | + result.assert_outcomes(passed=1) |
| 22 | + result.stdout.no_fnmatch_line("*ValueError*") |
| 23 | + |
| 24 | + |
| 25 | +def test_error_when_scope_passed_as_positional_argument( |
| 26 | + pytester: pytest.Pytester, |
| 27 | +): |
| 28 | + pytester.makepyfile( |
| 29 | + dedent( |
| 30 | + """\ |
| 31 | + import pytest |
| 32 | +
|
| 33 | + @pytest.mark.asyncio("session") |
| 34 | + async def test_anything(): |
| 35 | + pass |
| 36 | + """ |
| 37 | + ) |
| 38 | + ) |
| 39 | + result = pytester.runpytest_subprocess() |
| 40 | + result.assert_outcomes(errors=1) |
| 41 | + result.stdout.fnmatch_lines( |
| 42 | + ["*ValueError: mark.asyncio accepts only a keyword argument*"] |
| 43 | + ) |
| 44 | + |
| 45 | + |
| 46 | +def test_error_when_wrong_keyword_argument_is_passed( |
| 47 | + pytester: pytest.Pytester, |
| 48 | +): |
| 49 | + pytester.makepyfile( |
| 50 | + dedent( |
| 51 | + """\ |
| 52 | + import pytest |
| 53 | +
|
| 54 | + @pytest.mark.asyncio(cope="session") |
| 55 | + async def test_anything(): |
| 56 | + pass |
| 57 | + """ |
| 58 | + ) |
| 59 | + ) |
| 60 | + result = pytester.runpytest_subprocess() |
| 61 | + result.assert_outcomes(errors=1) |
| 62 | + result.stdout.fnmatch_lines( |
| 63 | + ["*ValueError: mark.asyncio accepts only a keyword argument 'scope'*"] |
| 64 | + ) |
| 65 | + |
| 66 | + |
| 67 | +def test_error_when_additional_keyword_arguments_are_passed( |
| 68 | + pytester: pytest.Pytester, |
| 69 | +): |
| 70 | + pytester.makepyfile( |
| 71 | + dedent( |
| 72 | + """\ |
| 73 | + import pytest |
| 74 | +
|
| 75 | + @pytest.mark.asyncio(loop_scope="session", more="stuff") |
| 76 | + async def test_anything(): |
| 77 | + pass |
| 78 | + """ |
| 79 | + ) |
| 80 | + ) |
| 81 | + result = pytester.runpytest_subprocess() |
| 82 | + result.assert_outcomes(errors=1) |
| 83 | + result.stdout.fnmatch_lines( |
| 84 | + ["*ValueError: mark.asyncio accepts only a keyword argument*"] |
| 85 | + ) |
0 commit comments