123 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			123 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Python
		
	
	
	
from py.test import raises
 | 
						|
import py
 | 
						|
 | 
						|
def otherfunc(a,b):
 | 
						|
    assert a==b
 | 
						|
 | 
						|
def somefunc(x,y):
 | 
						|
    otherfunc(x,y)
 | 
						|
 | 
						|
def otherfunc_multi(a,b):
 | 
						|
    assert (a ==
 | 
						|
            b)
 | 
						|
 | 
						|
def test_generative(param1, param2):
 | 
						|
    assert param1 * 2 < param2
 | 
						|
 | 
						|
def pytest_generate_tests(metafunc):
 | 
						|
    if 'param1' in metafunc.funcargnames:
 | 
						|
        metafunc.addcall(funcargs=dict(param1=3, param2=6))
 | 
						|
 | 
						|
class TestFailing(object):
 | 
						|
    def test_simple(self):
 | 
						|
        def f():
 | 
						|
            return 42
 | 
						|
        def g():
 | 
						|
            return 43
 | 
						|
 | 
						|
        assert f() == g()
 | 
						|
 | 
						|
    def test_simple_multiline(self):
 | 
						|
        otherfunc_multi(
 | 
						|
                  42,
 | 
						|
                  6*9)
 | 
						|
 | 
						|
    def test_not(self):
 | 
						|
        def f():
 | 
						|
            return 42
 | 
						|
        assert not f()
 | 
						|
 | 
						|
    def test_complex_error(self):
 | 
						|
        def f():
 | 
						|
            return 44
 | 
						|
        def g():
 | 
						|
            return 43
 | 
						|
        somefunc(f(), g())
 | 
						|
 | 
						|
    def test_z1_unpack_error(self):
 | 
						|
        l = []
 | 
						|
        a,b  = l
 | 
						|
 | 
						|
    def test_z2_type_error(self):
 | 
						|
        l = 3
 | 
						|
        a,b  = l
 | 
						|
 | 
						|
    def test_startswith(self):
 | 
						|
        s = "123"
 | 
						|
        g = "456"
 | 
						|
        assert s.startswith(g)
 | 
						|
 | 
						|
    def test_startswith_nested(self):
 | 
						|
        def f():
 | 
						|
            return "123"
 | 
						|
        def g():
 | 
						|
            return "456"
 | 
						|
        assert f().startswith(g())
 | 
						|
 | 
						|
    def test_global_func(self):
 | 
						|
        assert isinstance(globf(42), float)
 | 
						|
 | 
						|
    def test_instance(self):
 | 
						|
        self.x = 6*7
 | 
						|
        assert self.x != 42
 | 
						|
 | 
						|
    def test_compare(self):
 | 
						|
        assert globf(10) < 5
 | 
						|
 | 
						|
    def test_try_finally(self):
 | 
						|
        x = 1
 | 
						|
        try:
 | 
						|
            assert x == 0
 | 
						|
        finally:
 | 
						|
            x = 0
 | 
						|
 | 
						|
    def test_raises(self):
 | 
						|
        s = 'qwe'
 | 
						|
        raises(TypeError, "int(s)")
 | 
						|
 | 
						|
    def test_raises_doesnt(self):
 | 
						|
        raises(IOError, "int('3')")
 | 
						|
 | 
						|
    def test_raise(self):
 | 
						|
        raise ValueError("demo error")
 | 
						|
 | 
						|
    def test_tupleerror(self):
 | 
						|
        a,b = [1]
 | 
						|
 | 
						|
    def test_reinterpret_fails_with_print_for_the_fun_of_it(self):
 | 
						|
        l = [1,2,3]
 | 
						|
        print ("l is %r" % l)
 | 
						|
        a,b = l.pop()
 | 
						|
 | 
						|
    def test_some_error(self):
 | 
						|
        if namenotexi:
 | 
						|
            pass
 | 
						|
 | 
						|
    def func1(self):
 | 
						|
        assert 41 == 42
 | 
						|
 | 
						|
 | 
						|
# thanks to Matthew Scott for this test
 | 
						|
def test_dynamic_compile_shows_nicely():
 | 
						|
    src = 'def foo():\n assert 1 == 0\n'
 | 
						|
    name = 'abc-123'
 | 
						|
    module = py.std.imp.new_module(name)
 | 
						|
    code = py.code.compile(src, name, 'exec')
 | 
						|
    py.builtin.exec_(code, module.__dict__)
 | 
						|
    py.std.sys.modules[name] = module
 | 
						|
    module.foo()
 | 
						|
 | 
						|
 | 
						|
def globf(x):
 | 
						|
    return x+1
 |