pyodide/packages/matplotlib/test_matplotlib.py

600 lines
21 KiB
Python
Raw Normal View History

import pytest
import os
import pathlib
from selenium.webdriver.support.wait import WebDriverWait
ROOT_PATH = pathlib.Path(__file__).resolve().parents[2]
TEST_PATH = ROOT_PATH / "packages" / "matplotlib" / "reference-images"
TARGET_PATH = ROOT_PATH / "build" / "matplotlib-test"
def get_backend(selenium_standalone):
selenium = selenium_standalone
return selenium.run(
"""
2021-07-20 08:48:27 +00:00
import matplotlib
matplotlib.get_backend()
"""
)
def get_canvas_data(selenium, prefix):
import base64
canvas_tag_property = "//canvas[starts-with(@id, 'matplotlib')]"
canvas_element = selenium.driver.find_element_by_xpath(canvas_tag_property)
img_script = "return arguments[0].toDataURL('image/png').substring(21)"
canvas_base64 = selenium.driver.execute_script(img_script, canvas_element)
canvas_png = base64.b64decode(canvas_base64)
2022-02-20 22:13:37 +00:00
with open(rf"{TEST_PATH}/{prefix}-{selenium.browser}.png", "wb") as f:
f.write(canvas_png)
def check_comparison(selenium, prefix, num_fonts):
font_wait = WebDriverWait(selenium.driver, timeout=70)
font_wait.until(FontsLoaded(num_fonts))
# If we don't have a reference image, write one to disk
2022-02-20 22:13:37 +00:00
if not os.path.isfile(f"{TEST_PATH}/{prefix}-{selenium.browser}.png"):
get_canvas_data(selenium, prefix)
selenium.run(
f"""
url = 'http://{selenium.server_hostname}:{selenium.server_port}/matplotlib-test/{prefix}-{selenium.browser}.png'
threshold = 0
plt.gcf().canvas.compare_reference_image(url, threshold)
"""
)
wait = WebDriverWait(selenium.driver, timeout=70)
wait.until(ResultLoaded())
assert selenium.run("window.deviation") == 0
assert selenium.run("window.result") is True
@pytest.mark.skip_refcount_check
2021-06-07 07:23:47 +00:00
@pytest.mark.skip_pyproxy_check
2021-07-20 08:48:27 +00:00
def test_matplotlib(selenium):
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
2018-05-17 15:57:39 +00:00
selenium.load_package("matplotlib")
selenium.run(
"""
from matplotlib import pyplot as plt
plt.figure()
plt.plot([1,2,3])
plt.show()
"""
)
2018-05-21 18:15:50 +00:00
@pytest.mark.skip_refcount_check
2021-06-07 07:23:47 +00:00
@pytest.mark.skip_pyproxy_check
2018-05-21 18:15:50 +00:00
def test_svg(selenium):
2021-07-20 08:48:27 +00:00
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
2018-05-21 18:15:50 +00:00
selenium.load_package("matplotlib")
selenium.run("from matplotlib import pyplot as plt")
selenium.run("plt.figure(); pass")
2018-05-21 18:15:50 +00:00
selenium.run("x = plt.plot([1,2,3])")
selenium.run("import io")
selenium.run("fd = io.BytesIO()")
selenium.run("plt.savefig(fd, format='svg')")
content = selenium.run("fd.getvalue().decode('utf8')")
assert len(content) == 16283
2018-05-21 18:15:50 +00:00
assert content.startswith("<?xml")
2021-06-07 07:23:47 +00:00
@pytest.mark.skip_pyproxy_check
def test_pdf(selenium):
2021-07-20 08:48:27 +00:00
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
selenium.load_package("matplotlib")
selenium.run("from matplotlib import pyplot as plt")
selenium.run("plt.figure(); pass")
selenium.run("x = plt.plot([1,2,3])")
selenium.run("import io")
selenium.run("fd = io.BytesIO()")
2019-01-28 16:04:52 +00:00
selenium.run("plt.savefig(fd, format='pdf')")
def test_font_manager(selenium):
"""
Comparing vendored fontlist.json version with the one built
by font_manager.py.
If you try to update Matplotlib and this test fails, try to
update fontlist.json.
"""
selenium.load_package("matplotlib")
selenium.run(
"""
from matplotlib import font_manager as fm
import os
import json
# get fontlist form file
fontist_file = os.path.join(os.path.dirname(fm.__file__), 'fontlist.json')
with open(fontist_file) as f:
fontlist_vendor = json.loads(f.read())
# get fontlist from build
fontlist_built = json.loads(json.dumps(fm.FontManager(), cls=fm._JSONEncoder))
# reodering list to compare
for list in ('afmlist', 'ttflist'):
for fontlist in (fontlist_vendor, fontlist_built):
fontlist[list].sort(key=lambda x: x['fname'])
"""
)
assert selenium.run("fontlist_built == fontlist_vendor")
@pytest.mark.skip_refcount_check
@pytest.mark.skip_pyproxy_check
2021-07-20 08:48:27 +00:00
def test_rendering(selenium):
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
selenium.load_package("matplotlib")
if get_backend(selenium) == "module://matplotlib.backends.wasm_backend":
pytest.skip(
"test supported only for html5 canvas backend. wasm backend is currently used"
)
else:
TARGET_PATH.symlink_to(TEST_PATH, True)
try:
selenium.run(
"""
from js import window
window.testing = True
from matplotlib import pyplot as plt
import numpy as np
t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2 * np.pi * t)
plt.figure()
plt.plot(t, s, linewidth=1.0, marker=11)
plt.plot(t, t)
plt.grid(True)
plt.show()
"""
)
check_comparison(selenium, "canvas", 1)
finally:
TARGET_PATH.unlink()
@pytest.mark.skip_refcount_check
@pytest.mark.skip_pyproxy_check
2021-07-20 08:48:27 +00:00
def test_draw_image(selenium):
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
selenium.load_package("matplotlib")
if get_backend(selenium) == "module://matplotlib.backends.wasm_backend":
pytest.skip(
"test supported only for html5 canvas backend. wasm backend is currently used"
)
else:
TARGET_PATH.symlink_to(TEST_PATH, True)
try:
selenium.run(
"""
from js import window
window.testing = True
import numpy as np
import matplotlib.cm as cm
import matplotlib.pyplot as plt
import matplotlib.cbook as cbook
from matplotlib.path import Path
from matplotlib.patches import PathPatch
delta = 0.025
x = y = np.arange(-3.0, 3.0, delta)
X, Y = np.meshgrid(x, y)
Z1 = np.exp(-X**2 - Y**2)
Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)
Z = (Z1 - Z2) * 2
plt.figure()
plt.imshow(Z, interpolation='bilinear', cmap=cm.RdYlGn,
origin='lower', extent=[-3, 3, -3, 3],
vmax=abs(Z).max(), vmin=-abs(Z).max())
plt.show()
"""
)
check_comparison(selenium, "canvas-image", 1)
finally:
TARGET_PATH.unlink()
@pytest.mark.skip_refcount_check
@pytest.mark.skip_pyproxy_check
2021-07-20 08:48:27 +00:00
def test_draw_image_affine_transform(selenium):
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
selenium.load_package("matplotlib")
if get_backend(selenium) == "module://matplotlib.backends.wasm_backend":
pytest.skip(
"test supported only for html5 canvas backend. wasm backend is currently used"
)
else:
TARGET_PATH.symlink_to(TEST_PATH, True)
try:
selenium.run(
"""
from js import window
window.testing = True
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.transforms as mtransforms
def get_image():
delta = 0.25
x = y = np.arange(-3.0, 3.0, delta)
X, Y = np.meshgrid(x, y)
Z1 = np.exp(-X**2 - Y**2)
Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)
Z = (Z1 - Z2)
return Z
def do_plot(ax, Z, transform):
im = ax.imshow(Z, interpolation='none',
origin='lower',
extent=[-2, 4, -3, 2], clip_on=True)
trans_data = transform + ax.transData
im.set_transform(trans_data)
# display intended extent of the image
x1, x2, y1, y2 = im.get_extent()
ax.plot([x1, x2, x2, x1, x1], [y1, y1, y2, y2, y1], "y--",
transform=trans_data)
ax.set_xlim(-5, 5)
ax.set_ylim(-4, 4)
# prepare image and figure
fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)
Z = get_image()
# image rotation
do_plot(ax1, Z, mtransforms.Affine2D().rotate_deg(30))
# image skew
do_plot(ax2, Z, mtransforms.Affine2D().skew_deg(30, 15))
# scale and reflection
do_plot(ax3, Z, mtransforms.Affine2D().scale(-1, .5))
# everything and a translation
do_plot(ax4, Z, mtransforms.Affine2D().
rotate_deg(30).skew_deg(30, 15).scale(-1, .5).translate(.5, -1))
plt.show()
"""
)
check_comparison(selenium, "canvas-image-affine", 1)
finally:
TARGET_PATH.unlink()
@pytest.mark.skip_refcount_check
@pytest.mark.skip_pyproxy_check
2021-07-20 08:48:27 +00:00
def test_draw_text_rotated(selenium):
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
if selenium.browser == "chrome":
pytest.xfail(f"high recursion limit not supported for {selenium.browser}")
selenium.load_package("matplotlib")
if get_backend(selenium) == "module://matplotlib.backends.wasm_backend":
pytest.skip(
"test supported only for html5 canvas backend. wasm backend is currently used"
)
else:
TARGET_PATH.symlink_to(TEST_PATH, True)
try:
selenium.run(
"""
from js import window
window.testing = True
import matplotlib.pyplot as plt
from matplotlib.dates import (
YEARLY, DateFormatter,
rrulewrapper, RRuleLocator,
drange)
import numpy as np
import datetime
# tick every 5th easter
np.random.seed(42)
rule = rrulewrapper(YEARLY, byeaster=1, interval=5)
loc = RRuleLocator(rule)
formatter = DateFormatter('%m/%d/%y')
date1 = datetime.date(1952, 1, 1)
date2 = datetime.date(2004, 4, 12)
delta = datetime.timedelta(days=100)
dates = drange(date1, date2, delta)
s = np.random.rand(len(dates)) # make up some random y values
fig, ax = plt.subplots()
plt.plot_date(dates, s)
ax.xaxis.set_major_locator(loc)
ax.xaxis.set_major_formatter(formatter)
labels = ax.get_xticklabels()
plt.setp(labels, rotation=30, fontsize=10)
plt.show()
"""
)
check_comparison(selenium, "canvas-text-rotated", 1)
finally:
TARGET_PATH.unlink()
@pytest.mark.skip_refcount_check
@pytest.mark.skip_pyproxy_check
2021-07-20 08:48:27 +00:00
def test_draw_math_text(selenium):
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
if selenium.browser == "chrome":
pytest.xfail(f"high recursion limit not supported for {selenium.browser}")
selenium.load_package("matplotlib")
if get_backend(selenium) == "module://matplotlib.backends.wasm_backend":
pytest.skip(
"test supported only for html5 canvas backend. wasm backend is currently used"
)
else:
TARGET_PATH.symlink_to(TEST_PATH, True)
try:
selenium.run(
r"""
from js import window
window.testing = True
import matplotlib.pyplot as plt
import sys
import re
# Selection of features following
# "Writing mathematical expressions" tutorial
mathtext_titles = {
0: "Header demo",
1: "Subscripts and superscripts",
2: "Fractions, binomials and stacked numbers",
3: "Radicals",
4: "Fonts",
5: "Accents",
6: "Greek, Hebrew",
7: "Delimiters, functions and Symbols"}
n_lines = len(mathtext_titles)
# Randomly picked examples
mathext_demos = {
0: r"$W^{3\beta}_{\delta_1 \rho_1 \sigma_2} = "
r"U^{3\beta}_{\delta_1 \rho_1} + \frac{1}{8 \pi 2} "
r"\int^{\alpha_2}_{\alpha_2} d \alpha^\prime_2 \left[\frac{ "
r"U^{2\beta}_{\delta_1 \rho_1} - \alpha^\prime_2U^{1\beta}_"
r"{\rho_1 \sigma_2} }{U^{0\beta}_{\rho_1 \sigma_2}}\right]$",
1: r"$\alpha_i > \beta_i,\ "
r"\alpha_{i+1}^j = {\rm sin}(2\pi f_j t_i) e^{-5 t_i/\tau},\ "
r"\ldots$",
2: r"$\frac{3}{4},\ \binom{3}{4},\ \genfrac{}{}{0}{}{3}{4},\ "
r"\left(\frac{5 - \frac{1}{x}}{4}\right),\ \ldots$",
3: r"$\sqrt{2},\ \sqrt[3]{x},\ \ldots$",
4: r"$\mathrm{Roman}\ , \ \mathit{Italic}\ , \ \mathtt{Typewriter} \ "
r"\mathrm{or}\ \mathcal{CALLIGRAPHY}$",
5: r"$\acute a,\ \bar a,\ \breve a,\ \dot a,\ \ddot a, \ \grave a, \ "
r"\hat a,\ \tilde a,\ \vec a,\ \widehat{xyz},\ \widetilde{xyz},\ "
r"\ldots$",
6: r"$\alpha,\ \beta,\ \chi,\ \delta,\ \lambda,\ \mu,\ "
r"\Delta,\ \Gamma,\ \Omega,\ \Phi,\ \Pi,\ \Upsilon,\ \nabla,\ "
r"\aleph,\ \beth,\ \daleth,\ \gimel,\ \ldots$",
7: r"$\coprod,\ \int,\ \oint,\ \prod,\ \sum,\ "
r"\log,\ \sin,\ \approx,\ \oplus,\ \star,\ \varpropto,\ "
r"\infty,\ \partial,\ \Re,\ \leftrightsquigarrow, \ \ldots$"}
def doall():
# Colors used in mpl online documentation.
mpl_blue_rvb = (191. / 255., 209. / 256., 212. / 255.)
mpl_orange_rvb = (202. / 255., 121. / 256., 0. / 255.)
mpl_grey_rvb = (51. / 255., 51. / 255., 51. / 255.)
# Creating figure and axis.
plt.figure(figsize=(6, 7))
plt.axes([0.01, 0.01, 0.98, 0.90], facecolor="white", frameon=True)
plt.gca().set_xlim(0., 1.)
plt.gca().set_ylim(0., 1.)
plt.gca().set_title("Matplotlib's math rendering engine",
color=mpl_grey_rvb, fontsize=14, weight='bold')
plt.gca().set_xticklabels("", visible=False)
plt.gca().set_yticklabels("", visible=False)
# Gap between lines in axes coords
line_axesfrac = (1. / (n_lines))
# Plotting header demonstration formula
full_demo = mathext_demos[0]
plt.annotate(full_demo,
xy=(0.5, 1. - 0.59 * line_axesfrac),
color=mpl_orange_rvb, ha='center', fontsize=20)
# Plotting features demonstration formulae
for i_line in range(1, n_lines):
baseline = 1 - (i_line) * line_axesfrac
baseline_next = baseline - line_axesfrac
title = mathtext_titles[i_line] + ":"
fill_color = ['white', mpl_blue_rvb][i_line % 2]
plt.fill_between([0., 1.], [baseline, baseline],
[baseline_next, baseline_next],
color=fill_color, alpha=0.5)
plt.annotate(title,
xy=(0.07, baseline - 0.3 * line_axesfrac),
color=mpl_grey_rvb, weight='bold')
demo = mathext_demos[i_line]
plt.annotate(demo,
xy=(0.05, baseline - 0.75 * line_axesfrac),
color=mpl_grey_rvb, fontsize=16)
for i in range(n_lines):
s = mathext_demos[i]
print(i, s)
plt.show()
doall()
"""
)
check_comparison(selenium, "canvas-math-text", 1)
finally:
TARGET_PATH.unlink()
@pytest.mark.skip_refcount_check
@pytest.mark.skip_pyproxy_check
2021-07-20 08:48:27 +00:00
def test_custom_font_text(selenium):
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
selenium.load_package("matplotlib")
if get_backend(selenium) == "module://matplotlib.backends.wasm_backend":
pytest.skip(
"test supported only for html5 canvas backend. wasm backend is currently used"
)
else:
TARGET_PATH.symlink_to(TEST_PATH, True)
try:
selenium.run(
"""
2021-07-20 08:48:27 +00:00
from js import window
window.testing = True
import matplotlib.pyplot as plt
import numpy as np
f = {'fontname': 'cmsy10'}
t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2 * np.pi * t)
plt.figure()
plt.title('A simple Sine Curve', **f)
plt.plot(t, s, linewidth=1.0, marker=11)
plt.plot(t, t)
plt.grid(True)
plt.show()
"""
)
check_comparison(selenium, "canvas-custom-font-text", 2)
finally:
TARGET_PATH.unlink()
@pytest.mark.skip_refcount_check
@pytest.mark.skip_pyproxy_check
2021-07-20 08:48:27 +00:00
def test_zoom_on_polar_plot(selenium):
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
selenium.load_package("matplotlib")
if get_backend(selenium) == "module://matplotlib.backends.wasm_backend":
pytest.skip(
"test supported only for html5 canvas backend. wasm backend is currently used"
)
else:
TARGET_PATH.symlink_to(TEST_PATH, True)
try:
selenium.run(
"""
2021-07-20 08:48:27 +00:00
from js import window
window.testing = True
2021-07-20 08:48:27 +00:00
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(42)
2021-07-20 08:48:27 +00:00
# Compute pie slices
N = 20
theta = np.linspace(0.0, 2 * np.pi, N, endpoint=False)
radii = 10 * np.random.rand(N)
width = np.pi / 4 * np.random.rand(N)
2021-07-20 08:48:27 +00:00
ax = plt.subplot(111, projection='polar')
bars = ax.bar(theta, radii, width=width, bottom=0.0)
2021-07-20 08:48:27 +00:00
# Use custom colors and opacity
for r, bar in zip(radii, bars):
bar.set_facecolor(plt.cm.viridis(r / 10.))
bar.set_alpha(0.5)
2021-07-20 08:48:27 +00:00
ax.set_rlim([0,5])
plt.show()
"""
)
check_comparison(selenium, "canvas-polar-zoom", 1)
finally:
TARGET_PATH.unlink()
@pytest.mark.skip_refcount_check
@pytest.mark.skip_pyproxy_check
2021-07-20 08:48:27 +00:00
def test_transparency(selenium):
if selenium.browser == "node":
pytest.xfail("No supported matplotlib backends on node")
selenium.load_package("matplotlib")
if get_backend(selenium) == "module://matplotlib.backends.wasm_backend":
pytest.skip(
"test supported only for html5 canvas backend. wasm backend is currently used"
)
else:
TARGET_PATH.symlink_to(TEST_PATH, True)
try:
selenium.run(
"""
from js import window
window.testing = True
import numpy as np
np.random.seed(19680801)
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
for color in ['tab:blue', 'tab:orange', 'tab:green']:
n = 100
x, y = np.random.rand(2, n)
scale = 200.0 * np.random.rand(n)
ax.scatter(x, y, c=color, s=scale, label=color,
alpha=0.3, edgecolors='none')
ax.legend()
ax.grid(True)
plt.show()
"""
)
check_comparison(selenium, "canvas-transparency", 1)
finally:
TARGET_PATH.unlink()
class ResultLoaded:
def __call__(self, driver):
inited = driver.execute_script("return window.result")
return inited is not None
class FontsLoaded:
def __init__(self, num_fonts):
self.num_fonts = num_fonts
def __call__(self, driver):
font_inited = driver.execute_script("return window.font_counter")
return font_inited is not None and font_inited == self.num_fonts