Fix issue 336: autouse fixtures in plugins work again
When an autouse fixture in a plugin was encountered None was stored as nodeid where it used to be ''. This broke the lookup of autouse fixtures later on. This also adds another test for the normal fixture ordering which was slightly wrong: a fixture without location was always added at the front of the fixture list rather then at the end of the fixtures without location but before the fixtures with location.
This commit is contained in:
parent
8f24e10571
commit
2cdb54225c
|
@ -1626,18 +1626,18 @@ class FixtureManager:
|
|||
unittest=unittest)
|
||||
faclist = self._arg2fixturedefs.setdefault(name, [])
|
||||
if not fixturedef.has_location:
|
||||
# All Nones are at the front so this inserts the
|
||||
# current fixturedef after the existing fixturedefs
|
||||
# from external plugins but before the fixturedefs
|
||||
# provided in conftests.
|
||||
i = faclist.count(None)
|
||||
# All fixturedefs with no location are at the front
|
||||
# so this inserts the current fixturedef after the
|
||||
# existing fixturedefs from external plugins but
|
||||
# before the fixturedefs provided in conftests.
|
||||
i = len([f for f in faclist if not f.has_location])
|
||||
else:
|
||||
i = len(faclist) # append
|
||||
faclist.insert(i, fixturedef)
|
||||
if marker.autouse:
|
||||
autousenames.append(name)
|
||||
if autousenames:
|
||||
self._nodeid_and_autousenames.append((nodeid, autousenames))
|
||||
self._nodeid_and_autousenames.append((nodeid or '', autousenames))
|
||||
|
||||
def getfixturedefs(self, argname, nodeid):
|
||||
try:
|
||||
|
|
|
@ -173,7 +173,7 @@ class TestFillFixtures:
|
|||
result = testdir.runpytest(testfile)
|
||||
result.stdout.fnmatch_lines(["*1 passed*"])
|
||||
|
||||
def test_extend_fixture_conftest_plugin(request, testdir):
|
||||
def test_extend_fixture_conftest_plugin(self, testdir):
|
||||
testdir.makepyfile(testplugin="""
|
||||
import pytest
|
||||
|
||||
|
@ -198,6 +198,52 @@ class TestFillFixtures:
|
|||
result = testdir.runpytest('-s')
|
||||
assert result.ret == 0
|
||||
|
||||
def test_extend_fixture_plugin_plugin(self, testdir):
|
||||
# Two plugins should extend each order in loading order
|
||||
testdir.makepyfile(testplugin0="""
|
||||
import pytest
|
||||
|
||||
@pytest.fixture
|
||||
def foo():
|
||||
return 7
|
||||
""")
|
||||
testdir.makepyfile(testplugin1="""
|
||||
import pytest
|
||||
|
||||
@pytest.fixture
|
||||
def foo(foo):
|
||||
return foo + 7
|
||||
""")
|
||||
testdir.syspathinsert()
|
||||
testdir.makepyfile("""
|
||||
pytest_plugins = ['testplugin0', 'testplugin1']
|
||||
|
||||
def test_foo(foo):
|
||||
assert foo == 14
|
||||
""")
|
||||
result = testdir.runpytest()
|
||||
assert result.ret == 0
|
||||
|
||||
def test_autouse_fixture_plugin(self, testdir):
|
||||
# A fixture from a plugin has no baseid set, which screwed up
|
||||
# the autouse fixture handling.
|
||||
testdir.makepyfile(testplugin="""
|
||||
import pytest
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def foo(request):
|
||||
request.function.foo = 7
|
||||
""")
|
||||
testdir.syspathinsert()
|
||||
testdir.makepyfile("""
|
||||
pytest_plugins = 'testplugin'
|
||||
|
||||
def test_foo(request):
|
||||
assert request.function.foo == 7
|
||||
""")
|
||||
result = testdir.runpytest()
|
||||
assert result.ret == 0
|
||||
|
||||
def test_funcarg_lookup_error(self, testdir):
|
||||
p = testdir.makepyfile("""
|
||||
def test_lookup_error(unknown):
|
||||
|
|
Loading…
Reference in New Issue