-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathtest_async_scenario_function.py
61 lines (47 loc) · 1.48 KB
/
test_async_scenario_function.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import textwrap
import pytest
@pytest.fixture
def feature_file(testdir):
testdir.makefile(
".feature",
test=textwrap.dedent(
"""
Feature: Async scenario function is being launched
Scenario: Launching scenario function
"""
),
)
def test_scenario_function_marked_with_async_passes(feature_file, testdir):
testdir.makepyfile(
textwrap.dedent(
"""
import pytest
from pytest_bdd import scenario
@pytest.mark.asyncio
@scenario('test.feature', 'Launching scenario function')
async def test_launching_scenario_function():
pass
"""
)
)
result = testdir.runpytest()
result.assert_outcomes(passed=1)
PYTEST_VERSION = tuple([int(i) for i in pytest.__version__.split(".")])
@pytest.mark.skipif(
PYTEST_VERSION < (5, 1, 0),
reason="Async functions not marked as @pytest.mark.asyncio are silently passing on pytest < 5.1.0",
)
def test_scenario_function_not_marked_with_async_fails(feature_file, testdir):
testdir.makepyfile(
textwrap.dedent(
"""
import pytest
from pytest_bdd import scenario
@scenario('test.feature', 'Launching scenario function')
async def test_launching_scenario_function():
pass
"""
)
)
result = testdir.runpytest()
result.assert_outcomes(failed=1)