2010-11-18 05:12:16 +08:00
|
|
|
import py, pytest
|
2009-08-10 17:27:13 +08:00
|
|
|
|
2010-10-03 02:49:24 +08:00
|
|
|
def setup_module(mod):
|
|
|
|
mod.nose = py.test.importorskip("nose")
|
2010-09-03 17:07:17 +08:00
|
|
|
|
2009-08-10 17:27:13 +08:00
|
|
|
def test_nose_setup(testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
l = []
|
2011-01-12 00:27:34 +08:00
|
|
|
from nose.tools import with_setup
|
2009-08-10 17:27:13 +08:00
|
|
|
|
2011-01-12 00:27:34 +08:00
|
|
|
@with_setup(lambda: l.append(1), lambda: l.append(2))
|
2009-08-10 17:27:13 +08:00
|
|
|
def test_hello():
|
|
|
|
assert l == [1]
|
2010-09-03 17:09:41 +08:00
|
|
|
|
2009-08-10 17:27:13 +08:00
|
|
|
def test_world():
|
|
|
|
assert l == [1,2]
|
2010-09-03 17:09:41 +08:00
|
|
|
|
2009-08-10 17:27:13 +08:00
|
|
|
test_hello.setup = lambda: l.append(1)
|
|
|
|
test_hello.teardown = lambda: l.append(2)
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-p', 'nose')
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-09-03 17:04:45 +08:00
|
|
|
"*2 passed*"
|
|
|
|
])
|
|
|
|
|
2010-09-03 17:07:17 +08:00
|
|
|
|
2012-09-22 06:23:36 +08:00
|
|
|
def test_setup_func_with_setup_decorator():
|
|
|
|
from _pytest.nose import call_optional
|
|
|
|
l = []
|
|
|
|
class A:
|
2012-10-08 14:34:21 +08:00
|
|
|
@pytest.fixture( autoactive=True)
|
2012-09-22 06:23:36 +08:00
|
|
|
def f(self):
|
|
|
|
l.append(1)
|
|
|
|
call_optional(A(), "f")
|
|
|
|
assert not l
|
|
|
|
|
|
|
|
|
2010-09-03 17:04:45 +08:00
|
|
|
def test_nose_setup_func(testdir):
|
|
|
|
p = testdir.makepyfile("""
|
2011-01-12 00:27:34 +08:00
|
|
|
from nose.tools import with_setup
|
|
|
|
|
2010-09-03 17:04:45 +08:00
|
|
|
l = []
|
|
|
|
|
|
|
|
def my_setup():
|
|
|
|
a = 1
|
|
|
|
l.append(a)
|
|
|
|
|
|
|
|
def my_teardown():
|
|
|
|
b = 2
|
|
|
|
l.append(b)
|
|
|
|
|
2011-01-12 00:27:34 +08:00
|
|
|
@with_setup(my_setup, my_teardown)
|
2010-09-03 17:04:45 +08:00
|
|
|
def test_hello():
|
2011-01-12 00:27:34 +08:00
|
|
|
print (l)
|
2010-09-03 17:04:45 +08:00
|
|
|
assert l == [1]
|
2010-09-03 17:09:41 +08:00
|
|
|
|
2010-09-03 17:04:45 +08:00
|
|
|
def test_world():
|
2011-01-12 00:27:34 +08:00
|
|
|
print (l)
|
2010-09-03 17:04:45 +08:00
|
|
|
assert l == [1,2]
|
2010-09-03 17:09:41 +08:00
|
|
|
|
2010-09-03 17:04:45 +08:00
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-p', 'nose')
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-09-03 18:27:47 +08:00
|
|
|
"*2 passed*"
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
def test_nose_setup_func_failure(testdir):
|
|
|
|
p = testdir.makepyfile("""
|
2011-01-12 00:27:34 +08:00
|
|
|
from nose.tools import with_setup
|
2010-09-03 18:27:47 +08:00
|
|
|
|
2011-01-12 00:27:34 +08:00
|
|
|
l = []
|
2010-09-03 18:27:47 +08:00
|
|
|
my_setup = lambda x: 1
|
|
|
|
my_teardown = lambda x: 2
|
|
|
|
|
2011-01-12 00:27:34 +08:00
|
|
|
@with_setup(my_setup, my_teardown)
|
2010-09-03 18:27:47 +08:00
|
|
|
def test_hello():
|
2011-01-12 00:27:34 +08:00
|
|
|
print (l)
|
2010-09-03 18:27:47 +08:00
|
|
|
assert l == [1]
|
|
|
|
|
|
|
|
def test_world():
|
2011-01-12 00:27:34 +08:00
|
|
|
print (l)
|
2010-09-03 18:27:47 +08:00
|
|
|
assert l == [1,2]
|
|
|
|
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-p', 'nose')
|
|
|
|
result.stdout.fnmatch_lines([
|
2011-01-12 00:27:34 +08:00
|
|
|
"*TypeError: <lambda>() takes exactly 1*0 given*"
|
2010-09-03 18:27:47 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
|
2010-09-03 18:32:12 +08:00
|
|
|
def test_nose_setup_func_failure_2(testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
l = []
|
|
|
|
|
|
|
|
my_setup = 1
|
|
|
|
my_teardown = 2
|
|
|
|
|
|
|
|
def test_hello():
|
2011-01-12 00:27:34 +08:00
|
|
|
print (l)
|
2010-09-03 18:32:12 +08:00
|
|
|
assert l == [1]
|
|
|
|
|
|
|
|
def test_world():
|
2011-01-12 00:27:34 +08:00
|
|
|
print (l)
|
2010-09-03 18:32:12 +08:00
|
|
|
assert l == [1,2]
|
|
|
|
|
|
|
|
test_hello.setup = my_setup
|
|
|
|
test_hello.teardown = my_teardown
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-p', 'nose')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*TypeError: 'int' object is not callable*"
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2010-09-03 18:27:47 +08:00
|
|
|
def test_nose_setup_partial(testdir):
|
2010-10-03 02:49:24 +08:00
|
|
|
py.test.importorskip("functools")
|
2010-09-03 18:27:47 +08:00
|
|
|
p = testdir.makepyfile("""
|
|
|
|
from functools import partial
|
|
|
|
|
|
|
|
l = []
|
|
|
|
|
|
|
|
def my_setup(x):
|
|
|
|
a = x
|
|
|
|
l.append(a)
|
|
|
|
|
|
|
|
def my_teardown(x):
|
|
|
|
b = x
|
|
|
|
l.append(b)
|
|
|
|
|
|
|
|
my_setup_partial = partial(my_setup, 1)
|
|
|
|
my_teardown_partial = partial(my_teardown, 2)
|
|
|
|
|
|
|
|
def test_hello():
|
2011-01-12 00:27:34 +08:00
|
|
|
print (l)
|
2010-09-03 18:27:47 +08:00
|
|
|
assert l == [1]
|
|
|
|
|
|
|
|
def test_world():
|
2011-01-12 00:27:34 +08:00
|
|
|
print (l)
|
2010-09-03 18:27:47 +08:00
|
|
|
assert l == [1,2]
|
|
|
|
|
|
|
|
test_hello.setup = my_setup_partial
|
|
|
|
test_hello.teardown = my_teardown_partial
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-p', 'nose')
|
|
|
|
result.stdout.fnmatch_lines([
|
2009-08-10 17:27:13 +08:00
|
|
|
"*2 passed*"
|
|
|
|
])
|
|
|
|
|
2010-09-03 17:07:17 +08:00
|
|
|
|
2009-08-10 17:27:13 +08:00
|
|
|
def test_nose_test_generator_fixtures(testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
# taken from nose-0.11.1 unit_tests/test_generator_fixtures.py
|
|
|
|
from nose.tools import eq_
|
|
|
|
called = []
|
|
|
|
|
|
|
|
def outer_setup():
|
|
|
|
called.append('outer_setup')
|
|
|
|
|
|
|
|
def outer_teardown():
|
|
|
|
called.append('outer_teardown')
|
|
|
|
|
|
|
|
def inner_setup():
|
|
|
|
called.append('inner_setup')
|
|
|
|
|
|
|
|
def inner_teardown():
|
|
|
|
called.append('inner_teardown')
|
|
|
|
|
|
|
|
def test_gen():
|
|
|
|
called[:] = []
|
|
|
|
for i in range(0, 5):
|
|
|
|
yield check, i
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2009-08-10 17:27:13 +08:00
|
|
|
def check(i):
|
|
|
|
expect = ['outer_setup']
|
|
|
|
for x in range(0, i):
|
|
|
|
expect.append('inner_setup')
|
|
|
|
expect.append('inner_teardown')
|
|
|
|
expect.append('inner_setup')
|
|
|
|
eq_(called, expect)
|
|
|
|
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2009-08-10 17:27:13 +08:00
|
|
|
test_gen.setup = outer_setup
|
|
|
|
test_gen.teardown = outer_teardown
|
|
|
|
check.setup = inner_setup
|
|
|
|
check.teardown = inner_teardown
|
|
|
|
|
|
|
|
class TestClass(object):
|
|
|
|
def setup(self):
|
2011-01-12 00:27:34 +08:00
|
|
|
print ("setup called in %s" % self)
|
2009-08-10 17:27:13 +08:00
|
|
|
self.called = ['setup']
|
|
|
|
|
|
|
|
def teardown(self):
|
2011-01-12 00:27:34 +08:00
|
|
|
print ("teardown called in %s" % self)
|
2009-08-10 17:27:13 +08:00
|
|
|
eq_(self.called, ['setup'])
|
|
|
|
self.called.append('teardown')
|
|
|
|
|
|
|
|
def test(self):
|
2011-01-12 00:27:34 +08:00
|
|
|
print ("test called in %s" % self)
|
2009-08-10 17:27:13 +08:00
|
|
|
for i in range(0, 5):
|
|
|
|
yield self.check, i
|
|
|
|
|
|
|
|
def check(self, i):
|
2011-01-12 00:27:34 +08:00
|
|
|
print ("check called in %s" % self)
|
2009-08-10 17:27:13 +08:00
|
|
|
expect = ['setup']
|
|
|
|
#for x in range(0, i):
|
|
|
|
# expect.append('setup')
|
|
|
|
# expect.append('teardown')
|
|
|
|
#expect.append('setup')
|
|
|
|
eq_(self.called, expect)
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '-p', 'nose')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*10 passed*"
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2009-10-23 21:11:53 +08:00
|
|
|
def test_module_level_setup(testdir):
|
|
|
|
testdir.makepyfile("""
|
2009-10-23 21:27:59 +08:00
|
|
|
from nose.tools import with_setup
|
2009-10-23 21:11:53 +08:00
|
|
|
items = {}
|
2010-09-03 17:09:41 +08:00
|
|
|
|
2009-10-23 21:11:53 +08:00
|
|
|
def setup():
|
|
|
|
items[1]=1
|
|
|
|
|
2009-10-23 21:27:59 +08:00
|
|
|
def teardown():
|
|
|
|
del items[1]
|
|
|
|
|
|
|
|
def setup2():
|
|
|
|
items[2] = 2
|
|
|
|
|
|
|
|
def teardown2():
|
|
|
|
del items[2]
|
|
|
|
|
|
|
|
def test_setup_module_setup():
|
|
|
|
assert items[1] == 1
|
|
|
|
|
|
|
|
@with_setup(setup2, teardown2)
|
|
|
|
def test_local_setup():
|
|
|
|
assert items[2] == 2
|
|
|
|
assert 1 not in items
|
2009-10-23 21:11:53 +08:00
|
|
|
""")
|
|
|
|
result = testdir.runpytest('-p', 'nose')
|
|
|
|
result.stdout.fnmatch_lines([
|
2009-10-23 21:27:59 +08:00
|
|
|
"*2 passed*",
|
2009-10-23 21:11:53 +08:00
|
|
|
])
|
2009-10-23 22:17:06 +08:00
|
|
|
|
2010-09-03 17:07:17 +08:00
|
|
|
|
2009-10-23 22:17:06 +08:00
|
|
|
def test_nose_style_setup_teardown(testdir):
|
|
|
|
testdir.makepyfile("""
|
|
|
|
l = []
|
2010-09-03 17:09:41 +08:00
|
|
|
|
2009-10-23 22:17:06 +08:00
|
|
|
def setup_module():
|
|
|
|
l.append(1)
|
|
|
|
|
|
|
|
def teardown_module():
|
|
|
|
del l[0]
|
|
|
|
|
|
|
|
def test_hello():
|
|
|
|
assert l == [1]
|
|
|
|
|
|
|
|
def test_world():
|
|
|
|
assert l == [1]
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest('-p', 'nose')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*2 passed*",
|
|
|
|
])
|
2011-07-06 03:23:59 +08:00
|
|
|
|
|
|
|
def test_nose_setup_ordering(testdir):
|
|
|
|
testdir.makepyfile("""
|
|
|
|
def setup_module(mod):
|
|
|
|
mod.visited = True
|
|
|
|
|
|
|
|
class TestClass:
|
|
|
|
def setup(self):
|
|
|
|
assert visited
|
|
|
|
def test_first(self):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*1 passed*",
|
|
|
|
])
|