-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathtest_angle_validator.py
72 lines (53 loc) · 2.08 KB
/
test_angle_validator.py
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
import pytest
# from ..basevalidators import AngleValidator
from _plotly_utils.basevalidators import AngleValidator
import numpy as np
# Fixtures
# --------
@pytest.fixture
def validator(request):
return AngleValidator("prop", "parent")
@pytest.fixture
def validator_aok(request):
return AngleValidator("prop", "parent", array_ok=True)
# Tests
# -----
# ### Test acceptance ###
@pytest.mark.parametrize("val", [0] + list(np.linspace(-180, 179.99)))
def test_acceptance(val, validator):
assert validator.validate_coerce(val) == val
# ### Test coercion above 180 ###
@pytest.mark.parametrize(
"val,expected",
[(180, -180), (181, -179), (-180.25, 179.75), (540, -180), (-541, 179)],
)
def test_coercion(val, expected, validator):
assert validator.validate_coerce(val) == expected
# ### Test rejection ###
@pytest.mark.parametrize("val", ["hello", (), [], [1, 2, 3], set(), "34"])
def test_rejection(val, validator):
with pytest.raises(ValueError) as validation_failure:
validator.validate_coerce(val)
assert "Invalid value" in str(validation_failure.value)
# ### Test acceptance ###
@pytest.mark.parametrize("val", [[0, 179, -179]])
def test_aok_acceptance(val, validator_aok):
assert validator_aok.validate_coerce(val) == val
assert validator_aok.validate_coerce(tuple(val)) == val
assert np.array_equal(validator_aok.validate_coerce(np.array(val)), np.array(val))
# ### Test coercion above 180 ###
@pytest.mark.parametrize(
"val,expected",
[(180, -180), (181, -179), (-180.25, 179.75), (540, -180), (-541, 179)],
)
def test_aok_coercion(val, expected, validator_aok):
assert validator_aok.validate_coerce([val]) == [expected]
assert np.array_equal(
validator_aok.validate_coerce(np.array([val])), np.array([expected])
)
# ### Test rejection ###
@pytest.mark.parametrize("val", [["hello"], [()], [[]], [set()], ["34"]])
def test_aok_rejection(val, validator_aok):
with pytest.raises(ValueError) as validation_failure:
validator_aok.validate_coerce(val)
assert "Invalid element(s)" in str(validation_failure.value)