test_issues.py 4.48 KB
Newer Older
Dean Moldovan's avatar
Dean Moldovan committed
1
2
3
4
import pytest
import gc


5
def test_regressions():
Dean Moldovan's avatar
Dean Moldovan committed
6
7
    from pybind11_tests.issues import print_cchar, print_char

8
9
10
11
    # #137: const char* isn't handled properly
    assert print_cchar("const char *") == "const char *"
    # #150: char bindings broken
    assert print_char("c") == "c"
Dean Moldovan's avatar
Dean Moldovan committed
12
13


14
def test_dispatch_issue(msg):
Dean Moldovan's avatar
Dean Moldovan committed
15
16
17
18
19
    """#159: virtual function dispatch has problems with similar-named functions"""
    from pybind11_tests.issues import DispatchIssue, dispatch_issue_go

    class PyClass1(DispatchIssue):
        def dispatch(self):
20
            return "Yay.."
Dean Moldovan's avatar
Dean Moldovan committed
21
22
23
24
25
26
27
28

    class PyClass2(DispatchIssue):
        def dispatch(self):
            with pytest.raises(RuntimeError) as excinfo:
                super(PyClass2, self).dispatch()
            assert msg(excinfo.value) == 'Tried to call pure virtual function "Base::dispatch"'

            p = PyClass1()
29
            return dispatch_issue_go(p)
Dean Moldovan's avatar
Dean Moldovan committed
30
31

    b = PyClass2()
32
    assert dispatch_issue_go(b) == "Yay.."
Dean Moldovan's avatar
Dean Moldovan committed
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125


def test_reference_wrapper():
    """#171: Can't return reference wrappers (or STL data structures containing them)"""
    from pybind11_tests.issues import Placeholder, return_vec_of_reference_wrapper

    assert str(return_vec_of_reference_wrapper(Placeholder(4))) == \
        "[Placeholder[1], Placeholder[2], Placeholder[3], Placeholder[4]]"


def test_iterator_passthrough():
    """#181: iterator passthrough did not compile"""
    from pybind11_tests.issues import iterator_passthrough

    assert list(iterator_passthrough(iter([3, 5, 7, 9, 11, 13, 15]))) == [3, 5, 7, 9, 11, 13, 15]


def test_shared_ptr_gc():
    """// #187: issue involving std::shared_ptr<> return value policy & garbage collection"""
    from pybind11_tests.issues import ElementList, ElementA

    el = ElementList()
    for i in range(10):
        el.add(ElementA(i))
    gc.collect()
    for i, v in enumerate(el.get()):
        assert i == v.value()


def test_no_id(capture, msg):
    from pybind11_tests.issues import print_element, expect_float, expect_int

    with pytest.raises(TypeError) as excinfo:
        print_element(None)
    assert msg(excinfo.value) == """
        Incompatible function arguments. The following argument types are supported:
            1. (arg0: m.issues.ElementA) -> None
            Invoked with: None
    """

    with pytest.raises(TypeError) as excinfo:
        expect_int(5.2)
    assert msg(excinfo.value) == """
        Incompatible function arguments. The following argument types are supported:
            1. (arg0: int) -> int
            Invoked with: 5.2
    """
    assert expect_float(12) == 12

    from pybind11_tests.issues import A, call_f

    class B(A):
        def __init__(self):
            super(B, self).__init__()

        def f(self):
            print("In python f()")

    # C++ version
    with capture:
        a = A()
        call_f(a)
    assert capture == "A.f()"

    # Python version
    with capture:
        b = B()
        call_f(b)
    assert capture == """
        PyA.PyA()
        PyA.f()
        In python f()
    """


def test_str_issue(capture, msg):
    """Issue #283: __str__ called on uninitialized instance when constructor arguments invalid"""
    from pybind11_tests.issues import StrIssue

    with capture:
        assert str(StrIssue(3)) == "StrIssue[3]"
    assert capture == "StrIssue.__str__ called"

    with pytest.raises(TypeError) as excinfo:
        str(StrIssue("no", "such", "constructor"))
    assert msg(excinfo.value) == """
        Incompatible constructor arguments. The following argument types are supported:
            1. m.issues.StrIssue(arg0: int)
            2. m.issues.StrIssue()
            Invoked with: no, such, constructor
    """


126
def test_nested():
Dean Moldovan's avatar
Dean Moldovan committed
127
    """ #328: first member in a class can't be used in operators"""
128
    from pybind11_tests.issues import NestA, NestB, NestC, get_NestA, get_NestB, get_NestC
Dean Moldovan's avatar
Dean Moldovan committed
129
130
131
132
133
134

    a = NestA()
    b = NestB()
    c = NestC()

    a += 10
135
    assert get_NestA(a) == 13
Dean Moldovan's avatar
Dean Moldovan committed
136
    b.a += 100
137
    assert get_NestA(b.a) == 103
Dean Moldovan's avatar
Dean Moldovan committed
138
    c.b.a += 1000
139
    assert get_NestA(c.b.a) == 1003
Dean Moldovan's avatar
Dean Moldovan committed
140
    b -= 1
141
    assert get_NestB(b) == 3
Dean Moldovan's avatar
Dean Moldovan committed
142
    c.b -= 3
143
    assert get_NestB(c.b) == 1
Dean Moldovan's avatar
Dean Moldovan committed
144
    c *= 7
145
    assert get_NestC(c) == 35
Dean Moldovan's avatar
Dean Moldovan committed
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162

    abase = a.as_base()
    assert abase.value == -2
    a.as_base().value += 44
    assert abase.value == 42
    assert c.b.a.as_base().value == -2
    c.b.a.as_base().value += 44
    assert c.b.a.as_base().value == 42

    del c
    gc.collect()
    del a  # Should't delete while abase is still alive
    gc.collect()

    assert abase.value == 42
    del abase, b
    gc.collect()