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 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
|
# -*- coding: utf-8 -*-
"""Tests for the latex codec."""
from __future__ import print_function
import codecs
from io import BytesIO
import pytest
from unittest import TestCase
import latexcodec
def test_getregentry():
assert latexcodec.codec.getregentry() is not None
def test_find_latex():
assert latexcodec.codec.find_latex('hello') is None
def test_latex_incremental_decoder_getstate():
encoder = codecs.getincrementaldecoder('latex')()
with pytest.raises(NotImplementedError):
encoder.getstate()
def test_latex_incremental_decoder_setstate():
encoder = codecs.getincrementaldecoder('latex')()
state = (b'', 0)
with pytest.raises(NotImplementedError):
encoder.setstate(state)
def split_input(input_):
"""Helper function for testing the incremental encoder and decoder."""
assert isinstance(input_, (str, bytes))
if input_:
for i in range(len(input_)):
if i + 1 < len(input_):
yield input_[i:i + 1], False
else:
yield input_[i:i + 1], True
else:
yield input_, True
class TestDecoder(TestCase):
"""Stateless decoder tests."""
maxDiff = None
def decode(self, text_utf8, text_latex, inputenc=None):
"""Main test function."""
encoding = 'latex+' + inputenc if inputenc else 'latex'
decoded, n = codecs.getdecoder(encoding)(text_latex)
self.assertEqual((decoded, n), (text_utf8, len(text_latex)))
def test_invalid_type(self):
with pytest.raises(TypeError):
codecs.getdecoder("latex")(object()) # type: ignore
def test_invalid_code(self):
with pytest.raises(ValueError):
# b'\xe9' is invalid utf-8 code
self.decode('', b'\xe9 ', 'utf-8')
def test_null(self):
self.decode('', b'')
def test_maelstrom(self):
self.decode(u"mælström", br'm\ae lstr\"om')
def test_maelstrom_latin1(self):
self.decode(u"mælström", b'm\\ae lstr\xf6m', 'latin1')
def test_laren(self):
self.decode(
u"© låren av björn",
br'\copyright\ l\aa ren av bj\"orn')
def test_laren_brackets(self):
self.decode(
u"© l{å}ren av bj{ö}rn",
br'\copyright\ l{\aa}ren av bj{\"o}rn')
def test_laren_latin1(self):
self.decode(
u"© låren av björn",
b'\\copyright\\ l\xe5ren av bj\xf6rn',
'latin1')
def test_droitcivil(self):
self.decode(
u"Même s'il a fait l'objet d'adaptations suite à l'évolution, "
u"la transformation sociale, économique et politique du pays, "
u"le code civil fran{ç}ais est aujourd'hui encore le texte "
u"fondateur "
u"du droit civil français mais aussi du droit civil belge "
u"ainsi que "
u"de plusieurs autres droits civils.",
b"M\\^eme s'il a fait l'objet d'adaptations suite "
b"\\`a l'\\'evolution, \nla transformation sociale, "
b"\\'economique et politique du pays, \nle code civil "
b"fran\\c{c}ais est aujourd'hui encore le texte fondateur \n"
b"du droit civil fran\\c cais mais aussi du droit civil "
b"belge ainsi que \nde plusieurs autres droits civils.",
)
def test_oeuf(self):
self.decode(
u"D'un point de vue diététique, l'œuf apaise la faim.",
br"D'un point de vue di\'et\'etique, l'\oe uf apaise la faim.",
)
def test_oeuf_latin1(self):
self.decode(
u"D'un point de vue diététique, l'œuf apaise la faim.",
b"D'un point de vue di\xe9t\xe9tique, l'\\oe uf apaise la faim.",
'latin1'
)
def test_alpha(self):
self.decode(u"α", b"$\\alpha$")
def test_maelstrom_multibyte_encoding(self):
self.decode(u"\\c öké", b'\\c \xc3\xb6k\xc3\xa9', 'utf8')
def test_serafin(self):
self.decode(u"Seraf{\xed}n", b"Seraf{\\'i}n")
def test_astrom(self):
self.decode(u"{\xc5}str{\xf6}m", b'{\\AA}str{\\"o}m')
def test_space_1(self):
self.decode(u"ææ", br'\ae \ae')
def test_space_2(self):
self.decode(u"æ æ", br'\ae\ \ae')
def test_space_3(self):
self.decode(u"æ æ", br'\ae \quad \ae')
def test_number_sign_1(self):
self.decode(u"# hello", br'\#\ hello')
def test_number_sign_2(self):
# LaTeX does not absorb the space following '\#':
# check decoding is correct
self.decode(u"# hello", br'\# hello')
def test_number_sign_3(self):
# a single '#' is not valid LaTeX:
# for the moment we ignore this error and return # unchanged
self.decode(u"# hello", br'# hello')
def test_underscore(self):
self.decode(u"_", br'\_')
def test_dz(self):
self.decode(u"DZ", br'DZ')
def test_newline(self):
self.decode(u"hello world", b"hello\nworld")
def test_par1(self):
self.decode(u"hello\n\nworld", b"hello\n\nworld")
def test_par2(self):
self.decode(u"hello\n\nworld", b"hello\\par world")
def test_par3(self):
self.decode(u"hello\n\nworld", b"hello \\par world")
def test_ogonek1(self):
self.decode(u"ĄąĘęĮįǪǫŲų",
br'\k A\k a\k E\k e\k I\k i\k O\k o\k U\k u')
def test_ogonek2(self):
# note: should decode into u"Ǭǭ" but can't support this yet...
self.decode(u"\\textogonekcentered {Ō}\\textogonekcentered {ō}",
br'\textogonekcentered{\=O}\textogonekcentered{\=o}')
def test_math_spacing_dollar(self):
self.decode('This is a ψ test.', br'This is a $\psi$ test.')
def test_math_spacing_brace(self):
self.decode('This is a ψ test.', br'This is a \(\psi\) test.')
def test_double_math(self):
# currently no attempt to translate maths inside $$
self.decode('This is a $$\\psi $$ test.',
br'This is a $$\psi$$ test.')
def test_tilde(self):
self.decode('This is a ˜, ˷, ∼ and ~test.',
(br'This is a \~{}, \texttildelow, '
br'$\sim$ and \textasciitilde test.'))
def test_backslash(self):
self.decode('This is a \\ \\test.',
br'This is a $\backslash$ \textbackslash test.')
def test_percent(self):
self.decode('This is a % test.',
br'This is a \% test.')
def test_math_minus(self):
self.decode('This is a − test.',
br'This is a $-$ test.')
def test_swedish_again(self):
self.decode(
u"l{å}ren l{Å}ren",
br'l{\r a}ren l{\r A}ren')
def test_double_quotes(self):
self.decode(u"“a+b”", br"``a+b''")
def test_double_quotes_unicode(self):
self.decode(u"“á”", u"``á''".encode("utf8"), "utf8")
def test_double_quotes_gb2312(self):
self.decode(u"“你好”", u"``你好''".encode('gb2312'), 'gb2312')
def test_ell(self):
self.decode(u"ℓ", br"$\ell$")
def test_theta(self):
self.decode(u"θ", br"$\theta$")
self.decode(u"θ", br"\texttheta")
def test_decode_comment(self):
self.decode(u"\\\\", br"\\%")
self.decode(u"% abc \\\\\\\\% ghi",
b"\\% abc\n\\\\% def\n\\\\\\% ghi")
def test_decode_lower_quotes(self):
self.decode(u"„", br",,")
self.decode(u"„", br"\glqq")
def test_decode_guillemet(self):
self.decode(u"«quote»", br"\guillemotleft quote\guillemotright")
def test_decode_reals(self):
self.decode(u"ℝ", br"$\mathbb R$")
self.decode(u"ℝ", br"$\mathbb{R}$")
class TestStreamDecoder(TestDecoder):
"""Stream decoder tests."""
def decode(self, text_utf8, text_latex, inputenc=None):
encoding = 'latex+' + inputenc if inputenc else 'latex'
stream = BytesIO(text_latex)
reader = codecs.getreader(encoding)(stream)
self.assertEqual(text_utf8, reader.read())
# in this test, BytesIO(object()) is eventually called
def test_invalid_type(self):
TestDecoder.test_invalid_type(self)
class TestIncrementalDecoder(TestDecoder):
"""Incremental decoder tests."""
def decode(self, text_utf8, text_latex, inputenc=None):
encoding = 'latex+' + inputenc if inputenc else 'latex'
decoder = codecs.getincrementaldecoder(encoding)()
decoded_parts = (
decoder.decode(text_latex_part, final)
for text_latex_part, final in split_input(text_latex))
self.assertEqual(text_utf8, ''.join(decoded_parts))
class TestEncoder(TestCase):
"""Stateless encoder tests."""
def encode(self, text_utf8, text_latex, inputenc=None, errors='strict'):
"""Main test function."""
encoding = 'latex+' + inputenc if inputenc else 'latex'
encoded, n = codecs.getencoder(encoding)(text_utf8, errors=errors)
self.assertEqual((encoded, n), (text_latex, len(text_utf8)))
def test_invalid_type(self):
with pytest.raises(TypeError):
codecs.getencoder("latex")(object()) # type: ignore
# note concerning test_invalid_code_* methods:
# '\u2328' (0x2328 = 9000) is unicode for keyboard symbol
# we currently provide no translation for this into LaTeX code
def test_invalid_code_strict(self):
with pytest.raises(ValueError):
self.encode('\u2328', b'', 'ascii', 'strict')
def test_invalid_code_ignore(self):
self.encode('\u2328', b'', 'ascii', 'ignore')
def test_invalid_code_replace(self):
self.encode('\u2328', b'{\\char9000}', 'ascii', 'replace')
def test_invalid_code_baderror(self):
with pytest.raises(ValueError):
self.encode('\u2328', b'', 'ascii', '**baderror**')
def test_null(self):
self.encode('', b'')
def test_maelstrom(self):
self.encode(u"mælström", br'm\ae lstr\"om')
def test_maelstrom_latin1(self):
self.encode(u"mælström", b'm\xe6lstr\xf6m', 'latin1')
def test_laren(self):
self.encode(
u"© låren av björn",
br'\copyright\ l\aa ren av bj\"orn')
def test_laren_latin1(self):
self.encode(
u"© låren av björn",
b'\xa9 l\xe5ren av bj\xf6rn',
'latin1')
def test_droitcivil(self):
self.encode(
u"Même s'il a fait l'objet d'adaptations suite à l'évolution, \n"
u"la transformation sociale, économique et politique du pays, \n"
u"le code civil fran{ç}ais est aujourd'hui encore le texte "
u"fondateur \n"
u"du droit civil français mais aussi du droit civil belge "
u"ainsi que \n"
u"de plusieurs autres droits civils.",
b"M\\^eme s'il a fait l'objet d'adaptations suite "
b"\\`a l'\\'evolution, \nla transformation sociale, "
b"\\'economique et politique du pays, \nle code civil "
b"fran{\\c c}ais est aujourd'hui encore le texte fondateur \n"
b"du droit civil fran\\c cais mais aussi du droit civil "
b"belge ainsi que \nde plusieurs autres droits civils.",
)
def test_oeuf(self):
self.encode(
u"D'un point de vue diététique, l'œuf apaise la faim.",
br"D'un point de vue di\'et\'etique, l'\oe uf apaise la faim.",
)
def test_oeuf_latin1(self):
self.encode(
u"D'un point de vue diététique, l'œuf apaise la faim.",
b"D'un point de vue di\xe9t\xe9tique, l'\\oe uf apaise la faim.",
'latin1'
)
def test_alpha(self):
self.encode(u"α", b"$\\alpha$")
def test_serafin(self):
self.encode(u"Seraf{\xed}n", b"Seraf{\\'\\i }n")
def test_space_1(self):
self.encode(u"ææ", br'\ae \ae')
def test_space_2(self):
self.encode(u"æ æ", br'\ae\ \ae')
def test_space_3(self):
self.encode(u"æ æ", br'\ae \quad \ae')
def test_number_sign(self):
# note: no need for control space after \#
self.encode(u"# hello", br'\# hello')
def test_underscore(self):
self.encode(u"_", br'\_')
def test_dz1(self):
self.encode(u"DZ", br'DZ')
def test_dz2(self):
self.encode(u"DZ", br'DZ')
def test_newline(self):
self.encode(u"hello\nworld", b"hello\nworld")
def test_par1(self):
self.encode(u"hello\n\nworld", b"hello\n\nworld")
def test_par2(self):
self.encode(u"hello\\par world", b"hello\\par world")
def test_ogonek1(self):
self.encode(u"ĄąĘęĮįǪǫŲų",
br'\k A\k a\k E\k e\k I\k i\k O\k o\k U\k u')
def test_ogonek2(self):
self.encode(u"Ǭǭ",
br'\textogonekcentered{\=O}\textogonekcentered{\=o}')
def test_math_spacing(self):
self.encode('This is a ψ test.', br'This is a $\psi$ test.')
def test_double_math(self):
# currently no attempt to translate maths inside $$
self.encode('This is a $$\\psi$$ test.', br'This is a $$\psi$$ test.')
def test_tilde(self):
self.encode('This is a ˜, ˷, ∼ and ~test.',
(br'This is a \~{}, \texttildelow , '
br'$\sim$ and \textasciitilde test.'))
def test_percent(self):
self.encode('This is a % test.',
br'This is a \% test.')
def test_hyphen(self):
self.encode('This is a \N{HYPHEN} test.',
br'This is a - test.')
def test_math_minus(self):
self.encode(u'This is a − test.',
br'This is a $-$ test.')
def test_double_quotes(self):
self.encode(u"“a+b”", br"``a+b''")
def test_double_quotes_unicode(self):
self.encode(u"“á”", br"``\'a''")
def test_thin_space(self):
self.encode(u"a\u2009b", b"a b")
def test_ell(self):
self.encode(u"ℓ", br"$\ell$")
def test_theta(self):
self.encode(u"θ", br"$\theta$")
def test_encode_lower_quotes(self):
self.encode(u"„", br",,")
def test_encode_guillemet(self):
self.encode(u"«quote»", br"\guillemotleft quote\guillemotright")
def test_encode_reals(self):
self.encode(u"ℝ", br"$\mathbb R$")
def test_encode_ligatures(self):
self.encode(u"ff fi fl ffi ffl st", br"ff fi fl ffi ffl st")
def test_encode_zero_width(self):
self.encode(u"1\u200b2\u200c3\u200d4", br"1\hspace{0pt}2{}34")
class TestStreamEncoder(TestEncoder):
"""Stream encoder tests."""
def encode(self, text_utf8, text_latex, inputenc=None, errors='strict'):
encoding = 'latex+' + inputenc if inputenc else 'latex'
stream = BytesIO()
writer = codecs.getwriter(encoding)(stream, errors=errors)
writer.write(text_utf8)
self.assertEqual(text_latex, stream.getvalue())
class TestIncrementalEncoder(TestEncoder):
"""Incremental encoder tests."""
def encode(self, text_utf8, text_latex, inputenc=None, errors='strict'):
encoding = 'latex+' + inputenc if inputenc else 'latex'
encoder = codecs.getincrementalencoder(encoding)(errors=errors)
encoded_parts = (
encoder.encode(text_utf8_part, final)
for text_utf8_part, final in split_input(text_utf8))
self.assertEqual(text_latex, b''.join(encoded_parts))
class TestUnicodeDecoder(TestDecoder):
def decode(self, text_utf8, text_latex, inputenc=None):
"""Main test function."""
text_latex = text_latex.decode(inputenc if inputenc else "ascii")
decoded, n = codecs.getdecoder('ulatex')(text_latex)
self.assertEqual((decoded, n), (text_utf8, len(text_latex)))
class TestUnicodeEncoder(TestEncoder):
def encode(self, text_utf8, text_latex, inputenc=None, errors='strict'):
"""Main test function."""
encoding = 'ulatex+' + inputenc if inputenc else 'ulatex'
text_latex = text_latex.decode(inputenc if inputenc else 'ascii')
encoded, n = codecs.getencoder(encoding)(text_utf8, errors=errors)
self.assertEqual((encoded, n), (text_latex, len(text_utf8)))
def uencode(self, text_utf8, text_ulatex, inputenc=None, errors='strict'):
"""Main test function."""
encoding = 'ulatex+' + inputenc if inputenc else 'ulatex'
encoded, n = codecs.getencoder(encoding)(text_utf8, errors=errors)
self.assertEqual((encoded, n), (text_ulatex, len(text_utf8)))
def test_ulatex_ascii(self):
self.uencode(u'# ψ', u'\\# $\\psi$', 'ascii')
def test_ulatex_utf8(self):
self.uencode(u'# ψ', u'\\# ψ', 'utf8')
# the following tests rely on the fact that \u2328 is not in our
# translation table
def test_ulatex_ascii_invalid(self):
with pytest.raises(ValueError):
self.uencode(u'# \u2328', u'', 'ascii')
def test_ulatex_utf8_invalid(self):
self.uencode(u'# ψ \u2328', u'\\# ψ \u2328', 'utf8')
def test_invalid_code_keep(self):
self.uencode(u'# ψ \u2328', u'\\# $\\psi$ \u2328', 'ascii', 'keep')
|