You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.6 KiB

  1. import pytest
  2. from pybind11_tests import Matrix, ConstructorStats
  3. with pytest.suppress(ImportError):
  4. import numpy as np
  5. @pytest.requires_numpy
  6. def test_to_python():
  7. m = Matrix(5, 5)
  8. assert m[2, 3] == 0
  9. m[2, 3] = 4
  10. assert m[2, 3] == 4
  11. m2 = np.array(m, copy=False)
  12. assert m2.shape == (5, 5)
  13. assert abs(m2).sum() == 4
  14. assert m2[2, 3] == 4
  15. m2[2, 3] = 5
  16. assert m2[2, 3] == 5
  17. cstats = ConstructorStats.get(Matrix)
  18. assert cstats.alive() == 1
  19. del m
  20. assert cstats.alive() == 1
  21. del m2 # holds an m reference
  22. assert cstats.alive() == 0
  23. assert cstats.values() == ["5x5 matrix"]
  24. assert cstats.copy_constructions == 0
  25. # assert cstats.move_constructions >= 0 # Don't invoke any
  26. assert cstats.copy_assignments == 0
  27. assert cstats.move_assignments == 0
  28. @pytest.requires_numpy
  29. def test_from_python():
  30. with pytest.raises(RuntimeError) as excinfo:
  31. Matrix(np.array([1, 2, 3])) # trying to assign a 1D array
  32. assert str(excinfo.value) == "Incompatible buffer format!"
  33. m3 = np.array([[1, 2, 3], [4, 5, 6]]).astype(np.float32)
  34. m4 = Matrix(m3)
  35. for i in range(m4.rows()):
  36. for j in range(m4.cols()):
  37. assert m3[i, j] == m4[i, j]
  38. cstats = ConstructorStats.get(Matrix)
  39. assert cstats.alive() == 1
  40. del m3, m4
  41. assert cstats.alive() == 0
  42. assert cstats.values() == ["2x3 matrix"]
  43. assert cstats.copy_constructions == 0
  44. # assert cstats.move_constructions >= 0 # Don't invoke any
  45. assert cstats.copy_assignments == 0
  46. assert cstats.move_assignments == 0