test_buffers.py 2.03 KB
Newer Older
1
import struct
Dean Moldovan's avatar
Dean Moldovan committed
2
import pytest
3
from pybind11_tests import Matrix, ConstructorStats, PTMFBuffer, ConstPTMFBuffer, DerivedPTMFBuffer
Dean Moldovan's avatar
Dean Moldovan committed
4

5
6
pytestmark = pytest.requires_numpy

Dean Moldovan's avatar
Dean Moldovan committed
7
8
9
10
with pytest.suppress(ImportError):
    import numpy as np


Wenzel Jakob's avatar
Wenzel Jakob committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
def test_from_python():
    with pytest.raises(RuntimeError) as excinfo:
        Matrix(np.array([1, 2, 3]))  # trying to assign a 1D array
    assert str(excinfo.value) == "Incompatible buffer format!"

    m3 = np.array([[1, 2, 3], [4, 5, 6]]).astype(np.float32)
    m4 = Matrix(m3)

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

    cstats = ConstructorStats.get(Matrix)
    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


# PyPy: Memory leak in the "np.array(m, copy=False)" call
# https://bitbucket.org/pypy/pypy/issues/2444
@pytest.unsupported_on_pypy
Dean Moldovan's avatar
Dean Moldovan committed
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
def test_to_python():
    m = Matrix(5, 5)

    assert m[2, 3] == 0
    m[2, 3] = 4
    assert m[2, 3] == 4

    m2 = np.array(m, copy=False)
    assert m2.shape == (5, 5)
    assert abs(m2).sum() == 4
    assert m2[2, 3] == 4
    m2[2, 3] = 5
    assert m2[2, 3] == 5

    cstats = ConstructorStats.get(Matrix)
    assert cstats.alive() == 1
    del m
Wenzel Jakob's avatar
Wenzel Jakob committed
54
    pytest.gc_collect()
Dean Moldovan's avatar
Dean Moldovan committed
55
56
    assert cstats.alive() == 1
    del m2  # holds an m reference
Wenzel Jakob's avatar
Wenzel Jakob committed
57
    pytest.gc_collect()
Dean Moldovan's avatar
Dean Moldovan committed
58
59
60
61
62
63
    assert cstats.alive() == 0
    assert cstats.values() == ["5x5 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
64
65
66
67
68
69
70
71
72


@pytest.unsupported_on_pypy
def test_ptmf():
    for cls in [PTMFBuffer, ConstPTMFBuffer, DerivedPTMFBuffer]:
        buf = cls()
        buf.value = 0x12345678
        value = struct.unpack('i', bytearray(buf))[0]
        assert value == 0x12345678