-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Expand file tree
/
Copy pathtest_lines.py
More file actions
412 lines (322 loc) · 13.4 KB
/
test_lines.py
File metadata and controls
412 lines (322 loc) · 13.4 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
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
"""
Tests specific to the lines module.
"""
import itertools
import platform
from types import SimpleNamespace
from cycler import cycler
import numpy as np
from numpy.testing import assert_array_equal
import pytest
import matplotlib
import matplotlib as mpl
from matplotlib import _path
import matplotlib.lines as mlines
from matplotlib.markers import MarkerStyle
from matplotlib.path import Path
import matplotlib.pyplot as plt
import matplotlib.transforms as mtransforms
from matplotlib.testing.decorators import image_comparison, check_figures_equal
def test_segment_hits():
"""Test a problematic case."""
cx, cy = 553, 902
x, y = np.array([553., 553.]), np.array([95., 947.])
radius = 6.94
assert_array_equal(mlines.segment_hits(cx, cy, x, y, radius), [0])
def test_set_line_coll_dash():
fig, ax = plt.subplots()
np.random.seed(0)
# Testing setting linestyles for line collections.
# This should not produce an error.
ax.contour(np.random.randn(20, 30), linestyles=[(0, (3, 3))])
def test_invalid_line_data():
with pytest.raises(RuntimeError, match='xdata must be'):
mlines.Line2D(0, [])
with pytest.raises(RuntimeError, match='ydata must be'):
mlines.Line2D([], 1)
line = mlines.Line2D([], [])
with pytest.raises(RuntimeError, match='x must be'):
line.set_xdata(0)
with pytest.raises(RuntimeError, match='y must be'):
line.set_ydata(0)
@image_comparison(['line_dashes'], remove_text=True, style='_classic_test', tol=0.003)
def test_line_dashes():
# Tolerance introduced after reordering of floating-point operations
# Remove when regenerating the images
fig, ax = plt.subplots()
ax.plot(range(10), linestyle=(0, (3, 3)), lw=5)
def test_line_colors():
fig, ax = plt.subplots()
ax.plot(range(10), color='none')
ax.plot(range(10), color='r')
ax.plot(range(10), color='.3')
ax.plot(range(10), color=(1, 0, 0, 1))
ax.plot(range(10), color=(1, 0, 0))
fig.canvas.draw()
def test_valid_colors():
line = mlines.Line2D([], [])
with pytest.raises(ValueError):
line.set_color("foobar")
def test_linestyle_variants():
fig, ax = plt.subplots()
for ls in ["-", "solid", "--", "dashed",
"-.", "dashdot", ":", "dotted",
(0, None), (0, ()), (0, []), # gh-22930
]:
ax.plot(range(10), linestyle=ls)
fig.canvas.draw()
def test_valid_linestyles():
line = mlines.Line2D([], [])
with pytest.raises(ValueError):
line.set_linestyle('aardvark')
@mpl.style.context('mpl20')
def test_zero_linewidth_dashed_uses_solid_gc_dashes():
fig, ax = plt.subplots()
ax.plot([0, 1], [0, 1], ls='--', lw=0)
fig.draw_without_rendering()
@image_comparison(['drawstyle_variants.png'], remove_text=True, style='_classic_test',
tol=0 if platform.machine() == 'x86_64' else 0.03)
def test_drawstyle_variants():
fig, axs = plt.subplots(6)
dss = ["default", "steps-mid", "steps-pre", "steps-post", "steps", None]
# We want to check that drawstyles are properly handled even for very long
# lines (for which the subslice optimization is on); however, we need
# to zoom in so that the difference between the drawstyles is actually
# visible.
for ax, ds in zip(axs.flat, dss):
ax.plot(range(2000), drawstyle=ds)
ax.set(xlim=(0, 2), ylim=(0, 2))
@check_figures_equal()
def test_no_subslice_with_transform(fig_ref, fig_test):
ax = fig_ref.add_subplot()
x = np.arange(2000)
ax.plot(x + 2000, x)
ax = fig_test.add_subplot()
t = mtransforms.Affine2D().translate(2000.0, 0.0)
ax.plot(x, x, transform=t+ax.transData)
def test_valid_drawstyles():
line = mlines.Line2D([], [])
with pytest.raises(ValueError):
line.set_drawstyle('foobar')
def test_set_drawstyle():
x = np.linspace(0, 2*np.pi, 10)
y = np.sin(x)
fig, ax = plt.subplots()
line, = ax.plot(x, y)
line.set_drawstyle("steps-pre")
assert len(line.get_path().vertices) == 2*len(x)-1
line.set_drawstyle("default")
assert len(line.get_path().vertices) == len(x)
@image_comparison(['line_collection_dashes'], remove_text=True, style='mpl20',
tol=0 if platform.machine() == 'x86_64' else 0.65)
def test_set_line_coll_dash_image():
fig, ax = plt.subplots()
np.random.seed(0)
ax.contour(np.random.randn(20, 30), linestyles=[(0, (3, 3))])
@image_comparison(['marker_fill_styles.png'], remove_text=True, style='_classic_test')
def test_marker_fill_styles():
colors = itertools.cycle([[0, 0, 1], 'g', '#ff0000', 'c', 'm', 'y',
np.array([0, 0, 0])])
altcolor = 'lightgreen'
y = np.array([1, 1])
x = np.array([0, 9])
fig, ax = plt.subplots()
# This hard-coded list of markers correspond to an earlier iteration of
# MarkerStyle.filled_markers; the value of that attribute has changed but
# we kept the old value here to not regenerate the baseline image.
# Replace with mlines.Line2D.filled_markers when the image is regenerated.
for j, marker in enumerate("ov^<>8sp*hHDdPX"):
for i, fs in enumerate(mlines.Line2D.fillStyles):
color = next(colors)
ax.plot(j * 10 + x, y + i + .5 * (j % 2),
marker=marker,
markersize=20,
markerfacecoloralt=altcolor,
fillstyle=fs,
label=fs,
linewidth=5,
color=color,
markeredgecolor=color,
markeredgewidth=2)
ax.set_ylim(0, 7.5)
ax.set_xlim(-5, 155)
def test_markerfacecolor_fillstyle():
"""Test that markerfacecolor does not override fillstyle='none'."""
l, = plt.plot([1, 3, 2], marker=MarkerStyle('o', fillstyle='none'),
markerfacecolor='red')
assert l.get_fillstyle() == 'none'
assert l.get_markerfacecolor() == 'none'
@image_comparison(['scaled_lines'], style='default')
def test_lw_scaling():
th = np.linspace(0, 32)
fig, ax = plt.subplots()
lins_styles = ['dashed', 'dotted', 'dashdot']
cy = cycler(matplotlib.rcParams['axes.prop_cycle'])
for j, (ls, sty) in enumerate(zip(lins_styles, cy)):
for lw in np.linspace(.5, 10, 10):
ax.plot(th, j*np.ones(50) + .1 * lw, linestyle=ls, lw=lw, **sty)
def test_is_sorted_and_has_non_nan():
assert _path.is_sorted_and_has_non_nan(np.array([1, 2, 3]))
assert _path.is_sorted_and_has_non_nan(np.array([1, np.nan, 3]))
assert not _path.is_sorted_and_has_non_nan([3, 5] + [np.nan] * 100 + [0, 2])
# [2, 256] byteswapped:
assert not _path.is_sorted_and_has_non_nan(np.array([33554432, 65536], ">i4"))
n = 2 * mlines.Line2D._subslice_optim_min_size
plt.plot([np.nan] * n, range(n))
@check_figures_equal()
def test_step_markers(fig_test, fig_ref):
fig_test.subplots().step([0, 1], "-o")
fig_ref.subplots().plot([0, 0, 1], [0, 1, 1], "-o", markevery=[0, 2])
@pytest.mark.parametrize("parent", ["figure", "axes"])
@check_figures_equal()
def test_markevery(fig_test, fig_ref, parent):
np.random.seed(42)
x = np.linspace(0, 1, 14)
y = np.random.rand(len(x))
cases_test = [None, 4, (2, 5), [1, 5, 11],
[0, -1], slice(5, 10, 2),
np.arange(len(x))[y > 0.5],
0.3, (0.3, 0.4)]
cases_ref = ["11111111111111", "10001000100010", "00100001000010",
"01000100000100", "10000000000001", "00000101010000",
"01110001110110", "11011011011110", "01010011011101"]
if parent == "figure":
# float markevery ("relative to axes size") is not supported.
cases_test = cases_test[:-2]
cases_ref = cases_ref[:-2]
def add_test(x, y, *, markevery):
fig_test.add_artist(
mlines.Line2D(x, y, marker="o", markevery=markevery))
def add_ref(x, y, *, markevery):
fig_ref.add_artist(
mlines.Line2D(x, y, marker="o", markevery=markevery))
elif parent == "axes":
axs_test = iter(fig_test.subplots(3, 3).flat)
axs_ref = iter(fig_ref.subplots(3, 3).flat)
def add_test(x, y, *, markevery):
next(axs_test).plot(x, y, "-gD", markevery=markevery)
def add_ref(x, y, *, markevery):
next(axs_ref).plot(x, y, "-gD", markevery=markevery)
for case in cases_test:
add_test(x, y, markevery=case)
for case in cases_ref:
me = np.array(list(case)).astype(int).astype(bool)
add_ref(x, y, markevery=me)
def test_markevery_figure_line_unsupported_relsize():
fig = plt.figure()
fig.add_artist(mlines.Line2D([0, 1], [0, 1], marker="o", markevery=.5))
with pytest.raises(ValueError):
fig.canvas.draw()
def test_marker_as_markerstyle():
fig, ax = plt.subplots()
line, = ax.plot([2, 4, 3], marker=MarkerStyle("D"))
fig.canvas.draw()
assert line.get_marker() == "D"
# continue with smoke tests:
line.set_marker("s")
fig.canvas.draw()
line.set_marker(MarkerStyle("o"))
fig.canvas.draw()
# test Path roundtrip
triangle1 = Path._create_closed([[-1, -1], [1, -1], [0, 2]])
line2, = ax.plot([1, 3, 2], marker=MarkerStyle(triangle1), ms=22)
line3, = ax.plot([0, 2, 1], marker=triangle1, ms=22)
assert_array_equal(line2.get_marker().vertices, triangle1.vertices)
assert_array_equal(line3.get_marker().vertices, triangle1.vertices)
@image_comparison(['striped_line.png'], remove_text=True, style='mpl20')
def test_striped_lines(text_placeholders):
rng = np.random.default_rng(19680801)
_, ax = plt.subplots()
ax.plot(rng.uniform(size=12), color='orange', gapcolor='blue',
linestyle='--', lw=5, label='blue in orange')
ax.plot(rng.uniform(size=12), color='red', gapcolor='black',
linestyle=(0, (2, 5, 4, 2)), lw=5, label='black in red', alpha=0.5)
ax.legend(handlelength=5)
@check_figures_equal()
def test_odd_dashes(fig_test, fig_ref):
fig_test.add_subplot().plot([1, 2], dashes=[1, 2, 3])
fig_ref.add_subplot().plot([1, 2], dashes=[1, 2, 3, 1, 2, 3])
def test_picking():
fig, ax = plt.subplots()
mouse_event = SimpleNamespace(x=fig.bbox.width // 2,
y=fig.bbox.height // 2 + 15)
# Default pickradius is 5, so event should not pick this line.
l0, = ax.plot([0, 1], [0, 1], picker=True)
found, indices = l0.contains(mouse_event)
assert not found
# But with a larger pickradius, this should be picked.
l1, = ax.plot([0, 1], [0, 1], picker=True, pickradius=20)
found, indices = l1.contains(mouse_event)
assert found
assert_array_equal(indices['ind'], [0])
# And if we modify the pickradius after creation, it should work as well.
l2, = ax.plot([0, 1], [0, 1], picker=True)
found, indices = l2.contains(mouse_event)
assert not found
l2.set_pickradius(20)
found, indices = l2.contains(mouse_event)
assert found
assert_array_equal(indices['ind'], [0])
@check_figures_equal()
def test_input_copy(fig_test, fig_ref):
t = np.arange(0, 6, 2)
l, = fig_test.add_subplot().plot(t, t, ".-")
t[:] = range(3)
# Trigger cache invalidation
l.set_drawstyle("steps")
fig_ref.add_subplot().plot([0, 2, 4], [0, 2, 4], ".-", drawstyle="steps")
@check_figures_equal()
def test_markevery_prop_cycle(fig_test, fig_ref):
"""Test that we can set markevery prop_cycle."""
cases = [None, 8, (30, 8), [16, 24, 30], [0, -1],
slice(100, 200, 3), 0.1, 0.3, 1.5,
(0.0, 0.1), (0.45, 0.1)]
cmap = mpl.colormaps['jet']
colors = cmap(np.linspace(0.2, 0.8, len(cases)))
x = np.linspace(-1, 1)
y = 5 * x**2
axs = fig_ref.add_subplot()
for i, markevery in enumerate(cases):
axs.plot(y - i, 'o-', markevery=markevery, color=colors[i])
matplotlib.rcParams['axes.prop_cycle'] = cycler(markevery=cases,
color=colors)
ax = fig_test.add_subplot()
for i, _ in enumerate(cases):
ax.plot(y - i, 'o-')
def test_axline_setters():
fig, ax = plt.subplots()
line1 = ax.axline((.1, .1), slope=0.6)
line2 = ax.axline((.1, .1), (.8, .4))
# Testing xy1, xy2 and slope setters.
# This should not produce an error.
line1.set_xy1((.2, .3))
line1.set_slope(2.4)
line2.set_xy1((.3, .2))
line2.set_xy2((.6, .8))
# Testing xy1, xy2 and slope getters.
# Should return the modified values.
assert line1.get_xy1() == (.2, .3)
assert line1.get_slope() == 2.4
assert line2.get_xy1() == (.3, .2)
assert line2.get_xy2() == (.6, .8)
with pytest.warns(mpl.MatplotlibDeprecationWarning):
line1.set_xy1(.2, .3)
with pytest.warns(mpl.MatplotlibDeprecationWarning):
line2.set_xy2(.6, .8)
# Testing setting xy2 and slope together.
# These test should raise a ValueError
with pytest.raises(ValueError,
match="Cannot set an 'xy2' value while 'slope' is set"):
line1.set_xy2(.2, .3)
with pytest.raises(ValueError,
match="Cannot set a 'slope' value while 'xy2' is set"):
line2.set_slope(3)
def test_axline_small_slope():
"""Test that small slopes are not coerced to zero in the transform."""
line = plt.axline((0, 0), slope=1e-14)
p1 = line.get_transform().transform_point((0, 0))
p2 = line.get_transform().transform_point((1, 1))
# y-values must be slightly different
dy = p2[1] - p1[1]
assert dy > 0
assert dy < 4e-12