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.

41 lines
1.6 KiB

  1. def test_operator_overloading():
  2. from pybind11_tests import Vector2, Vector, ConstructorStats
  3. v1 = Vector2(1, 2)
  4. v2 = Vector(3, -1)
  5. assert str(v1) == "[1.000000, 2.000000]"
  6. assert str(v2) == "[3.000000, -1.000000]"
  7. assert str(v1 + v2) == "[4.000000, 1.000000]"
  8. assert str(v1 - v2) == "[-2.000000, 3.000000]"
  9. assert str(v1 - 8) == "[-7.000000, -6.000000]"
  10. assert str(v1 + 8) == "[9.000000, 10.000000]"
  11. assert str(v1 * 8) == "[8.000000, 16.000000]"
  12. assert str(v1 / 8) == "[0.125000, 0.250000]"
  13. assert str(8 - v1) == "[7.000000, 6.000000]"
  14. assert str(8 + v1) == "[9.000000, 10.000000]"
  15. assert str(8 * v1) == "[8.000000, 16.000000]"
  16. assert str(8 / v1) == "[8.000000, 4.000000]"
  17. v1 += v2
  18. v1 *= 2
  19. assert str(v1) == "[8.000000, 2.000000]"
  20. cstats = ConstructorStats.get(Vector2)
  21. assert cstats.alive() == 2
  22. del v1
  23. assert cstats.alive() == 1
  24. del v2
  25. assert cstats.alive() == 0
  26. assert cstats.values() == ['[1.000000, 2.000000]', '[3.000000, -1.000000]',
  27. '[4.000000, 1.000000]', '[-2.000000, 3.000000]',
  28. '[-7.000000, -6.000000]', '[9.000000, 10.000000]',
  29. '[8.000000, 16.000000]', '[0.125000, 0.250000]',
  30. '[7.000000, 6.000000]', '[9.000000, 10.000000]',
  31. '[8.000000, 16.000000]', '[8.000000, 4.000000]']
  32. assert cstats.default_constructions == 0
  33. assert cstats.copy_constructions == 0
  34. assert cstats.move_constructions >= 10
  35. assert cstats.copy_assignments == 0
  36. assert cstats.move_assignments == 0