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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
"""Tests for text objects"""
from __future__ import annotations
from pathlib import Path
import numpy as np
import pytest
import pyvista as pv
@pytest.fixture
def corner_annotation():
return pv.CornerAnnotation(0, 'text')
def test_corner_annotation_text(corner_annotation):
corner_annotation.set_text(1, 'text1')
assert corner_annotation.get_text(1) == 'text1'
def test_corner_annotation_prop(corner_annotation):
prop = corner_annotation.prop
assert isinstance(prop, pv.TextProperty)
def test_corner_annotation_name():
corner = pv.CornerAnnotation('top', 'abc', name='corner')
assert corner.name == 'corner'
@pytest.fixture
def text():
return pv.Text()
def test_text_input(text):
text.input = 'input'
assert text.input == 'input'
def test_text_prop(text):
prop = text.prop
assert isinstance(prop, pv.TextProperty)
def test_text_position(text):
position = np.random.default_rng().random(2)
text.position = position
assert np.all(text.position == position)
def test_text_name():
text = pv.Text('abc', name='text')
assert text.name == 'text'
def test_label():
label = pv.Label('text', (1, 2, 3), size=42, prop=pv.Property())
assert label.input == 'text'
label.input = 'new'
assert label.input == 'new'
assert label.position == (1, 2, 3)
label.position = (4, 5, 6)
assert label.position == (4, 5, 6)
assert label.size == 42
label.size = 99
assert label.size == 99
def test_label_name():
label = pv.Label('abc', name='label')
assert label.name == 'label'
def test_label_prop3d():
position = (1.0, 2.0, 3.0)
label = pv.Label(position=position)
bounds = (1.0, 1.0, 2.0, 2.0, 3.0, 3.0)
assert label.bounds == bounds
assert label.center == position
assert label.length == 0.0
# Test correct bounds with more complex transformations
# Add offset along x-axis
offset = 100
label.relative_position = (offset, 0, 0)
# Rotate about z-axis
label.orientation = (0, 0, 90)
# Expect offset to be applied along y-axis (due to the rotation)
bounds = (
position[0],
position[0],
position[1] + offset,
position[1] + offset,
position[2],
position[2],
)
assert np.allclose(label.bounds, bounds)
def test_label_relative_position():
label = pv.Label()
position = (1, 2, 3)
label.position = position
assert label.position == position
assert label._prop3d.position == position
assert label._label_position == position
relative_position = np.array(position) * -1
label.relative_position = relative_position
assert label.position == position
assert label._prop3d.position == position
assert label._label_position == tuple((position + relative_position).tolist())
@pytest.fixture
def prop():
return pv.TextProperty()
def test_property_init():
prop = pv.TextProperty()
# copy but equal
assert prop._theme is not pv.global_theme
assert prop._theme == pv.global_theme
def test_property_color(prop):
prop.color = 'b'
assert prop.color == 'b'
def test_property_opacity(prop):
opacity = 0.5
prop.opacity = opacity
assert prop.opacity == opacity
with pytest.raises(ValueError): # noqa: PT011
prop.opacity = 2
def test_property_background_color(prop):
prop.background_color = 'b'
assert prop.background_color.float_rgb == (0, 0, 1)
def test_property_background_opacity(prop):
background_opacity = 0.5
prop.background_opacity = background_opacity
assert prop.background_opacity == background_opacity
with pytest.raises(ValueError): # noqa: PT011
prop.background_opacity = 2
def test_property_show_frame(prop):
value = False
prop.show_frame = value
assert prop.show_frame == value
def test_property_frame_color(prop):
prop.frame_color = 'b'
assert prop.frame_color.float_rgb == (0, 0, 1)
def test_property_frame_width(prop):
assert isinstance(prop.frame_width, int)
value = 10
prop.frame_width = value
assert prop.frame_width == value
def test_property_font_family(prop):
prop.font_family = 'arial'
assert prop.font_family == 'arial'
def test_property_font_size(prop):
assert isinstance(prop.font_size, int)
value = 10
prop.font_size = value
assert prop.font_size == value
def test_property_enable_shadow(prop):
prop.enable_shadow()
assert prop.GetShadow() == 1
def test_property_orientation(prop):
prop.orientation = 90.0
assert prop.orientation == 90.0
def test_property_set_font_file(prop):
font_file = str(Path(__file__).parent / 'fonts/Mplus2-Regular.ttf')
prop.set_font_file(font_file)
with pytest.raises(FileNotFoundError):
prop.set_font_file('foo.ttf')
@pytest.mark.parametrize(
'justification',
[('left', 'left'), ('center', 'centered'), ('right', 'right')],
)
def test_property_justification_horizontal(prop, justification):
prop.justification_horizontal = justification[0]
assert prop.GetJustificationAsString().lower() == justification[1]
assert prop.justification_horizontal == justification[0]
prop = pv.TextProperty(justification_horizontal=justification[0])
assert prop.GetJustificationAsString().lower() == justification[1]
assert prop.justification_horizontal == justification[0]
@pytest.mark.parametrize(
'justification',
[('bottom', 'bottom'), ('center', 'centered'), ('top', 'top')],
)
def test_property_justification_vertical(prop, justification):
prop.justification_vertical = justification[0]
assert prop.GetVerticalJustificationAsString().lower() == justification[1]
assert prop.justification_vertical == justification[0]
prop = pv.TextProperty(justification_vertical=justification[0])
assert prop.GetVerticalJustificationAsString().lower() == justification[1]
assert prop.justification_vertical == justification[0]
def test_property_justification_invalid(prop):
with pytest.raises(ValueError): # noqa: PT011
prop.justification_horizontal = 'invalid'
with pytest.raises(ValueError): # noqa: PT011
prop.justification_vertical = 'invalid'
@pytest.mark.parametrize('italic', [True, False])
def test_property_italic(prop, italic):
prop.italic = italic
assert prop.GetItalic() == italic
assert prop.italic == italic
@pytest.mark.parametrize('bold', [True, False])
def test_property_bold(prop, bold):
prop.bold = bold
assert prop.GetBold() == bold
assert prop.bold == bold
@pytest.mark.parametrize('italic', [True, False])
@pytest.mark.parametrize('bold', [True, False])
def test_property_shallow_copy(prop, italic, bold):
prop.italic = italic
prop.bold = bold
text_prop = pv.TextProperty()
text_prop.shallow_copy(prop)
assert text_prop.bold == prop.bold
|