##// END OF EJS Templates
Merge pull request #12339 from Carreau/release-frap...
Merge pull request #12339 from Carreau/release-frap Add instruction to list the API changes.

File last commit:

r25161:978f4da6
r25804:f51aab95 merge
Show More
test_latextools.py
181 lines | 5.8 KiB | text/x-python | PythonLexer
/ IPython / lib / tests / test_latextools.py
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 # encoding: utf-8
"""Tests for IPython.utils.path.py"""
Min RK
remove testing.tools.monkeypatch...
r21116 # Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
Srinivas Reddy Thatiparthy
remove code specific to python2
r23063 from unittest.mock import patch
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 import nose.tools as nt
from IPython.lib import latextools
Thomas Kluyver
Fix IPython.lib.latextools for Python 3
r8013 from IPython.testing.decorators import onlyif_cmds_exist, skipif_not_matplotlib
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 from IPython.utils.process import FindCmdError
def test_latex_to_png_dvipng_fails_when_no_cmd():
"""
`latex_to_png_dvipng` should return None when there is no required command
"""
for command in ['latex', 'dvipng']:
yield (check_latex_to_png_dvipng_fails_when_no_cmd, command)
def check_latex_to_png_dvipng_fails_when_no_cmd(command):
def mock_find_cmd(arg):
if arg == command:
raise FindCmdError
Min RK
remove testing.tools.monkeypatch...
r21116 with patch.object(latextools, "find_cmd", mock_find_cmd):
Min RK
fix some deprecations...
r22742 nt.assert_equal(latextools.latex_to_png_dvipng("whatever", True),
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 None)
@onlyif_cmds_exist('latex', 'dvipng')
def test_latex_to_png_dvipng_runs():
"""
Test that latex_to_png_dvipng just runs without error.
"""
def mock_kpsewhich(filename):
Min RK
fix some deprecations...
r22742 nt.assert_equal(filename, "breqn.sty")
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 return None
Thomas Kluyver
Fix test for latextools under Python 2...
r19890 for (s, wrap) in [(u"$$x^2$$", False), (u"x^2", True)]:
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 yield (latextools.latex_to_png_dvipng, s, wrap)
Min RK
remove testing.tools.monkeypatch...
r21116 with patch.object(latextools, "kpsewhich", mock_kpsewhich):
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 yield (latextools.latex_to_png_dvipng, s, wrap)
Thomas Kluyver
Fix IPython.lib.latextools for Python 3
r8013 @skipif_not_matplotlib
def test_latex_to_png_mpl_runs():
"""
Test that latex_to_png_mpl just runs without error.
"""
def mock_kpsewhich(filename):
Min RK
fix some deprecations...
r22742 nt.assert_equal(filename, "breqn.sty")
Thomas Kluyver
Fix IPython.lib.latextools for Python 3
r8013 return None
for (s, wrap) in [("$x^2$", False), ("x^2", True)]:
yield (latextools.latex_to_png_mpl, s, wrap)
Min RK
remove testing.tools.monkeypatch...
r21116 with patch.object(latextools, "kpsewhich", mock_kpsewhich):
Thomas Kluyver
Fix IPython.lib.latextools for Python 3
r8013 yield (latextools.latex_to_png_mpl, s, wrap)
@skipif_not_matplotlib
def test_latex_to_html():
img = latextools.latex_to_html("$x^2$")
Oscar Gustafsson
Enable changing the font color for LaTeX rendering
r25160 nt.assert_in("data:image/png;base64,iVBOR", img)
Thomas Kluyver
Fix IPython.lib.latextools for Python 3
r8013
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858
def test_genelatex_no_wrap():
"""
Test genelatex with wrap=False.
"""
def mock_kpsewhich(filename):
assert False, ("kpsewhich should not be called "
"(called with {0})".format(filename))
Min RK
remove testing.tools.monkeypatch...
r21116 with patch.object(latextools, "kpsewhich", mock_kpsewhich):
Min RK
fix some deprecations...
r22742 nt.assert_equal(
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 '\n'.join(latextools.genelatex("body text", False)),
r'''\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{bm}
\pagestyle{empty}
\begin{document}
body text
\end{document}''')
def test_genelatex_wrap_with_breqn():
"""
Test genelatex with wrap=True for the case breqn.sty is installed.
"""
def mock_kpsewhich(filename):
Min RK
fix some deprecations...
r22742 nt.assert_equal(filename, "breqn.sty")
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 return "path/to/breqn.sty"
Min RK
remove testing.tools.monkeypatch...
r21116 with patch.object(latextools, "kpsewhich", mock_kpsewhich):
Min RK
fix some deprecations...
r22742 nt.assert_equal(
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 '\n'.join(latextools.genelatex("x^2", True)),
r'''\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{bm}
\usepackage{breqn}
\pagestyle{empty}
\begin{document}
\begin{dmath*}
x^2
\end{dmath*}
\end{document}''')
def test_genelatex_wrap_without_breqn():
"""
Test genelatex with wrap=True for the case breqn.sty is not installed.
"""
def mock_kpsewhich(filename):
Min RK
fix some deprecations...
r22742 nt.assert_equal(filename, "breqn.sty")
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 return None
Min RK
remove testing.tools.monkeypatch...
r21116 with patch.object(latextools, "kpsewhich", mock_kpsewhich):
Min RK
fix some deprecations...
r22742 nt.assert_equal(
Takafumi Arakaki
Add tests for IPython.lib.latextools
r7858 '\n'.join(latextools.genelatex("x^2", True)),
r'''\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{bm}
\pagestyle{empty}
\begin{document}
$$x^2$$
\end{document}''')
Oscar Gustafsson
Enable changing the font color for LaTeX rendering
r25160
Oscar Gustafsson
Better color options and added scale
r25161 @skipif_not_matplotlib
@onlyif_cmds_exist('latex', 'dvipng')
Oscar Gustafsson
Enable changing the font color for LaTeX rendering
r25160 def test_latex_to_png_color():
"""
Test color settings for latex_to_png.
"""
latex_string = "$x^2$"
default_value = latextools.latex_to_png(latex_string, wrap=False)
Oscar Gustafsson
Better color options and added scale
r25161 default_hexblack = latextools.latex_to_png(latex_string, wrap=False,
color='#000000')
Oscar Gustafsson
Enable changing the font color for LaTeX rendering
r25160 dvipng_default = latextools.latex_to_png_dvipng(latex_string, False)
dvipng_black = latextools.latex_to_png_dvipng(latex_string, False, 'Black')
nt.assert_equal(dvipng_default, dvipng_black)
mpl_default = latextools.latex_to_png_mpl(latex_string, False)
mpl_black = latextools.latex_to_png_mpl(latex_string, False, 'Black')
nt.assert_equal(mpl_default, mpl_black)
nt.assert_in(default_value, [dvipng_black, mpl_black])
Oscar Gustafsson
Better color options and added scale
r25161 nt.assert_in(default_hexblack, [dvipng_black, mpl_black])
Oscar Gustafsson
Enable changing the font color for LaTeX rendering
r25160
# Test that dvips name colors can be used without error
Oscar Gustafsson
Better color options and added scale
r25161 dvipng_maroon = latextools.latex_to_png_dvipng(latex_string, False,
'Maroon')
Oscar Gustafsson
Enable changing the font color for LaTeX rendering
r25160 # And that it doesn't return the black one
nt.assert_not_equal(dvipng_black, dvipng_maroon)
mpl_maroon = latextools.latex_to_png_mpl(latex_string, False, 'Maroon')
nt.assert_not_equal(mpl_black, mpl_maroon)
Oscar Gustafsson
Better color options and added scale
r25161 mpl_white = latextools.latex_to_png_mpl(latex_string, False, 'White')
mpl_hexwhite = latextools.latex_to_png_mpl(latex_string, False, '#FFFFFF')
nt.assert_equal(mpl_white, mpl_hexwhite)
mpl_white_scale = latextools.latex_to_png_mpl(latex_string, False,
'White', 1.2)
nt.assert_not_equal(mpl_white, mpl_white_scale)
def test_latex_to_png_invalid_hex_colors():
"""
Test that invalid hex colors provided to dvipng gives an exception.
"""
latex_string = "$x^2$"
nt.assert_raises(ValueError, lambda: latextools.latex_to_png(latex_string,
backend='dvipng', color="#f00bar"))
nt.assert_raises(ValueError, lambda: latextools.latex_to_png(latex_string,
backend='dvipng', color="#f00"))