test_callbacks.py 3.6 KB
Newer Older
Dean Moldovan's avatar
Dean Moldovan committed
1
import pytest
2
from pybind11_tests import callbacks as m
Dean Moldovan's avatar
Dean Moldovan committed
3
4


5
def test_callbacks():
Dean Moldovan's avatar
Dean Moldovan committed
6
7
8
    from functools import partial

    def func1():
9
        return "func1"
Dean Moldovan's avatar
Dean Moldovan committed
10
11

    def func2(a, b, c, d):
12
        return "func2", a, b, c, d
Dean Moldovan's avatar
Dean Moldovan committed
13
14

    def func3(a):
15
16
        return "func3({})".format(a)

17
18
19
20
21
    assert m.test_callback1(func1) == "func1"
    assert m.test_callback2(func2) == ("func2", "Hello", "x", True, 5)
    assert m.test_callback1(partial(func2, 1, 2, 3, 4)) == ("func2", 1, 2, 3, 4)
    assert m.test_callback1(partial(func3, "partial")) == "func3(partial)"
    assert m.test_callback3(lambda i: i + 1) == "func(43) = 44"
Dean Moldovan's avatar
Dean Moldovan committed
22

23
    f = m.test_callback4()
Dean Moldovan's avatar
Dean Moldovan committed
24
    assert f(43) == 44
25
    f = m.test_callback5()
Dean Moldovan's avatar
Dean Moldovan committed
26
27
28
    assert f(number=43) == 44


29
30
31
32
33
34
35
def test_bound_method_callback():
    # Bound Python method:
    class MyClass:
        def double(self, val):
            return 2 * val

    z = MyClass()
36
    assert m.test_callback3(z.double) == "func(43) = 86"
37

38
39
    z = m.CppBoundMethodTest()
    assert m.test_callback3(z.triple) == "func(43) = 129"
40
41


42
43
44
45
46
def test_keyword_args_and_generalized_unpacking():

    def f(*args, **kwargs):
        return args, kwargs

47
48
49
50
51
    assert m.test_tuple_unpacking(f) == (("positional", 1, 2, 3, 4, 5, 6), {})
    assert m.test_dict_unpacking(f) == (("positional", 1), {"key": "value", "a": 1, "b": 2})
    assert m.test_keyword_args(f) == ((), {"x": 10, "y": 20})
    assert m.test_unpacking_and_keywords1(f) == ((1, 2), {"c": 3, "d": 4})
    assert m.test_unpacking_and_keywords2(f) == (
52
53
54
55
56
        ("positional", 1, 2, 3, 4, 5),
        {"key": "value", "a": 1, "b": 2, "c": 3, "d": 4, "e": 5}
    )

    with pytest.raises(TypeError) as excinfo:
57
        m.test_unpacking_error1(f)
58
59
60
    assert "Got multiple values for keyword argument" in str(excinfo.value)

    with pytest.raises(TypeError) as excinfo:
61
        m.test_unpacking_error2(f)
62
63
64
    assert "Got multiple values for keyword argument" in str(excinfo.value)

    with pytest.raises(RuntimeError) as excinfo:
65
        m.test_arg_conversion_error1(f)
66
67
68
    assert "Unable to convert call argument" in str(excinfo.value)

    with pytest.raises(RuntimeError) as excinfo:
69
        m.test_arg_conversion_error2(f)
70
71
72
    assert "Unable to convert call argument" in str(excinfo.value)


Dean Moldovan's avatar
Dean Moldovan committed
73
def test_lambda_closure_cleanup():
74
75
    m.test_cleanup()
    cstats = m.payload_cstats()
Dean Moldovan's avatar
Dean Moldovan committed
76
77
78
79
80
    assert cstats.alive() == 0
    assert cstats.copy_constructions == 1
    assert cstats.move_constructions >= 1


81
def test_cpp_function_roundtrip():
Dean Moldovan's avatar
Dean Moldovan committed
82
83
    """Test if passing a function pointer from C++ -> Python -> C++ yields the original pointer"""

84
85
86
87
88
89
    assert m.test_dummy_function(m.dummy_function) == "matches dummy_function: eval(1) = 2"
    assert (m.test_dummy_function(m.roundtrip(m.dummy_function)) ==
            "matches dummy_function: eval(1) = 2")
    assert m.roundtrip(None, expect_none=True) is None
    assert (m.test_dummy_function(lambda x: x + 2) ==
            "can't convert to function pointer: eval(1) = 3")
Dean Moldovan's avatar
Dean Moldovan committed
90

91
    with pytest.raises(TypeError) as excinfo:
92
        m.test_dummy_function(m.dummy_function2)
93
    assert "incompatible function arguments" in str(excinfo.value)
Dean Moldovan's avatar
Dean Moldovan committed
94

95
    with pytest.raises(TypeError) as excinfo:
96
        m.test_dummy_function(lambda x, y: x + y)
97
98
    assert any(s in str(excinfo.value) for s in ("missing 1 required positional argument",
                                                 "takes exactly 2 arguments"))
Dean Moldovan's avatar
Dean Moldovan committed
99
100
101


def test_function_signatures(doc):
102
103
    assert doc(m.test_callback3) == "test_callback3(arg0: Callable[[int], int]) -> str"
    assert doc(m.test_callback4) == "test_callback4() -> Callable[[int], int]"
104
105
106


def test_movable_object():
107
    assert m.callback_with_movable(lambda _: None) is True