pytest-bdd/tests/generation/test_generate_missing.py

52 lines
1.6 KiB
Python
Raw Normal View History

"""Code generation and assertion tests."""
2014-11-10 16:58:46 +08:00
import os.path
import py
def test_generate_missing(testdir):
dirname = "test_generate_missing"
tests = testdir.mkpydir(dirname)
with open(os.path.join(os.path.dirname(__file__), "generation.feature")) as fd:
tests.join('generation.feature').write(fd.read())
tests.join("test_foo.py").write(py.code.Source("""
import functools
from pytest_bdd import scenario, given
scenario = functools.partial(scenario, "generation.feature")
@given("I have a bar")
def i_have_a_bar():
return "bar"
@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(dirname, "--generate-missing", "--feature", tests.join('generation.feature').strpath)
result.stdout.fnmatch_lines([
2014-11-10 16:58:46 +08:00
'Scenario "Code is generated for scenarios which are not bound to any tests" is not bound to any test *']
)
result.stdout.fnmatch_lines(
[
'Step Given "I have a custom bar" is not defined in the scenario '
2014-11-10 16:58:46 +08:00
'"Code is generated for scenario steps which are not yet defined(implemented)" *',
]
)
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):"])