48 lines
1.6 KiB
Python
48 lines
1.6 KiB
Python
|
|
||
|
class TestPasting:
|
||
|
def pytest_funcarg__pastebinlist(self, request):
|
||
|
mp = request.getfuncargvalue("monkeypatch")
|
||
|
pastebinlist = []
|
||
|
class MockProxy:
|
||
|
def newPaste(self, language, code):
|
||
|
pastebinlist.append((language, code))
|
||
|
plugin = request.config.pluginmanager.getplugin('pastebin')
|
||
|
mp.setattr(plugin, 'getproxy', MockProxy)
|
||
|
return pastebinlist
|
||
|
|
||
|
def test_failed(self, testdir, pastebinlist):
|
||
|
testpath = testdir.makepyfile("""
|
||
|
import py
|
||
|
def test_pass():
|
||
|
pass
|
||
|
def test_fail():
|
||
|
assert 0
|
||
|
def test_skip():
|
||
|
py.test.skip("")
|
||
|
""")
|
||
|
reprec = testdir.inline_run(testpath, "--paste=failed")
|
||
|
assert len(pastebinlist) == 1
|
||
|
assert pastebinlist[0][0] == "python"
|
||
|
s = pastebinlist[0][1]
|
||
|
assert s.find("def test_fail") != -1
|
||
|
assert reprec.countoutcomes() == [1,1,1]
|
||
|
|
||
|
def test_all(self, testdir, pastebinlist):
|
||
|
testpath = testdir.makepyfile("""
|
||
|
import py
|
||
|
def test_pass():
|
||
|
pass
|
||
|
def test_fail():
|
||
|
assert 0
|
||
|
def test_skip():
|
||
|
py.test.skip("")
|
||
|
""")
|
||
|
reprec = testdir.inline_run(testpath, "--pastebin=all")
|
||
|
assert reprec.countoutcomes() == [1,1,1]
|
||
|
assert len(pastebinlist) == 1
|
||
|
assert pastebinlist[0][0] == "python"
|
||
|
s = pastebinlist[0][1]
|
||
|
for x in 'test_fail test_skip skipped'.split():
|
||
|
assert s.find(x), (s, x)
|
||
|
|