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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
from __future__ import annotations
import pytest
import pyvista as pv
from pyvista.plotting._property import _check_range
@pytest.fixture()
def prop():
return pv.Property()
def test_check_range():
with pytest.raises(ValueError, match="outside the acceptable"):
_check_range(-1, (0, 1), 'parm')
with pytest.raises(ValueError, match="outside the acceptable"):
_check_range(2, (0, 1), 'parm')
assert _check_range(0, (0, 1), 'parm') is None
def test_property_init():
prop = pv.Property()
# copy but equal
assert prop._theme is not pv.global_theme
assert prop._theme == pv.global_theme
def test_property_style(prop):
style = 'Surface'
prop.style = style
assert prop.style == style
def test_property_edge_color(prop):
prop.edge_color = 'b'
assert prop.edge_color.float_rgb == (0, 0, 1)
def test_property_opacity(prop):
opacity = 0.5
prop.opacity = opacity
assert prop.opacity == opacity
with pytest.raises(ValueError): # noqa: PT011
prop.opacity = 2
@pytest.mark.skipif(pv.vtk_version_info < (9, 3), reason="Functions not implemented before 9.3.X")
def test_property_edge_opacity(prop):
edge_opacity = 0.5
prop.edge_opacity = edge_opacity
assert prop.edge_opacity == edge_opacity
with pytest.raises(ValueError): # noqa: PT011
prop.edge_opacity = 2
def test_property_show_edges(prop):
value = False
prop.show_edges = value
assert prop.show_edges == value
def test_property_lighting(prop):
value = False
prop.lighting = value
assert prop.lighting == value
def test_property_ambient(prop):
value = 0.45
prop.ambient = value
assert prop.ambient == value
with pytest.raises(ValueError): # noqa: PT011
prop.ambient = -1
def test_property_diffuse(prop):
value = 0.5
prop.diffuse = value
assert prop.diffuse == value
with pytest.raises(ValueError): # noqa: PT011
prop.diffuse = 2
def test_property_specular(prop):
value = 0.5
prop.specular = value
assert prop.specular == value
with pytest.raises(ValueError): # noqa: PT011
prop.specular = 2
def test_property_specular_power(prop):
value = 0.5
prop.specular_power = value
assert prop.specular_power == value
with pytest.raises(ValueError): # noqa: PT011
prop.specular = 200
def test_property_metallic(prop):
value = 0.1
prop.metallic = value
assert prop.metallic == value
with pytest.raises(ValueError): # noqa: PT011
prop.metallic = -1
def test_property_roughness(prop):
value = 0.1
prop.roughness = value
assert prop.roughness == value
def test_property_interpolation(prop):
value = 'Gouraud'
prop.interpolation = value
assert prop.interpolation == pv.opts.InterpolationType.from_any(value)
with pytest.raises(ValueError, match='InterpolationType has no value matching'):
prop.interpolation = 'foo'
def test_property_render_points_as_spheres(prop):
value = True
prop.render_points_as_spheres = value
assert prop.render_points_as_spheres is value
def test_property_render_lines_as_tubes(prop):
value = True
prop.render_lines_as_tubes = value
assert prop.render_lines_as_tubes is value
def test_property_point_size(prop):
value = 10.0
prop.point_size = value
assert prop.point_size == value
def test_property_line_width(prop):
assert isinstance(prop.line_width, float)
value = 10.0
prop.line_width = value
assert prop.line_width == value
@pytest.mark.parametrize("value", ['back', 'front', 'none'])
def test_property_culling(prop, value):
prop.culling = value
assert prop.culling == value
with pytest.raises(ValueError, match='Invalid culling'):
prop.culling = 'foo'
def test_property_diffuse_color(prop):
prop.diffuse_color = 'b'
assert prop.diffuse_color.float_rgb == (0, 0, 1)
def test_property_ambient_color(prop):
prop.ambient_color = 'b'
assert prop.ambient_color.float_rgb == (0, 0, 1)
def test_property_specular_color(prop):
prop.specular_color = 'b'
assert prop.specular_color.float_rgb == (0, 0, 1)
def test_property_anisotropy(prop):
value = 0.1
if pv.vtk_version_info < (9, 1, 0):
with pytest.raises(pv.core.errors.VTKVersionError):
prop.anisotropy = value
return
assert isinstance(prop.anisotropy, float)
prop.anisotropy = value
assert prop.anisotropy == value
|