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 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
import subprocess
import sys
import tempfile
import unittest
sys.path.insert(1, os.path.abspath('.'))
import polib
from polib import u
class TestFunctions(unittest.TestCase):
def test_pofile_and_mofile1(self):
"""
Test bad usage of pofile/mofile.
"""
data = u('''# test for pofile/mofile with string buffer
msgid ""
msgstr ""
"Project-Id-Version: django\n"
msgid "foo"
msgstr "bar"
''')
po = polib.pofile(data)
self.assertTrue(isinstance(po, polib.POFile))
self.assertEqual(po.encoding, 'utf-8')
self.assertEqual(po[0].msgstr, u("bar"))
def test_indented_pofile(self):
"""
Test that an indented pofile returns a POFile instance.
"""
po = polib.pofile('tests/test_indented.po')
self.assertTrue(isinstance(po, polib.POFile))
def test_pofile_and_mofile2(self):
"""
Test that the pofile function returns a POFile instance.
"""
po = polib.pofile('tests/test_utf8.po')
self.assertTrue(isinstance(po, polib.POFile))
def test_pofile_and_mofile3(self):
"""
Test that the mofile function returns a MOFile instance.
"""
mo = polib.mofile('tests/test_utf8.mo')
self.assertTrue(isinstance(mo, polib.MOFile))
def test_pofile_and_mofile4(self):
"""
Test that check_for_duplicates is passed to the instance.
"""
po = polib.pofile('tests/test_iso-8859-15.po', check_for_duplicates=True,
autodetect_encoding=False, encoding='iso-8859-15')
self.assertTrue(po.check_for_duplicates == True)
def test_pofile_and_mofile5(self):
"""
Test that detect_encoding works as expected.
"""
po = polib.pofile('tests/test_iso-8859-15.po')
self.assertTrue(po.encoding == 'ISO_8859-15')
def test_pofile_and_mofile6(self):
"""
Test that encoding is default_encoding when detect_encoding is False.
"""
po = polib.pofile('tests/test_noencoding.po')
self.assertTrue(po.encoding == 'utf-8')
def test_pofile_and_mofile7(self):
"""
Test that encoding is ok when encoding is explicitly given.
"""
po = polib.pofile('tests/test_iso-8859-15.po', encoding='iso-8859-15')
self.assertTrue(po.encoding == 'iso-8859-15')
def test_pofile_and_mofile8(self):
"""
Test that weird occurrences are correctly parsed.
"""
po = polib.pofile('tests/test_weird_occurrences.po')
self.assertEqual(len(po), 47)
def test_pofile_and_mofile9(self):
"""
Test that obsolete previous msgid are ignored
"""
po = polib.pofile('tests/test_obsolete_previousmsgid.po')
self.assertTrue(isinstance(po, polib.POFile))
def test_pofile_and_mofile10(self):
"""
Test mofile with a bytes object.
"""
mo_bytes = b"\xde\x12\x04\x95\x00\x00\x00\x00\x05\x00\x00\x00\x1c\x00\x00\x00D\x00\x00\x00\x07\x00\x00\x00l\x00\x00\x00\x00\x00\x00\x00\x88\x00\x00\x00\x10\x00\x00\x00\x89\x00\x00\x00\x07\x00\x00\x00\x9a\x00\x00\x00\x0c\x00\x00\x00\xa2\x00\x00\x00\x0b\x00\x00\x00\xaf\x00\x00\x00(\x00\x00\x00\xbb\x00\x00\x00\n\x00\x00\x00\xe4\x00\x00\x00\x10\x00\x00\x00\xef\x00\x00\x00\x0f\x00\x00\x00\x00\x01\x00\x00\x16\x00\x00\x00\x10\x01\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00SNAR_BEZEICHNUNG\x00conform\x00inconclusive\x00non-conform\x00Content-Type: text/plain; charset=UTF-8\n\x00Feldfrucht\x00\xc3\x9cbereinstimmung\x00Nicht eindeutig\x00Keine \xc3\x9cbereinstimmung\x00"
mo = polib.mofile(mo_bytes)
self.assertTrue(isinstance(mo, polib.MOFile))
def test_ufeff_data_pofile(self):
"""
Test that an ufeff prefixed pofile returns a POFile instance.
"""
data = u('''\ufeff# test for pofile/mofile with ufeff
msgid ""
msgstr ""
"Project-Id-Version: django\n"
msgid "foo"
msgstr "bar"
''')
po = polib.pofile(data)
self.assertTrue(isinstance(po, polib.POFile))
def test_ufeff_pofile(self):
"""
Test that an ufeff prefixed pofile returns a POFile instance.
"""
po = polib.pofile('tests/test_ufeff.po')
self.assertTrue(isinstance(po, polib.POFile))
def test_previous_msgid_1(self):
"""
Test previous msgid multiline.
"""
po = polib.pofile('tests/test_previous_msgid.po')
expected = "\nPartition table entries are not in disk order\n"
self.assertEqual(
po[0].previous_msgid,
expected
)
def test_previous_msgid_2(self):
"""
Test previous msgid single line.
"""
po = polib.pofile('tests/test_previous_msgid.po')
expected = "Partition table entries are not in disk order2\n"
self.assertEqual(
po[1].previous_msgid,
expected
)
def test_previous_msgid_3(self):
"""
Test saving empty previous msgid.
"""
po = polib.pofile('tests/test_previous_msgid.po')
fd, tmpfile = tempfile.mkstemp()
os.close(fd)
po.save(tmpfile)
po = polib.pofile(tmpfile)
os.remove(tmpfile)
expected = ""
self.assertEqual(
po[2].previous_msgid,
expected
)
def test_previous_msgctxt_1(self):
"""
Test previous msgctxt multiline.
"""
po = polib.pofile('tests/test_previous_msgid.po')
expected = "\nSome message context"
self.assertEqual(
po[0].previous_msgctxt,
expected
)
def test_previous_msgctxt_2(self):
"""
Test previous msgctxt single line.
"""
po = polib.pofile('tests/test_previous_msgid.po')
expected = "Some message context"
self.assertEqual(
po[1].previous_msgctxt,
expected
)
def test_unescaped_double_quote1(self):
"""
Test that polib reports an error when unescaped double quote is found.
"""
data = r'''
msgid "Some msgid with \"double\" quotes"
msgid "Some msgstr with "double\" quotes"
'''
try:
po = polib.pofile(data)
self.fail("Unescaped quote not detected")
except IOError:
exc = sys.exc_info()[1]
msg = 'Syntax error in po file (line 3): unescaped double quote found'
self.assertEqual(str(exc), msg)
def test_unescaped_double_quote2(self):
"""
Test that polib reports an error when unescaped double quote is found.
"""
data = r'''
msgid "Some msgid with \"double\" quotes"
msgstr ""
"Some msgstr with "double\" quotes"
'''
try:
po = polib.pofile(data)
self.fail("Unescaped quote not detected")
except IOError:
exc = sys.exc_info()[1]
msg = 'Syntax error in po file (line 4): unescaped double quote found'
self.assertEqual(str(exc), msg)
def test_unescaped_double_quote3(self):
"""
Test that polib reports an error when unescaped double quote is found at the beginning of the string.
"""
data = r'''
msgid "Some msgid with \"double\" quotes"
msgid ""Some msgstr with double\" quotes"
'''
try:
po = polib.pofile(data)
self.fail("Unescaped quote not detected")
except IOError:
exc = sys.exc_info()[1]
msg = 'Syntax error in po file (line 3): unescaped double quote found'
self.assertEqual(str(exc), msg)
def test_unescaped_double_quote4(self):
"""
Test that polib reports an error when unescaped double quote is found at the beginning of the string.
"""
data = r'''
msgid "Some msgid with \"double\" quotes"
msgstr ""
""Some msgstr with double\" quotes"
'''
try:
po = polib.pofile(data)
self.fail("Unescaped quote not detected")
except IOError:
exc = sys.exc_info()[1]
msg = 'Syntax error in po file (line 4): unescaped double quote found'
self.assertEqual(str(exc), msg)
def test_syntax_error1(self):
"""
Test that syntax error is raised while processing a symbol parsing.
"""
try:
polib.pofile('tests/test_syntax_error1.po')
self.fail("Syntax error not detected")
except IOError:
exc = sys.exc_info()[1]
msg = "Syntax error in po file tests/test_syntax_error1.po (line 5)"
self.assertEqual(str(exc), msg)
def test_detect_encoding1(self):
"""
Test that given encoding is returned when file has no encoding defined.
"""
self.assertEqual(polib.detect_encoding('tests/test_noencoding.po'), 'utf-8')
def test_detect_encoding2(self):
"""
Test with a .pot file.
"""
self.assertEqual(polib.detect_encoding('tests/test_merge.pot'), 'utf-8')
def test_detect_encoding3(self):
"""
Test with an utf8 .po file.
"""
self.assertEqual(polib.detect_encoding('tests/test_utf8.po'), 'UTF-8')
def test_detect_encoding4(self):
"""
Test with utf8 data (no file).
"""
if polib.PY3:
f = open('tests/test_utf8.po', 'rb')
data = str(f.read(), 'utf-8')
else:
f = open('tests/test_utf8.po', 'r')
data = f.read()
try:
self.assertEqual(polib.detect_encoding(data), 'UTF-8')
finally:
f.close()
def test_detect_encoding5(self):
"""
Test with utf8 .mo file.
"""
self.assertEqual(polib.detect_encoding('tests/test_utf8.mo', True), 'UTF-8')
def test_detect_encoding6(self):
"""
Test with iso-8859-15 .po file.
"""
self.assertEqual(polib.detect_encoding('tests/test_iso-8859-15.po'), 'ISO_8859-15')
def test_detect_encoding7(self):
"""
Test with iso-8859-15 .mo file.
"""
self.assertEqual(polib.detect_encoding('tests/test_iso-8859-15.mo', True), 'ISO_8859-15')
def test_escape(self):
"""
Tests the escape function.
"""
self.assertEqual(
polib.escape('\\t and \\n and \\r and " and \\ and \\\\ and \\v and \\b and \\f'),
'\\\\t and \\\\n and \\\\r and \\" and \\\\ and \\\\\\\\ and \\\\v and \\\\b and \\\\f'
)
def test_unescape(self):
"""
Tests the unescape function.
"""
self.assertEqual(
polib.unescape('\\t and \\n and \\r and \\" and \\\\ and \\v and \\b and \\f'),
'\t and \n and \r and \" and \\ and \v and \b and \f'
)
def test_pofile_with_subclass(self):
"""
Test that the pofile function correctly returns an instance of the
passed in class
"""
class CustomPOFile(polib.POFile):
pass
pofile = polib.pofile('tests/test_indented.po', klass=CustomPOFile)
self.assertEqual(pofile.__class__, CustomPOFile)
def test_mofile_with_subclass(self):
"""
Test that the mofile function correctly returns an instance of the
passed in class
"""
class CustomMOFile(polib.MOFile):
pass
mofile = polib.mofile('tests/test_utf8.mo', klass=CustomMOFile)
self.assertEqual(mofile.__class__, CustomMOFile)
def test_empty(self):
po = polib.pofile('')
self.assertEqual(po.__unicode__(), '#\nmsgid ""\nmsgstr ""\n')
def test_linenum_1(self):
po = polib.pofile('tests/test_utf8.po')
self.assertEqual(po[0].linenum, 17)
def test_linenum_2(self):
po = polib.pofile('tests/test_utf8.po')
self.assertEqual(po.find('XML text').linenum, 1798)
def test_linenum_3(self):
po = polib.pofile('tests/test_utf8.po')
self.assertEqual(po[-1].linenum, 3477)
def test_windows_path_occurrences(self):
po = polib.pofile('tests/test_weird_occurrences.po')
self.assertEqual(po[0].occurrences, [('C:\\foo\\bar.py', '12')])
def test_is_file(self):
self.assertTrue(polib._is_file(os.path.abspath(__file__)))
self.assertFalse(polib._is_file('This is not a file !!!!'))
self.assertFalse(polib._is_file(True))
class TestBaseFile(unittest.TestCase):
"""
Tests for the _BaseFile class.
"""
def test_append1(self):
pofile = polib.pofile('tests/test_pofile_helpers.po')
entry = polib.POEntry(msgid="Foo", msgstr="Bar", msgctxt="Some context")
pofile.append(entry)
self.assertTrue(entry in pofile)
def test_append2(self):
def add_duplicate():
pofile = polib.pofile('tests/test_pofile_helpers.po', check_for_duplicates=True)
pofile.append(polib.POEntry(msgid="and"))
self.assertRaises(ValueError, add_duplicate)
def test_append3(self):
def add_duplicate():
pofile = polib.pofile('tests/test_pofile_helpers.po', check_for_duplicates=True)
pofile.append(polib.POEntry(msgid="and", msgctxt="some context"))
self.assertRaises(ValueError, add_duplicate)
def test_append4(self):
pofile = polib.pofile('tests/test_pofile_helpers.po', check_for_duplicates=True)
entry = polib.POEntry(msgid="and", msgctxt="some different context")
pofile.append(entry)
self.assertTrue(entry in pofile)
def test_insert1(self):
pofile = polib.pofile('tests/test_pofile_helpers.po')
entry = polib.POEntry(msgid="Foo", msgstr="Bar", msgctxt="Some context")
pofile.insert(0, entry)
self.assertEqual(pofile[0], entry)
def test_insert2(self):
def add_duplicate():
pofile = polib.pofile('tests/test_pofile_helpers.po', check_for_duplicates=True)
pofile.insert(0, polib.POEntry(msgid="and", msgstr="y"))
self.assertRaises(ValueError, add_duplicate)
def test_metadata_as_entry(self):
pofile = polib.pofile('tests/test_fuzzy_header.po')
f = open('tests/test_fuzzy_header.po')
lines = f.readlines()[2:]
f.close()
self.assertEqual(pofile.metadata_as_entry().__unicode__(), "".join(lines))
def test_find1(self):
pofile = polib.pofile('tests/test_pofile_helpers.po')
entry = pofile.find('and')
self.assertEqual(entry.msgstr, u('y'))
def test_find2(self):
pofile = polib.pofile('tests/test_pofile_helpers.po')
entry = pofile.find('pacote', by="msgstr")
self.assertEqual(entry, None)
def test_find3(self):
pofile = polib.pofile('tests/test_pofile_helpers.po')
entry = pofile.find('package', include_obsolete_entries=True)
self.assertEqual(entry.msgstr, u('pacote'))
def test_find4(self):
pofile = polib.pofile('tests/test_utf8.po')
entry1 = pofile.find('test context', msgctxt='@context1')
entry2 = pofile.find('test context', msgctxt='@context2')
self.assertEqual(entry1.msgstr, u('test context 1'))
self.assertEqual(entry2.msgstr, u('test context 2'))
def test_find5(self):
pofile = polib.pofile('tests/test_msgctxt.po')
entry1 = pofile.find('some string')
entry2 = pofile.find('some string', msgctxt='Some message context')
self.assertEqual(entry1.msgstr, u('une cha\u00eene sans contexte'))
self.assertEqual(entry2.msgstr, u('une cha\u00eene avec contexte'))
def test_save1(self):
pofile = polib.POFile()
self.assertRaises(IOError, pofile.save)
def test_save2(self):
fd, tmpfile = tempfile.mkstemp()
os.close(fd)
try:
pofile = polib.POFile()
pofile.save(tmpfile)
pofile.save()
self.assertTrue(os.path.isfile(tmpfile))
finally:
os.remove(tmpfile)
def test_ordered_metadata(self):
pofile = polib.pofile('tests/test_fuzzy_header.po')
f = open('tests/test_fuzzy_header.po')
lines = f.readlines()[2:]
f.close()
mdata = [
('Project-Id-Version', u('PACKAGE VERSION')),
('Report-Msgid-Bugs-To', u('')),
('POT-Creation-Date', u('2010-02-08 16:57+0100')),
('PO-Revision-Date', u('YEAR-MO-DA HO:MI+ZONE')),
('Last-Translator', u('FULL NAME <EMAIL@ADDRESS>')),
('Language-Team', u('LANGUAGE <LL@li.org>')),
('MIME-Version', u('1.0')),
('Content-Type', u('text/plain; charset=UTF-8')),
('Content-Transfer-Encoding', u('8bit')),
('X-Poedit-SearchPath-1', u('Foo')),
('X-Poedit-SearchPath-2', u('Bar')),
('X-Poedit-SearchPath-10', u('Baz')),
]
self.assertEqual(pofile.ordered_metadata(), mdata)
def test_unicode1(self):
pofile = polib.pofile('tests/test_merge_after.po')
f = codecs.open('tests/test_merge_after.po', encoding='utf8')
expected = f.read()
f.close()
self.assertEqual(pofile.__unicode__(), expected)
def test_unicode2(self):
pofile = polib.pofile('tests/test_iso-8859-15.po')
f = codecs.open('tests/test_iso-8859-15.po', encoding='iso-8859-15')
expected = f.read()
f.close()
self.assertEqual(pofile.__unicode__(), expected)
def test_str(self):
pofile = polib.pofile('tests/test_iso-8859-15.po')
if polib.PY3:
f = codecs.open('tests/test_iso-8859-15.po', encoding='iso-8859-15')
else:
f = open('tests/test_iso-8859-15.po')
expected = f.read()
f.close()
self.assertEqual(str(pofile), expected)
def test_wrapping(self):
pofile = polib.pofile('tests/test_wrap.po', wrapwidth=50)
expected = r'''# test wrapping
msgid ""
msgstr ""
msgid "This line will not be wrapped"
msgstr ""
msgid ""
"Some line that contain special characters \" and"
" that \t is very, very, very long...: %s \n"
msgstr ""
msgid ""
"Some line that contain special characters "
"\"foobar\" and that contains whitespace at the "
"end "
msgstr ""
'''
self.assertEqual(str(pofile), expected)
def test_sort(self):
a1 = polib.POEntry(msgid='a1', occurrences=[('b.py', 1), ('b.py', 3)])
a2 = polib.POEntry(msgid='a2')
a3 = polib.POEntry(msgid='a1', occurrences=[('b.py', 1), ('b.py', 3)], obsolete=True)
b1 = polib.POEntry(msgid='b1', occurrences=[('b.py', 1), ('b.py', 3)])
b2 = polib.POEntry(msgid='b2', occurrences=[('d.py', 3), ('b.py', 1)])
c1 = polib.POEntry(msgid='c1', occurrences=[('a.py', 1), ('b.py', 1)])
c2 = polib.POEntry(msgid='c2', occurrences=[('a.py', 1), ('a.py', 3)])
pofile = polib.POFile()
pofile.append(b1)
pofile.append(a3)
pofile.append(a2)
pofile.append(a1)
pofile.append(b2)
pofile.append(c1)
pofile.append(c2)
pofile.sort()
expected = u('''#
msgid ""
msgstr ""
msgid "a2"
msgstr ""
#: a.py:1 a.py:3
msgid "c2"
msgstr ""
#: a.py:1 b.py:1
msgid "c1"
msgstr ""
#: b.py:1 b.py:3
msgid "a1"
msgstr ""
#: b.py:1 b.py:3
msgid "b1"
msgstr ""
#: d.py:3 b.py:1
msgid "b2"
msgstr ""
#~ msgid "a1"
#~ msgstr ""
''')
self.assertEqual(pofile.__unicode__(), expected)
def test_trailing_comment(self):
pofile = polib.pofile('tests/test_trailing_comment.po')
expected = r'''#
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8\n"
msgid "foo"
msgstr "oof"
'''
self.assertEqual(str(pofile), expected)
def test_comment_ordering(self):
"""
Test that "# " comments appear before "#. " comments when writing.
"""
pofile = polib.pofile('tests/test_comment_ordering.po')
expected = r'''#
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8\n"
# First comment line
#. Second comment line
msgid "foo"
msgstr "oof"
'''
self.assertEqual(str(pofile), expected)
class TestPoFile(unittest.TestCase):
"""
Tests for PoFile class.
"""
def test_save_as_mofile(self):
"""
Test for the POFile.save_as_mofile() method.
"""
import distutils.spawn
msgfmt = distutils.spawn.find_executable('msgfmt')
if msgfmt is None:
try:
return unittest.skip('msgfmt is not installed')
except AttributeError:
return
reffiles = ['tests/test_utf8.po', 'tests/test_iso-8859-15.po']
encodings = ['utf-8', 'iso-8859-15']
for reffile, encoding in zip(reffiles, encodings):
fd, tmpfile1 = tempfile.mkstemp()
os.close(fd)
fd, tmpfile2 = tempfile.mkstemp()
os.close(fd)
po = polib.pofile(reffile, autodetect_encoding=False, encoding=encoding)
po.save_as_mofile(tmpfile1)
subprocess.call([msgfmt, '--no-hash', '--no-convert', '-o', tmpfile2, reffile])
try:
f = open(tmpfile1, 'rb')
s1 = f.read()
f.close()
f = open(tmpfile2, 'rb')
s2 = f.read()
f.close()
self.assertEqual(s1, s2)
finally:
os.remove(tmpfile1)
os.remove(tmpfile2)
def test_merge(self):
refpot = polib.pofile('tests/test_merge.pot')
po = polib.pofile('tests/test_merge_before.po')
po.merge(refpot)
expected_po = polib.pofile('tests/test_merge_after.po')
self.assertEqual(po, expected_po)
def test_percent_translated(self):
po = polib.pofile('tests/test_pofile_helpers.po')
self.assertEqual(po.percent_translated(), 53)
po = polib.POFile()
self.assertEqual(po.percent_translated(), 100)
def test_translated_entries(self):
po = polib.pofile('tests/test_pofile_helpers.po')
self.assertEqual(len(po.translated_entries()), 7)
def test_untranslated_entries(self):
po = polib.pofile('tests/test_pofile_helpers.po')
self.assertEqual(len(po.untranslated_entries()), 4)
def test_fuzzy_entries(self):
po = polib.pofile('tests/test_pofile_helpers.po')
self.assertEqual(len(po.fuzzy_entries()), 2)
def test_obsolete_entries(self):
po = polib.pofile('tests/test_pofile_helpers.po')
self.assertEqual(len(po.obsolete_entries()), 4)
def test_unusual_metadata_location(self):
po = polib.pofile('tests/test_unusual_metadata_location.po')
self.assertNotEqual(po.metadata, {})
self.assertEqual(po.metadata['Content-Type'], 'text/plain; charset=UTF-8')
def test_comment_starting_with_two_hashes(self):
po = polib.pofile('tests/test_utf8.po')
e = po.find("Some comment starting with two '#'", by='tcomment')
self.assertTrue(isinstance(e, polib.POEntry))
def test_word_garbage(self):
po = polib.pofile('tests/test_word_garbage.po')
e = po.find("Whatever", by='msgid')
self.assertTrue(isinstance(e, polib.POEntry))
def test_compare1(self):
entry = polib.POEntry(msgid="foo")
other = polib.POEntry(msgctxt="Some context", msgid="foo")
self.assertNotEqual(entry, other)
def test_compare2(self):
entry = polib.POEntry(msgid="foo")
other = polib.POEntry(msgid_plural="Plural", msgid="foo")
self.assertNotEqual(entry, other)
def test_compare3(self):
entry = polib.POEntry(
msgid_plural="Plural", msgid="foo"
)
other = polib.POEntry(
msgid_plural="Plural", msgstr_plural={0: "Value", 1: "Values"}, msgid="foo"
)
self.assertNotEqual(entry, other)
def test_compare4(self):
entry = polib.POEntry(msgctxt="Some context", msgid="foo")
other = polib.POEntry(msgctxt="Other context", msgid="foo")
self.assertNotEqual(entry, other)
def test_compare5(self):
entry = polib.POEntry(msgid_plural="Some plural", msgid="foo")
other = polib.POEntry(msgid_plural="Other plural", msgid="foo")
self.assertNotEqual(entry, other)
def test_compare6(self):
entry = polib.POEntry(msgstr_plural={0: "Value", 1: "Values"}, msgid="foo")
other = polib.POEntry(msgstr_plural={0: "Other value", 1: "Other values"}, msgid="foo")
self.assertTrue(entry > other)
def test_compare7(self):
entry = polib.POEntry(msgstr="Some msgstr", msgid="foo")
other = polib.POEntry(msgstr="Other msgstr", msgid="foo")
self.assertTrue(entry >= other)
self.assertNotEqual(entry, other)
entry = polib.POEntry(msgstr="A msgstr", msgid="foo")
other = polib.POEntry(msgstr="Other msgstr", msgid="foo")
self.assertTrue(entry <= other)
self.assertNotEqual(entry, other)
def test_compare8(self):
entry = polib.POEntry(
msgctxt="Some context", msgid_plural="Plural",
msgstr_plural={0: "Value", 1: "Values"}, msgid="foo"
)
other = polib.POEntry(
msgctxt="Some context", msgid_plural="Plural",
msgstr_plural={0: "Value", 1: "Values"}, msgid="foo"
)
self.assertEqual(entry, other)
def test_fuzzy_obsolete(self):
pofile = polib.pofile('tests/test_obsolete_is_not_fuzzy.po')
self.assertEqual(len(pofile.fuzzy_entries()), 1)
def test_set_fuzzy(self):
pofile = polib.pofile('tests/test_set_fuzzy.po')
pofile[0].fuzzy = True
pofile[1].fuzzy = False
self.assertTrue(pofile[0].fuzzy)
self.assertFalse(pofile[1].fuzzy)
class TestMoFile(unittest.TestCase):
"""
Tests for MoFile class.
"""
def test_dummy_methods(self):
"""
This is stupid and just here for code coverage.
"""
mo = polib.MOFile()
self.assertEqual(mo.percent_translated(), 100)
self.assertEqual(mo.translated_entries(), mo)
self.assertEqual(mo.untranslated_entries(), [])
self.assertEqual(mo.fuzzy_entries(), [])
self.assertEqual(mo.obsolete_entries(), [])
def test_save_as_pofile(self):
"""
Test for the MOFile.save_as_pofile() method.
"""
fd, tmpfile = tempfile.mkstemp()
os.close(fd)
mo = polib.mofile('tests/test_utf8.mo', wrapwidth=78)
mo.save_as_pofile(tmpfile)
try:
if polib.PY3:
f = open(tmpfile, encoding='utf-8')
else:
f = open(tmpfile)
s1 = f.read()
f.close()
if polib.PY3:
f = open('tests/test_save_as_pofile.po', encoding='utf-8')
else:
f = open('tests/test_save_as_pofile.po')
s2 = f.read()
f.close()
self.assertEqual(s1, s2)
finally:
os.remove(tmpfile)
def test_msgctxt(self):
#import pdb; pdb.set_trace()
mo = polib.mofile('tests/test_msgctxt.mo')
expected = u('''msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8\u005cn"
msgctxt "Some message context"
msgid "some string"
msgstr "une cha\u00eene avec contexte"
msgctxt "Some other message context"
msgid "singular"
msgid_plural "plural"
msgstr[0] "singulier"
msgstr[1] "pluriel"
msgid "some string"
msgstr "une cha\u00eene sans contexte"
''')
self.assertEqual(mo.__unicode__(), expected)
def test_invalid_version(self):
self.assertRaises(IOError, polib.mofile, 'tests/test_invalid_version.mo')
polib.mofile('tests/test_version_1.1.mo')
def test_no_header(self):
mo = polib.mofile('tests/test_no_header.mo')
expected = u('''msgid ""
msgstr ""
msgid "bar"
msgstr "rab"
msgid "foo"
msgstr "oof"
''')
self.assertEqual(mo.__unicode__(), expected)
if __name__ == '__main__':
unittest.main()
|