test_operator_overloading.py 3.25 KB
Newer Older
1
import pytest
2
from pybind11_tests import operators as m
3
4
5
from pybind11_tests import ConstructorStats


Dean Moldovan's avatar
Dean Moldovan committed
6
def test_operator_overloading():
7
8
    v1 = m.Vector2(1, 2)
    v2 = m.Vector(3, -1)
Dean Moldovan's avatar
Dean Moldovan committed
9
10
11
    assert str(v1) == "[1.000000, 2.000000]"
    assert str(v2) == "[3.000000, -1.000000]"

12
13
    assert str(-v2) == "[-3.000000, 1.000000]"

Dean Moldovan's avatar
Dean Moldovan committed
14
15
16
17
18
19
20
21
22
23
    assert str(v1 + v2) == "[4.000000, 1.000000]"
    assert str(v1 - v2) == "[-2.000000, 3.000000]"
    assert str(v1 - 8) == "[-7.000000, -6.000000]"
    assert str(v1 + 8) == "[9.000000, 10.000000]"
    assert str(v1 * 8) == "[8.000000, 16.000000]"
    assert str(v1 / 8) == "[0.125000, 0.250000]"
    assert str(8 - v1) == "[7.000000, 6.000000]"
    assert str(8 + v1) == "[9.000000, 10.000000]"
    assert str(8 * v1) == "[8.000000, 16.000000]"
    assert str(8 / v1) == "[8.000000, 4.000000]"
24
25
    assert str(v1 * v2) == "[3.000000, -2.000000]"
    assert str(v2 / v1) == "[3.000000, -0.500000]"
Dean Moldovan's avatar
Dean Moldovan committed
26

27
28
    assert hash(v1) == 4

29
30
31
32
    v1 += 2 * v2
    assert str(v1) == "[7.000000, 0.000000]"
    v1 -= v2
    assert str(v1) == "[4.000000, 1.000000]"
Dean Moldovan's avatar
Dean Moldovan committed
33
34
    v1 *= 2
    assert str(v1) == "[8.000000, 2.000000]"
35
36
37
38
39
40
    v1 /= 16
    assert str(v1) == "[0.500000, 0.125000]"
    v1 *= v2
    assert str(v1) == "[1.500000, -0.125000]"
    v2 /= v1
    assert str(v2) == "[2.000000, 8.000000]"
Dean Moldovan's avatar
Dean Moldovan committed
41

42
    cstats = ConstructorStats.get(m.Vector2)
Dean Moldovan's avatar
Dean Moldovan committed
43
44
45
46
47
    assert cstats.alive() == 2
    del v1
    assert cstats.alive() == 1
    del v2
    assert cstats.alive() == 0
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
    assert cstats.values() == [
        '[1.000000, 2.000000]',
        '[3.000000, -1.000000]',
        '[-3.000000, 1.000000]',
        '[4.000000, 1.000000]',
        '[-2.000000, 3.000000]',
        '[-7.000000, -6.000000]',
        '[9.000000, 10.000000]',
        '[8.000000, 16.000000]',
        '[0.125000, 0.250000]',
        '[7.000000, 6.000000]',
        '[9.000000, 10.000000]',
        '[8.000000, 16.000000]',
        '[8.000000, 4.000000]',
        '[3.000000, -2.000000]',
        '[3.000000, -0.500000]',
        '[6.000000, -2.000000]',
    ]
Dean Moldovan's avatar
Dean Moldovan committed
66
67
68
69
70
    assert cstats.default_constructions == 0
    assert cstats.copy_constructions == 0
    assert cstats.move_constructions >= 10
    assert cstats.copy_assignments == 0
    assert cstats.move_assignments == 0
71
72
73
74
75


def test_operators_notimplemented():
    """#393: need to return NotSupported to ensure correct arithmetic operator behavior"""

76
    c1, c2 = m.C1(), m.C2()
77
78
79
80
81
82
83
84
85
    assert c1 + c1 == 11
    assert c2 + c2 == 22
    assert c2 + c1 == 21
    assert c1 + c2 == 12


def test_nested():
    """#328: first member in a class can't be used in operators"""

86
87
88
    a = m.NestA()
    b = m.NestB()
    c = m.NestC()
89
90

    a += 10
91
    assert m.get_NestA(a) == 13
92
    b.a += 100
93
    assert m.get_NestA(b.a) == 103
94
    c.b.a += 1000
95
    assert m.get_NestA(c.b.a) == 1003
96
    b -= 1
97
    assert m.get_NestB(b) == 3
98
    c.b -= 3
99
    assert m.get_NestB(c.b) == 1
100
    c *= 7
101
    assert m.get_NestC(c) == 35
102
103
104
105
106
107
108
109
110
111
112

    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
    pytest.gc_collect()
luz.paz's avatar
luz.paz committed
113
    del a  # Shouldn't delete while abase is still alive
114
115
116
117
118
    pytest.gc_collect()

    assert abase.value == 42
    del abase, b
    pytest.gc_collect()