test02_transliteration.py 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. import logging
  2. from unittest import TestCase, TestSuite, TextTestRunner
  3. from csv import reader
  4. from os import environ, path
  5. from tests import TEST_DATA_DIR, reload_tables
  6. from scriptshifter.trans import transliterate
  7. import scriptshifter.tables
  8. logger = logging.getLogger(__name__)
  9. class TestTrans(TestCase):
  10. """
  11. Test S2R transliteration.
  12. Modified test case class to run independent tests for each CSV row.
  13. TODO use a comprehensive sample table and report errors for unsupported
  14. languages.
  15. """
  16. maxDiff = None
  17. def sample_s2r(self):
  18. """
  19. Test S2R transliteration for one CSV sample.
  20. This function name won't start with `test_` otherwise will be
  21. automatically run without parameters.
  22. """
  23. config = scriptshifter.tables.load_table(self.tbl)
  24. if "script_to_roman" in config:
  25. txl = transliterate(self.script, self.tbl, capitalize="first")[0]
  26. self.assertEqual(
  27. txl, self.roman,
  28. f"S2R transliteration error for {self.tbl}!\n"
  29. f"Original: {self.script}")
  30. def sample_r2s(self):
  31. """
  32. Test R2S transliteration for one CSV sample.
  33. This function name won't start with `test_` otherwise will be
  34. automatically run without parameters.
  35. """
  36. config = scriptshifter.tables.load_table(self.tbl)
  37. if "roman_to_script" in config:
  38. txl = transliterate(
  39. self.roman, self.tbl, r2s=True, capitalize="first")[0]
  40. self.assertEqual(
  41. txl, self.script,
  42. f"R2S transliteration error for {self.tbl}!\n"
  43. f"Original: {self.roman}")
  44. def make_suite():
  45. """
  46. Build parametrized test cases.
  47. """
  48. if "TXL_CONFIG_TABLE_DIR" in environ:
  49. del environ["TXL_CONFIG_TABLE_DIR"]
  50. reload_tables()
  51. suite = TestSuite()
  52. with open(
  53. path.join(TEST_DATA_DIR, "sample_strings.csv"),
  54. newline="") as fh:
  55. csv = reader(fh)
  56. csv.__next__() # Discard header row.
  57. for row in csv:
  58. if len(row[2]):
  59. # Inject transliteration info in the test case.
  60. for tname in ("sample_s2r", "sample_r2s"):
  61. tcase = TestTrans(tname)
  62. tcase.tbl = row[2]
  63. tcase.script = row[3].strip()
  64. tcase.roman = row[4].strip()
  65. suite.addTest(tcase)
  66. return suite
  67. TextTestRunner().run(make_suite())