pytest-bdd/tests/generation/test_generate_missing.py

95 lines
2.8 KiB
Python
Raw Normal View History

"""Code generation and assertion tests."""
2015-06-24 07:16:10 +08:00
import itertools
import textwrap
2015-06-24 07:16:10 +08:00
from pytest_bdd.scenario import get_python_name_generator
from tests.utils import assert_outcomes
2015-06-24 07:16:10 +08:00
def test_python_name_generator():
"""Test python name generator function."""
2020-09-08 15:25:39 +08:00
assert list(itertools.islice(get_python_name_generator("Some name"), 3)) == [
"test_some_name",
"test_some_name_1",
"test_some_name_2",
]
2015-06-24 07:16:10 +08:00
def test_generate_missing(testdir):
2015-06-24 07:16:10 +08:00
"""Test generate missing command."""
testdir.makefile(
".feature",
generation=textwrap.dedent(
"""\
Feature: Missing code generation
Background:
Given I have a foobar
And I have 3 baz
Scenario: Scenario tests which are already bound to the tests stay as is
Given I have a bar
Scenario: Code is generated for scenarios which are not bound to any tests
Given I have a bar
Scenario: Code is generated for scenario steps which are not yet defined(implemented)
Given I have a custom bar
"""
),
)
testdir.makepyfile(
textwrap.dedent(
"""\
import functools
from pytest_bdd import scenario, given, parsers
scenario = functools.partial(scenario, "generation.feature")
@given("I have a bar")
def i_have_a_bar():
return "bar"
@given(parsers.parse("I have {n:d} baz"))
def i_have_n_baz(n):
return "baz"
@scenario("Scenario tests which are already bound to the tests stay as is")
def test_foo():
pass
@scenario("Code is generated for scenario steps which are not yet defined(implemented)")
def test_missing_steps():
pass
"""
)
)
result = testdir.runpytest("--generate-missing", "--feature", "generation.feature")
assert_outcomes(result, passed=0, failed=0, errors=0)
assert not result.stderr.str()
assert result.ret == 0
result.stdout.fnmatch_lines(
['Scenario "Code is generated for scenarios which are not bound to any tests" is not bound to any test *']
2014-11-10 16:58:46 +08:00
)
result.stdout.fnmatch_lines(
[
'Step Given "I have a custom bar" is not defined in the scenario '
'"Code is generated for scenario steps which are not yet defined(implemented)" *'
2014-11-10 16:58:46 +08:00
]
)
assert 'Step Given "I have 3 baz" is not defined' not in result.stdout.str()
2021-04-27 16:43:14 +08:00
2014-11-10 16:58:46 +08:00
result.stdout.fnmatch_lines(
['Step Given "I have a foobar" is not defined in the background of the feature "Missing code generation" *']
2014-11-10 16:58:46 +08:00
)
2014-09-22 14:27:46 +08:00
result.stdout.fnmatch_lines(["Please place the code above to the test file(s):"])