summaryrefslogtreecommitdiff
path: root/pint/testsuite/test_testing.py
blob: 3116dd8aa8c0fcbb0be242b409deb51be8a262e9 (plain)
1
2
3
4
5
6
7
8
9
10
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import pytest

from pint import Quantity

from .. import testing

np = pytest.importorskip("numpy")


@pytest.mark.parametrize(
    ["first", "second", "error", "message"],
    (
        pytest.param(
            np.array([0, 1]), np.array([0, 1]), False, "", id="ndarray-None-None-equal"
        ),
        pytest.param(
            Quantity(1, "m"),
            1,
            True,
            "The first is not dimensionless",
            id="mixed1-int-not equal-equal",
        ),
        pytest.param(
            1,
            Quantity(1, "m"),
            True,
            "The second is not dimensionless",
            id="mixed2-int-not equal-equal",
        ),
        pytest.param(
            Quantity(1, "m"), Quantity(1, "m"), False, "", id="Quantity-int-equal-equal"
        ),
        pytest.param(
            Quantity(1, "m"),
            Quantity(1, "s"),
            True,
            "Units are not equal",
            id="Quantity-int-equal-not equal",
        ),
        pytest.param(
            Quantity(1, "m"),
            Quantity(2, "m"),
            True,
            "Magnitudes are not equal",
            id="Quantity-int-not equal-equal",
        ),
        pytest.param(
            Quantity(1, "m"),
            Quantity(2, "s"),
            True,
            "Units are not equal",
            id="Quantity-int-not equal-not equal",
        ),
        pytest.param(
            Quantity(1, "m"),
            Quantity(float("nan"), "m"),
            True,
            "Magnitudes are not equal",
            id="Quantity-float-not equal-equal",
        ),
        pytest.param(
            Quantity([1, 2], "m"),
            Quantity([1, 2], "m"),
            False,
            "",
            id="Quantity-ndarray-equal-equal",
        ),
        pytest.param(
            Quantity([1, 2], "m"),
            Quantity([1, 2], "s"),
            True,
            "Units are not equal",
            id="Quantity-ndarray-equal-not equal",
        ),
        pytest.param(
            Quantity([1, 2], "m"),
            Quantity([2, 2], "m"),
            True,
            "Magnitudes are not equal",
            id="Quantity-ndarray-not equal-equal",
        ),
        pytest.param(
            Quantity([1, 2], "m"),
            Quantity([2, 2], "s"),
            True,
            "Units are not equal",
            id="Quantity-ndarray-not equal-not equal",
        ),
    ),
)
def test_assert_equal(first, second, error, message):
    if error:
        with pytest.raises(AssertionError, match=message):
            testing.assert_equal(first, second)
    else:
        testing.assert_equal(first, second)