test_buffers.py 4.75 KB
Newer Older
1
# -*- coding: utf-8 -*-
2
import io
3
import struct
4
import ctypes
5

Dean Moldovan's avatar
Dean Moldovan committed
6
import pytest
7

8
9
import env  # noqa: F401

10
11
from pybind11_tests import buffers as m
from pybind11_tests import ConstructorStats
Dean Moldovan's avatar
Dean Moldovan committed
12

13
np = pytest.importorskip("numpy")
Dean Moldovan's avatar
Dean Moldovan committed
14
15


Wenzel Jakob's avatar
Wenzel Jakob committed
16
17
def test_from_python():
    with pytest.raises(RuntimeError) as excinfo:
18
        m.Matrix(np.array([1, 2, 3]))  # trying to assign a 1D array
Wenzel Jakob's avatar
Wenzel Jakob committed
19
20
21
    assert str(excinfo.value) == "Incompatible buffer format!"

    m3 = np.array([[1, 2, 3], [4, 5, 6]]).astype(np.float32)
22
    m4 = m.Matrix(m3)
Wenzel Jakob's avatar
Wenzel Jakob committed
23
24
25
26
27

    for i in range(m4.rows()):
        for j in range(m4.cols()):
            assert m3[i, j] == m4[i, j]

28
    cstats = ConstructorStats.get(m.Matrix)
Wenzel Jakob's avatar
Wenzel Jakob committed
29
30
31
32
33
34
35
36
37
38
    assert cstats.alive() == 1
    del m3, m4
    assert cstats.alive() == 0
    assert cstats.values() == ["2x3 matrix"]
    assert cstats.copy_constructions == 0
    # assert cstats.move_constructions >= 0  # Don't invoke any
    assert cstats.copy_assignments == 0
    assert cstats.move_assignments == 0


39
# https://foss.heptapod.net/pypy/pypy/-/issues/2444
Dean Moldovan's avatar
Dean Moldovan committed
40
def test_to_python():
41
42
    mat = m.Matrix(5, 4)
    assert memoryview(mat).shape == (5, 4)
Dean Moldovan's avatar
Dean Moldovan committed
43

44
    assert mat[2, 3] == 0
45
46
    mat[2, 3] = 4.0
    mat[3, 2] = 7.0
47
    assert mat[2, 3] == 4
48
    assert mat[3, 2] == 7
49
50
    assert struct.unpack_from("f", mat, (3 * 4 + 2) * 4) == (7,)
    assert struct.unpack_from("f", mat, (2 * 4 + 3) * 4) == (4,)
Dean Moldovan's avatar
Dean Moldovan committed
51

52
    mat2 = np.array(mat, copy=False)
53
54
55
    assert mat2.shape == (5, 4)
    assert abs(mat2).sum() == 11
    assert mat2[2, 3] == 4 and mat2[3, 2] == 7
56
57
    mat2[2, 3] = 5
    assert mat2[2, 3] == 5
Dean Moldovan's avatar
Dean Moldovan committed
58

59
    cstats = ConstructorStats.get(m.Matrix)
Dean Moldovan's avatar
Dean Moldovan committed
60
    assert cstats.alive() == 1
61
    del mat
Wenzel Jakob's avatar
Wenzel Jakob committed
62
    pytest.gc_collect()
Dean Moldovan's avatar
Dean Moldovan committed
63
    assert cstats.alive() == 1
64
    del mat2  # holds a mat reference
Wenzel Jakob's avatar
Wenzel Jakob committed
65
    pytest.gc_collect()
Dean Moldovan's avatar
Dean Moldovan committed
66
    assert cstats.alive() == 0
67
    assert cstats.values() == ["5x4 matrix"]
Dean Moldovan's avatar
Dean Moldovan committed
68
69
70
71
    assert cstats.copy_constructions == 0
    # assert cstats.move_constructions >= 0  # Don't invoke any
    assert cstats.copy_assignments == 0
    assert cstats.move_assignments == 0
72
73


74
75
76
def test_inherited_protocol():
    """SquareMatrix is derived from Matrix and inherits the buffer protocol"""

77
    matrix = m.SquareMatrix(5)
78
79
80
81
    assert memoryview(matrix).shape == (5, 5)
    assert np.asarray(matrix).shape == (5, 5)


82
83
def test_pointer_to_member_fn():
    for cls in [m.Buffer, m.ConstBuffer, m.DerivedBuffer]:
84
85
        buf = cls()
        buf.value = 0x12345678
86
        value = struct.unpack("i", bytearray(buf))[0]
87
        assert value == 0x12345678
88
89
90
91
92


def test_readonly_buffer():
    buf = m.BufferReadOnly(0x64)
    view = memoryview(buf)
93
    assert view[0] == b"d" if env.PY2 else 0x64
94
95
96
97
98
99
    assert view.readonly


def test_selective_readonly_buffer():
    buf = m.BufferReadOnlySelect()

100
    memoryview(buf)[0] = b"d" if env.PY2 else 0x64
101
102
    assert buf.value == 0x64

103
104
    io.BytesIO(b"A").readinto(buf)
    assert buf.value == ord(b"A")
105
106
107

    buf.readonly = True
    with pytest.raises(TypeError):
108
        memoryview(buf)[0] = b"\0" if env.PY2 else 0
109
    with pytest.raises(TypeError):
110
        io.BytesIO(b"1").readinto(buf)
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162


def test_ctypes_array_1d():
    char1d = (ctypes.c_char * 10)()
    int1d = (ctypes.c_int * 15)()
    long1d = (ctypes.c_long * 7)()

    for carray in (char1d, int1d, long1d):
        info = m.get_buffer_info(carray)
        assert info.itemsize == ctypes.sizeof(carray._type_)
        assert info.size == len(carray)
        assert info.ndim == 1
        assert info.shape == [info.size]
        assert info.strides == [info.itemsize]
        assert not info.readonly


def test_ctypes_array_2d():
    char2d = ((ctypes.c_char * 10) * 4)()
    int2d = ((ctypes.c_int * 15) * 3)()
    long2d = ((ctypes.c_long * 7) * 2)()

    for carray in (char2d, int2d, long2d):
        info = m.get_buffer_info(carray)
        assert info.itemsize == ctypes.sizeof(carray[0]._type_)
        assert info.size == len(carray) * len(carray[0])
        assert info.ndim == 2
        assert info.shape == [len(carray), len(carray[0])]
        assert info.strides == [info.itemsize * len(carray[0]), info.itemsize]
        assert not info.readonly


@pytest.mark.skipif(
    "env.PYPY and env.PY2", reason="PyPy2 bytes buffer not reported as readonly"
)
def test_ctypes_from_buffer():
    test_pystr = b"0123456789"
    for pyarray in (test_pystr, bytearray(test_pystr)):
        pyinfo = m.get_buffer_info(pyarray)

        if pyinfo.readonly:
            cbytes = (ctypes.c_char * len(pyarray)).from_buffer_copy(pyarray)
            cinfo = m.get_buffer_info(cbytes)
        else:
            cbytes = (ctypes.c_char * len(pyarray)).from_buffer(pyarray)
            cinfo = m.get_buffer_info(cbytes)

        assert cinfo.size == pyinfo.size
        assert cinfo.ndim == pyinfo.ndim
        assert cinfo.shape == pyinfo.shape
        assert cinfo.strides == pyinfo.strides
        assert not cinfo.readonly