2010-11-01 01:57:44 +08:00
|
|
|
import py, pytest,os
|
2010-11-13 18:10:45 +08:00
|
|
|
from _pytest.helpconfig import collectattr
|
2009-08-19 21:45:01 +08:00
|
|
|
|
2011-01-13 02:39:36 +08:00
|
|
|
def test_version(testdir, pytestconfig):
|
2009-08-19 21:45:01 +08:00
|
|
|
result = testdir.runpytest("--version")
|
|
|
|
assert result.ret == 0
|
2009-12-31 01:11:00 +08:00
|
|
|
#p = py.path.local(py.__file__).dirpath()
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stderr.fnmatch_lines([
|
2010-11-01 01:57:44 +08:00
|
|
|
'*py.test*%s*imported from*' % (pytest.__version__, )
|
2009-08-19 21:45:01 +08:00
|
|
|
])
|
2011-01-13 02:39:36 +08:00
|
|
|
if pytestconfig.pluginmanager._plugin_distinfo:
|
|
|
|
result.stderr.fnmatch_lines([
|
|
|
|
"*setuptools registered plugins:",
|
|
|
|
"*at*",
|
|
|
|
])
|
2009-08-19 21:45:01 +08:00
|
|
|
|
2010-10-28 04:29:01 +08:00
|
|
|
def test_help(testdir):
|
|
|
|
result = testdir.runpytest("--help")
|
2009-08-19 21:45:01 +08:00
|
|
|
assert result.ret == 0
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2010-10-28 04:29:01 +08:00
|
|
|
"*-v*verbose*",
|
2010-11-01 00:41:58 +08:00
|
|
|
"*setup.cfg*",
|
|
|
|
"*minversion*",
|
2009-08-19 21:45:01 +08:00
|
|
|
])
|
|
|
|
|
2009-12-29 17:59:01 +08:00
|
|
|
def test_collectattr():
|
|
|
|
class A:
|
|
|
|
def pytest_hello(self):
|
|
|
|
pass
|
|
|
|
class B(A):
|
|
|
|
def pytest_world(self):
|
|
|
|
pass
|
|
|
|
methods = py.builtin.sorted(collectattr(B))
|
|
|
|
assert list(methods) == ['pytest_hello', 'pytest_world']
|
|
|
|
methods = py.builtin.sorted(collectattr(B()))
|
|
|
|
assert list(methods) == ['pytest_hello', 'pytest_world']
|
|
|
|
|
2010-04-22 17:57:57 +08:00
|
|
|
def test_hookvalidation_unknown(testdir):
|
|
|
|
testdir.makeconftest("""
|
|
|
|
def pytest_hello(xyz):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
assert result.ret != 0
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stderr.fnmatch_lines([
|
2010-04-22 17:57:57 +08:00
|
|
|
'*unknown hook*pytest_hello*'
|
|
|
|
])
|
|
|
|
|
|
|
|
def test_hookvalidation_optional(testdir):
|
|
|
|
testdir.makeconftest("""
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
|
|
|
@pytest.mark.optionalhook
|
2010-04-22 17:57:57 +08:00
|
|
|
def pytest_hello(xyz):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
assert result.ret == 0
|
|
|
|
|
2011-01-13 02:39:36 +08:00
|
|
|
def test_traceconfig(testdir):
|
|
|
|
result = testdir.runpytest("--traceconfig")
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*using*pytest*py*",
|
|
|
|
"*active plugins*",
|
|
|
|
])
|