test_stl_binders.py 4.83 KB
Newer Older
1
2
import pytest
import sys
3
from pybind11_tests import stl_binders as m
4
5
6
7
8

with pytest.suppress(ImportError):
    import numpy as np


Dean Moldovan's avatar
Dean Moldovan committed
9
def test_vector_int():
10
    v_int = m.VectorInt([0, 0])
Dean Moldovan's avatar
Dean Moldovan committed
11
12
13
    assert len(v_int) == 2
    assert bool(v_int) is True

14
    v_int2 = m.VectorInt([0, 0])
Dean Moldovan's avatar
Dean Moldovan committed
15
16
17
18
19
20
21
22
    assert v_int == v_int2
    v_int2[1] = 1
    assert v_int != v_int2

    v_int2.append(2)
    v_int2.insert(0, 1)
    v_int2.insert(0, 2)
    v_int2.insert(0, 3)
23
    v_int2.insert(6, 3)
Dean Moldovan's avatar
Dean Moldovan committed
24
    assert str(v_int2) == "VectorInt[3, 2, 1, 0, 1, 2, 3]"
25
26
    with pytest.raises(IndexError):
        v_int2.insert(8, 4)
Dean Moldovan's avatar
Dean Moldovan committed
27
28
29

    v_int.append(99)
    v_int2[2:-2] = v_int
30
    assert v_int2 == m.VectorInt([3, 2, 0, 0, 99, 2, 3])
Dean Moldovan's avatar
Dean Moldovan committed
31
    del v_int2[1:3]
32
    assert v_int2 == m.VectorInt([3, 0, 99, 2, 3])
Dean Moldovan's avatar
Dean Moldovan committed
33
    del v_int2[0]
34
    assert v_int2 == m.VectorInt([0, 99, 2, 3])
Dean Moldovan's avatar
Dean Moldovan committed
35
36


37
# related to the PyPy's buffer protocol.
38
39
40
@pytest.unsupported_on_pypy
def test_vector_buffer():
    b = bytearray([1, 2, 3, 4])
41
    v = m.VectorUChar(b)
42
43
    assert v[1] == 2
    v[2] = 5
44
    mv = memoryview(v)  # We expose the buffer interface
45
    if sys.version_info.major > 2:
46
47
        assert mv[2] == 5
        mv[2] = 6
48
    else:
49
50
        assert mv[2] == '\x05'
        mv[2] = '\x06'
51
52
    assert v[2] == 6

53
54
55
    with pytest.raises(RuntimeError) as excinfo:
        m.create_undeclstruct()  # Undeclared struct contents, no buffer interface
    assert "NumPy type info missing for " in str(excinfo.value)
56
57


58
@pytest.unsupported_on_pypy
59
60
61
62
@pytest.requires_numpy
def test_vector_buffer_numpy():
    a = np.array([1, 2, 3, 4], dtype=np.int32)
    with pytest.raises(TypeError):
63
        m.VectorInt(a)
64
65

    a = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]], dtype=np.uintc)
66
    v = m.VectorInt(a[0, :])
67
68
    assert len(v) == 4
    assert v[2] == 3
69
70
    ma = np.asarray(v)
    ma[2] = 5
71
72
    assert v[2] == 5

73
    v = m.VectorInt(a[:, 1])
74
75
76
    assert len(v) == 3
    assert v[2] == 10

77
    v = m.get_vectorstruct()
78
    assert v[0].x == 5
79
80
    ma = np.asarray(v)
    ma[1]['x'] = 99
81
82
    assert v[1].x == 99

83
84
    v = m.VectorStruct(np.zeros(3, dtype=np.dtype([('w', 'bool'), ('x', 'I'),
                                                   ('y', 'float64'), ('z', 'bool')], align=True)))
85
86
    assert len(v) == 3

87

Dean Moldovan's avatar
Dean Moldovan committed
88
def test_vector_bool():
89
90
91
    import pybind11_cross_module_tests as cm

    vv_c = cm.VectorBool()
Dean Moldovan's avatar
Dean Moldovan committed
92
93
94
95
96
    for i in range(10):
        vv_c.append(i % 2 == 0)
    for i in range(10):
        assert vv_c[i] == (i % 2 == 0)
    assert str(vv_c) == "VectorBool[1, 0, 1, 0, 1, 0, 1, 0, 1, 0]"
Sergey Lyskov's avatar
Sergey Lyskov committed
97

98

99
100
101
102
103
def test_vector_custom():
    v_a = m.VectorEl()
    v_a.append(m.El(1))
    v_a.append(m.El(2))
    assert str(v_a) == "VectorEl[El{1}, El{2}]"
Sergey Lyskov's avatar
Sergey Lyskov committed
104

105
106
107
108
    vv_a = m.VectorVectorEl()
    vv_a.append(v_a)
    vv_b = vv_a[0]
    assert str(vv_b) == "VectorEl[El{1}, El{2}]"
Sergey Lyskov's avatar
Sergey Lyskov committed
109
110


111
112
113
114
115
116
117
118
119
120
def test_map_string_double():
    mm = m.MapStringDouble()
    mm['a'] = 1
    mm['b'] = 2.5

    assert list(mm) == ['a', 'b']
    assert list(mm.items()) == [('a', 1), ('b', 2.5)]
    assert str(mm) == "MapStringDouble{a: 1, b: 2.5}"

    um = m.UnorderedMapStringDouble()
Sergey Lyskov's avatar
Sergey Lyskov committed
121
122
123
    um['ua'] = 1.1
    um['ub'] = 2.6

124
125
126
    assert sorted(list(um)) == ['ua', 'ub']
    assert sorted(list(um.items())) == [('ua', 1.1), ('ub', 2.6)]
    assert "UnorderedMapStringDouble" in str(um)
Sergey Lyskov's avatar
Sergey Lyskov committed
127
128
129


def test_map_string_double_const():
130
    mc = m.MapStringDoubleConst()
Sergey Lyskov's avatar
Sergey Lyskov committed
131
132
133
134
    mc['a'] = 10
    mc['b'] = 20.5
    assert str(mc) == "MapStringDoubleConst{a: 10, b: 20.5}"

135
    umc = m.UnorderedMapStringDoubleConst()
Sergey Lyskov's avatar
Sergey Lyskov committed
136
137
138
139
    umc['a'] = 11
    umc['b'] = 21.5

    str(umc)
140

141

142
143
144
def test_noncopyable_containers():
    # std::vector
    vnc = m.get_vnc(5)
145
    for i in range(0, 5):
146
147
148
149
        assert vnc[i].value == i + 1

    for i, j in enumerate(vnc, start=1):
        assert j.value == i
150

151
152
    # std::deque
    dnc = m.get_dnc(5)
153
    for i in range(0, 5):
154
        assert dnc[i].value == i + 1
155
156
157
158
159
160

    i = 1
    for j in dnc:
        assert(j.value == i)
        i += 1

161
162
    # std::map
    mnc = m.get_mnc(5)
163
    for i in range(1, 6):
164
        assert mnc[i].value == 10 * i
165
166
167

    vsum = 0
    for k, v in mnc.items():
168
        assert v.value == 10 * k
169
170
        vsum += v.value

171
172
    assert vsum == 150

173
174
    # std::unordered_map
    mnc = m.get_umnc(5)
175
    for i in range(1, 6):
176
        assert mnc[i].value == 10 * i
177
178
179

    vsum = 0
    for k, v in mnc.items():
180
        assert v.value == 10 * k
181
182
        vsum += v.value

183
    assert vsum == 150
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205


def test_map_delitem():
    mm = m.MapStringDouble()
    mm['a'] = 1
    mm['b'] = 2.5

    assert list(mm) == ['a', 'b']
    assert list(mm.items()) == [('a', 1), ('b', 2.5)]
    del mm['a']
    assert list(mm) == ['b']
    assert list(mm.items()) == [('b', 2.5)]

    um = m.UnorderedMapStringDouble()
    um['ua'] = 1.1
    um['ub'] = 2.6

    assert sorted(list(um)) == ['ua', 'ub']
    assert sorted(list(um.items())) == [('ua', 1.1), ('ub', 2.6)]
    del um['ua']
    assert sorted(list(um)) == ['ub']
    assert sorted(list(um.items())) == [('ub', 2.6)]