-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathtest_async.py
69 lines (55 loc) · 2.24 KB
/
test_async.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
62
63
64
65
66
67
68
69
import textwrap
# TODO: Split this test in one that checks that we work correctly
# with the pytest-asyncio plugin, and another that checks that we correctly
# run async steps.
def test_async_steps(pytester):
"""Test parent given is collected.
Both fixtures come from the parent conftest.
"""
pytester.makefile(
".feature",
async_feature=textwrap.dedent(
"""\
Feature: A feature
Scenario: A scenario
Given There is an async object
When I do an async action
Then the async object value should be "async_object"
And [async] the async object value should be "async_object"
And the another async object value should be "another_async_object"
"""
),
)
pytester.makepyfile(
textwrap.dedent(
"""\
from pytest_bdd import given, parsers, scenarios, then, when
import asyncio
import pytest
scenarios("async_feature.feature")
@pytest.fixture
async def another_async_object():
await asyncio.sleep(0.01)
return "another_async_object"
@given("There is an async object", target_fixture="async_object")
async def given_async_obj():
await asyncio.sleep(0.01)
return "async_object"
@when("I do an async action")
async def when_i_do_async_action():
await asyncio.sleep(0.01)
@then(parsers.parse('the async object value should be "{value}"'))
async def the_sync_object_value_should_be(async_object, value):
assert async_object == value
@then(parsers.parse('[async] the async object value should be "{value}"'))
async def async_the_async_object_value_should_be(async_object, value):
await asyncio.sleep(0.01)
assert async_object == value
@then(parsers.parse('the another async object value should be "{value}"'))
def the_another_async_object_value_should_be(another_async_object, value):
assert another_async_object == value
"""
)
)
result = pytester.runpytest("--asyncio-mode=auto")
result.assert_outcomes(passed=1)