[svn r58297] add a new way of conditionally skipping a test:

py.test.skip(ifraises="...")

see more info in the added doc.

also remove a redundant raises test and
cleanup raises code a bit.

--HG--
branch : trunk
This commit is contained in:
hpk
2008-09-21 14:50:56 +02:00
parent cdb8fa1abe
commit e77fab82ee
5 changed files with 82 additions and 34 deletions

View File

@@ -427,29 +427,13 @@ class Testgenitems:
ev = failures[0]
assert ev.outcome.longrepr.reprcrash.message.startswith("SyntaxError")
def test_skip_at_module_level(self):
self.tmp.ensure("test_module.py").write(py.code.Source("""
import py
py.test.skip('xxx')
"""))
items, events = self._genitems()
funcs = [x for x in items if isinstance(x, event.ItemStart)]
assert not funcs
assert not items
l = [x for x in events
if isinstance(x, event.CollectionReport)
and x.colitem.name == 'test_module.py']
assert len(l) == 1
ev = l[0]
assert ev.skipped
def test_example_items1(self):
self.tmp.ensure("test_example.py").write(py.code.Source('''
def test_one():
def testone():
pass
class TestX:
def test_method_one(self):
def testmethod_one(self):
pass
class TestY(TestX):
@@ -457,17 +441,17 @@ class Testgenitems:
'''))
items, events = self._genitems()
assert len(items) == 3
assert items[0].name == 'test_one'
assert items[1].name == 'test_method_one'
assert items[2].name == 'test_method_one'
assert items[0].name == 'testone'
assert items[1].name == 'testmethod_one'
assert items[2].name == 'testmethod_one'
# let's also test getmodpath here
assert items[0].getmodpath() == "test_one"
assert items[1].getmodpath() == "TestX.test_method_one"
assert items[2].getmodpath() == "TestY.test_method_one"
assert items[0].getmodpath() == "testone"
assert items[1].getmodpath() == "TestX.testmethod_one"
assert items[2].getmodpath() == "TestY.testmethod_one"
s = items[0].getmodpath(stopatmodule=False)
assert s == "test_example_items1.test_example.test_one"
assert s == "test_example_items1.test_example.testone"
print s
def test_collect_doctest_files_with_test_prefix(self):

View File

@@ -1,6 +1,7 @@
import py
import marshal
from py.__.test.outcome import Skipped
class TestRaises:
def test_raises(self):
@@ -58,3 +59,28 @@ def test_deprecated_explicit_call():
py.test.deprecated_call(dep_explicit, 0)
py.test.deprecated_call(dep_explicit, 0)
def test_skip_simple():
excinfo = py.test.raises(Skipped, 'py.test.skip("xxx")')
assert excinfo.traceback[-1].frame.code.name == "skip"
assert excinfo.traceback[-1].ishidden()
def test_skip_ifraises():
excinfo = py.test.raises(Skipped, '''
py.test.skip(ifraises="""
import lky
""")
''')
assert excinfo.traceback[-1].frame.code.name == "skip"
assert excinfo.traceback[-1].ishidden()
assert excinfo.value.msg.startswith("ImportError")
def test_skip_ifraises_syntaxerror():
try:
excinfo = py.test.raises(SyntaxError, '''
py.test.skip(ifraises="x y z")''')
except Skipped:
py.test.fail("should not skip")
assert not excinfo.traceback[-1].ishidden()