-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Expand file tree
/
Copy pathtest_arrow_patches.py
More file actions
221 lines (173 loc) · 7.8 KB
/
test_arrow_patches.py
File metadata and controls
221 lines (173 loc) · 7.8 KB
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
import pytest
import platform
import matplotlib.pyplot as plt
from matplotlib.testing.decorators import image_comparison
import matplotlib.patches as mpatches
def draw_arrow(ax, t, r):
ax.annotate('', xy=(0.5, 0.5 + r), xytext=(0.5, 0.5), size=30,
arrowprops=dict(arrowstyle=t,
fc="b", ec='k'))
@image_comparison(['fancyarrow_test_image.png'], style='_classic_test',
tol=0 if platform.machine() == 'x86_64' else 0.012)
def test_fancyarrow():
# Added 0 to test division by zero error described in issue 3930
r = [0.4, 0.3, 0.2, 0.1, 0]
t = ["fancy", "simple", mpatches.ArrowStyle.Fancy()]
fig, axs = plt.subplots(len(t), len(r), squeeze=False,
figsize=(8, 4.5), subplot_kw=dict(aspect=1))
for i_r, r1 in enumerate(r):
for i_t, t1 in enumerate(t):
ax = axs[i_t, i_r]
draw_arrow(ax, t1, r1)
ax.tick_params(labelleft=False, labelbottom=False)
@image_comparison(['boxarrow_test_image.png'], style='mpl20')
def test_boxarrow():
styles = mpatches.BoxStyle.get_styles()
n = len(styles)
spacing = 1.2
figheight = (n * spacing + .5)
fig = plt.figure(figsize=(4 / 1.5, figheight / 1.5))
fontsize = 0.3 * 72
for i, stylename in enumerate(sorted(styles)):
fig.text(0.5, ((n - i) * spacing - 0.5)/figheight, stylename,
ha="center",
size=fontsize,
transform=fig.transFigure,
bbox=dict(boxstyle=stylename, fc="w", ec="k"))
@image_comparison(['boxarrow_adjustment_test_image.png'], style='mpl20')
def test_boxarrow_adjustment():
styles = ['larrow', 'rarrow', 'darrow']
# Cases [head_width, head_angle] to test for each arrow style
cases = [
[1.5, 90],
[1.5, 170], # Test dynamic padding
[0.75, 30],
[0.5, -10], # Should just give a rectangle
[2, -90],
[2, -15] # None of arrow body is outside of head
]
# Horizontal and vertical spacings of arrow centres
spacing_horizontal = 3.75
spacing_vertical = 1.6
# Numbers of styles and cases
m = len(styles)
n = len(cases)
figwidth = (m * spacing_horizontal)
figheight = (n * spacing_vertical) + .5
fig = plt.figure(figsize=(figwidth / 1.5, figheight / 1.5))
fontsize = 0.3 * 72
for i, stylename in enumerate(styles):
for j, case in enumerate(cases):
# Draw arrow
fig.text(
((m - i) * spacing_horizontal - 1.5) / figwidth,
((n - j) * spacing_vertical - 0.5) / figheight,
stylename, ha='center', va='center',
size=fontsize, transform=fig.transFigure,
bbox=dict(boxstyle=f"{stylename}, head_width={case[0]}, \
head_angle={case[1]}", fc="w", ec="k"))
def __prepare_fancyarrow_dpi_cor_test():
"""
Convenience function that prepares and returns a FancyArrowPatch. It aims
at being used to test that the size of the arrow head does not depend on
the DPI value of the exported picture.
NB: this function *is not* a test in itself!
"""
fig2 = plt.figure("fancyarrow_dpi_cor_test", figsize=(4, 3), dpi=50)
ax = fig2.add_subplot()
ax.set_xlim(0, 1)
ax.set_ylim(0, 1)
ax.add_patch(mpatches.FancyArrowPatch(posA=(0.3, 0.4), posB=(0.8, 0.6),
lw=3, arrowstyle='->',
mutation_scale=100))
return fig2
@image_comparison(['fancyarrow_dpi_cor_100dpi.png'], remove_text=True,
savefig_kwarg=dict(dpi=100), style='_classic_test',
tol=0 if platform.machine() == 'x86_64' else 0.02)
def test_fancyarrow_dpi_cor_100dpi():
"""
Check the export of a FancyArrowPatch @ 100 DPI. FancyArrowPatch is
instantiated through a dedicated function because another similar test
checks a similar export but with a different DPI value.
Remark: test only a rasterized format.
"""
__prepare_fancyarrow_dpi_cor_test()
@image_comparison(['fancyarrow_dpi_cor_200dpi.png'], remove_text=True,
savefig_kwarg=dict(dpi=200), style='_classic_test',
tol=0 if platform.machine() == 'x86_64' else 0.02)
def test_fancyarrow_dpi_cor_200dpi():
"""
As test_fancyarrow_dpi_cor_100dpi, but exports @ 200 DPI. The relative size
of the arrow head should be the same.
"""
__prepare_fancyarrow_dpi_cor_test()
@image_comparison(['fancyarrow_dash.png'], remove_text=True, style='default')
def test_fancyarrow_dash():
fig, ax = plt.subplots()
e = mpatches.FancyArrowPatch((0, 0), (0.5, 0.5),
arrowstyle='-|>',
connectionstyle='angle3,angleA=0,angleB=90',
mutation_scale=10.0,
linewidth=2,
linestyle='dashed',
color='k')
e2 = mpatches.FancyArrowPatch((0, 0), (0.5, 0.5),
arrowstyle='-|>',
connectionstyle='angle3',
mutation_scale=10.0,
linewidth=2,
linestyle='dotted',
color='k')
ax.add_patch(e)
ax.add_patch(e2)
@image_comparison(['arrow_styles.png'], style='mpl20', remove_text=True,
tol=0 if platform.machine() == 'x86_64' else 0.02)
def test_arrow_styles():
styles = mpatches.ArrowStyle.get_styles()
n = len(styles)
fig, ax = plt.subplots(figsize=(8, 8))
ax.set_xlim(0, 1)
ax.set_ylim(-1, n)
fig.subplots_adjust(left=0, right=1, bottom=0, top=1)
for i, stylename in enumerate(sorted(styles)):
patch = mpatches.FancyArrowPatch((0.1 + (i % 2)*0.05, i),
(0.45 + (i % 2)*0.05, i),
arrowstyle=stylename,
mutation_scale=25)
ax.add_patch(patch)
for i, stylename in enumerate([']-[', ']-', '-[', '|-|']):
style = stylename
if stylename[0] != '-':
style += ',angleA=ANGLE'
if stylename[-1] != '-':
style += ',angleB=ANGLE'
for j, angle in enumerate([-30, 60]):
arrowstyle = style.replace('ANGLE', str(angle))
patch = mpatches.FancyArrowPatch((0.55, 2*i + j), (0.9, 2*i + j),
arrowstyle=arrowstyle,
mutation_scale=25)
ax.add_patch(patch)
@image_comparison(['connection_styles.png'], style='mpl20', remove_text=True,
tol=0 if platform.machine() == 'x86_64' else 0.013)
def test_connection_styles():
styles = mpatches.ConnectionStyle.get_styles()
n = len(styles)
fig, ax = plt.subplots(figsize=(6, 10))
ax.set_xlim(0, 1)
ax.set_ylim(-1, n)
for i, stylename in enumerate(sorted(styles)):
patch = mpatches.FancyArrowPatch((0.1, i), (0.8, i + 0.5),
arrowstyle="->",
connectionstyle=stylename,
mutation_scale=25)
ax.add_patch(patch)
def test_invalid_intersection():
conn_style_1 = mpatches.ConnectionStyle.Angle3(angleA=20, angleB=200)
p1 = mpatches.FancyArrowPatch((.2, .2), (.5, .5),
connectionstyle=conn_style_1)
with pytest.raises(ValueError):
plt.gca().add_patch(p1)
conn_style_2 = mpatches.ConnectionStyle.Angle3(angleA=20, angleB=199.9)
p2 = mpatches.FancyArrowPatch((.2, .2), (.5, .5),
connectionstyle=conn_style_2)
plt.gca().add_patch(p2)