test_virtual_functions.py 8.1 KB
Newer Older
Dean Moldovan's avatar
Dean Moldovan committed
1
import pytest
2
import pybind11_tests
Dean Moldovan's avatar
Dean Moldovan committed
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from pybind11_tests import ConstructorStats


def test_override(capture, msg):
    from pybind11_tests import (ExampleVirt, runExampleVirt, runExampleVirtVirtual,
                                runExampleVirtBool)

    class ExtendedExampleVirt(ExampleVirt):
        def __init__(self, state):
            super(ExtendedExampleVirt, self).__init__(state + 1)
            self.data = "Hello world"

        def run(self, value):
            print('ExtendedExampleVirt::run(%i), calling parent..' % value)
            return super(ExtendedExampleVirt, self).run(value + 1)

        def run_bool(self):
            print('ExtendedExampleVirt::run_bool()')
            return False

23
24
25
        def get_string1(self):
            return "override1"

Dean Moldovan's avatar
Dean Moldovan committed
26
27
28
        def pure_virtual(self):
            print('ExtendedExampleVirt::pure_virtual(): %s' % self.data)

29
30
31
32
33
34
35
    class ExtendedExampleVirt2(ExtendedExampleVirt):
        def __init__(self, state):
            super(ExtendedExampleVirt2, self).__init__(state + 1)

        def get_string2(self):
            return "override2"

Dean Moldovan's avatar
Dean Moldovan committed
36
37
38
    ex12 = ExampleVirt(10)
    with capture:
        assert runExampleVirt(ex12, 20) == 30
39
    assert capture == "Original implementation of ExampleVirt::run(state=10, value=20, str1=default1, str2=default2)"
Dean Moldovan's avatar
Dean Moldovan committed
40
41
42
43
44
45
46
47
48
49

    with pytest.raises(RuntimeError) as excinfo:
        runExampleVirtVirtual(ex12)
    assert msg(excinfo.value) == 'Tried to call pure virtual function "ExampleVirt::pure_virtual"'

    ex12p = ExtendedExampleVirt(10)
    with capture:
        assert runExampleVirt(ex12p, 20) == 32
    assert capture == """
        ExtendedExampleVirt::run(20), calling parent..
50
        Original implementation of ExampleVirt::run(state=11, value=21, str1=override1, str2=default2)
Dean Moldovan's avatar
Dean Moldovan committed
51
52
53
54
55
56
57
58
    """
    with capture:
        assert runExampleVirtBool(ex12p) is False
    assert capture == "ExtendedExampleVirt::run_bool()"
    with capture:
        runExampleVirtVirtual(ex12p)
    assert capture == "ExtendedExampleVirt::pure_virtual(): Hello world"

59
60
61
62
63
64
65
66
    ex12p2 = ExtendedExampleVirt2(15)
    with capture:
        assert runExampleVirt(ex12p2, 50) == 68
    assert capture == """
        ExtendedExampleVirt::run(50), calling parent..
        Original implementation of ExampleVirt::run(state=17, value=51, str1=override1, str2=override2)
    """

Dean Moldovan's avatar
Dean Moldovan committed
67
    cstats = ConstructorStats.get(ExampleVirt)
68
69
    assert cstats.alive() == 3
    del ex12, ex12p, ex12p2
Dean Moldovan's avatar
Dean Moldovan committed
70
    assert cstats.alive() == 0
71
    assert cstats.values() == ['10', '11', '17']
Dean Moldovan's avatar
Dean Moldovan committed
72
73
74
75
    assert cstats.copy_constructions == 0
    assert cstats.move_constructions >= 0


76
def test_inheriting_repeat():
Dean Moldovan's avatar
Dean Moldovan committed
77
78
79
80
81
82
83
84
85
86
87
    from pybind11_tests import A_Repeat, B_Repeat, C_Repeat, D_Repeat, A_Tpl, B_Tpl, C_Tpl, D_Tpl

    class VI_AR(A_Repeat):
        def unlucky_number(self):
            return 99

    class VI_AT(A_Tpl):
        def unlucky_number(self):
            return 999

    obj = VI_AR()
88
    assert obj.say_something(3) == "hihihi"
Dean Moldovan's avatar
Dean Moldovan committed
89
    assert obj.unlucky_number() == 99
90
    assert obj.say_everything() == "hi 99"
Dean Moldovan's avatar
Dean Moldovan committed
91
92

    obj = VI_AT()
93
    assert obj.say_something(3) == "hihihi"
Dean Moldovan's avatar
Dean Moldovan committed
94
    assert obj.unlucky_number() == 999
95
    assert obj.say_everything() == "hi 999"
Dean Moldovan's avatar
Dean Moldovan committed
96
97

    for obj in [B_Repeat(), B_Tpl()]:
98
        assert obj.say_something(3) == "B says hi 3 times"
Dean Moldovan's avatar
Dean Moldovan committed
99
100
        assert obj.unlucky_number() == 13
        assert obj.lucky_number() == 7.0
101
        assert obj.say_everything() == "B says hi 1 times 13"
Dean Moldovan's avatar
Dean Moldovan committed
102
103

    for obj in [C_Repeat(), C_Tpl()]:
104
        assert obj.say_something(3) == "B says hi 3 times"
Dean Moldovan's avatar
Dean Moldovan committed
105
106
        assert obj.unlucky_number() == 4444
        assert obj.lucky_number() == 888.0
107
        assert obj.say_everything() == "B says hi 1 times 4444"
Dean Moldovan's avatar
Dean Moldovan committed
108
109
110
111
112
113

    class VI_CR(C_Repeat):
        def lucky_number(self):
            return C_Repeat.lucky_number(self) + 1.25

    obj = VI_CR()
114
    assert obj.say_something(3) == "B says hi 3 times"
Dean Moldovan's avatar
Dean Moldovan committed
115
116
    assert obj.unlucky_number() == 4444
    assert obj.lucky_number() == 889.25
117
    assert obj.say_everything() == "B says hi 1 times 4444"
Dean Moldovan's avatar
Dean Moldovan committed
118
119
120
121
122

    class VI_CT(C_Tpl):
        pass

    obj = VI_CT()
123
    assert obj.say_something(3) == "B says hi 3 times"
Dean Moldovan's avatar
Dean Moldovan committed
124
125
    assert obj.unlucky_number() == 4444
    assert obj.lucky_number() == 888.0
126
    assert obj.say_everything() == "B says hi 1 times 4444"
Dean Moldovan's avatar
Dean Moldovan committed
127
128
129
130
131
132

    class VI_CCR(VI_CR):
        def lucky_number(self):
            return VI_CR.lucky_number(self) * 10

    obj = VI_CCR()
133
    assert obj.say_something(3) == "B says hi 3 times"
Dean Moldovan's avatar
Dean Moldovan committed
134
135
    assert obj.unlucky_number() == 4444
    assert obj.lucky_number() == 8892.5
136
    assert obj.say_everything() == "B says hi 1 times 4444"
Dean Moldovan's avatar
Dean Moldovan committed
137
138
139
140
141
142

    class VI_CCT(VI_CT):
        def lucky_number(self):
            return VI_CT.lucky_number(self) * 1000

    obj = VI_CCT()
143
    assert obj.say_something(3) == "B says hi 3 times"
Dean Moldovan's avatar
Dean Moldovan committed
144
145
    assert obj.unlucky_number() == 4444
    assert obj.lucky_number() == 888000.0
146
    assert obj.say_everything() == "B says hi 1 times 4444"
Dean Moldovan's avatar
Dean Moldovan committed
147
148
149
150
151
152
153
154
155

    class VI_DR(D_Repeat):
        def unlucky_number(self):
            return 123

        def lucky_number(self):
            return 42.0

    for obj in [D_Repeat(), D_Tpl()]:
156
        assert obj.say_something(3) == "B says hi 3 times"
Dean Moldovan's avatar
Dean Moldovan committed
157
158
        assert obj.unlucky_number() == 4444
        assert obj.lucky_number() == 888.0
159
        assert obj.say_everything() == "B says hi 1 times 4444"
Dean Moldovan's avatar
Dean Moldovan committed
160
161

    obj = VI_DR()
162
    assert obj.say_something(3) == "B says hi 3 times"
Dean Moldovan's avatar
Dean Moldovan committed
163
164
    assert obj.unlucky_number() == 123
    assert obj.lucky_number() == 42.0
165
    assert obj.say_everything() == "B says hi 1 times 123"
Dean Moldovan's avatar
Dean Moldovan committed
166
167
168

    class VI_DT(D_Tpl):
        def say_something(self, times):
169
            return "VI_DT says:" + (' quack' * times)
Dean Moldovan's avatar
Dean Moldovan committed
170
171
172
173
174
175
176
177

        def unlucky_number(self):
            return 1234

        def lucky_number(self):
            return -4.25

    obj = VI_DT()
178
    assert obj.say_something(3) == "VI_DT says: quack quack quack"
Dean Moldovan's avatar
Dean Moldovan committed
179
180
    assert obj.unlucky_number() == 1234
    assert obj.lucky_number() == -4.25
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
    assert obj.say_everything() == "VI_DT says: quack 1234"

    class VI_DT2(VI_DT):
        def say_something(self, times):
            return "VI_DT2: " + ('QUACK' * times)

        def unlucky_number(self):
            return -3

    class VI_BT(B_Tpl):
        def say_something(self, times):
            return "VI_BT" * times
        def unlucky_number(self):
            return -7
        def lucky_number(self):
            return -1.375

    obj = VI_BT()
    assert obj.say_something(3) == "VI_BTVI_BTVI_BT"
    assert obj.unlucky_number() == -7
    assert obj.lucky_number() == -1.375
    assert obj.say_everything() == "VI_BT -7"
Dean Moldovan's avatar
Dean Moldovan committed
203

204
205
@pytest.mark.skipif(not hasattr(pybind11_tests, 'NCVirt'),
                    reason="NCVirt test broken on ICPC")
206
def test_move_support():
Dean Moldovan's avatar
Dean Moldovan committed
207
208
209
210
211
    from pybind11_tests import NCVirt, NonCopyable, Movable

    class NCVirtExt(NCVirt):
        def get_noncopyable(self, a, b):
            # Constructs and returns a new instance:
212
            nc = NonCopyable(a * a, b * b)
Dean Moldovan's avatar
Dean Moldovan committed
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
            return nc

        def get_movable(self, a, b):
            # Return a referenced copy
            self.movable = Movable(a, b)
            return self.movable

    class NCVirtExt2(NCVirt):
        def get_noncopyable(self, a, b):
            # Keep a reference: this is going to throw an exception
            self.nc = NonCopyable(a, b)
            return self.nc

        def get_movable(self, a, b):
            # Return a new instance without storing it
            return Movable(a, b)

    ncv1 = NCVirtExt()
231
232
    assert ncv1.print_nc(2, 3) == "36"
    assert ncv1.print_movable(4, 5) == "9"
Dean Moldovan's avatar
Dean Moldovan committed
233
    ncv2 = NCVirtExt2()
234
    assert ncv2.print_movable(7, 7) == "14"
Dean Moldovan's avatar
Dean Moldovan committed
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
    # Don't check the exception message here because it differs under debug/non-debug mode
    with pytest.raises(RuntimeError):
        ncv2.print_nc(9, 9)

    nc_stats = ConstructorStats.get(NonCopyable)
    mv_stats = ConstructorStats.get(Movable)
    assert nc_stats.alive() == 1
    assert mv_stats.alive() == 1
    del ncv1, ncv2
    assert nc_stats.alive() == 0
    assert mv_stats.alive() == 0
    assert nc_stats.values() == ['4', '9', '9', '9']
    assert mv_stats.values() == ['4', '5', '7', '7']
    assert nc_stats.copy_constructions == 0
    assert mv_stats.copy_constructions == 1
    assert nc_stats.move_constructions >= 0
    assert mv_stats.move_constructions >= 0