test02_transliteration.py 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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)[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(self.roman, self.tbl, r2s=True)[0]
  39. self.assertEqual(
  40. txl, self.script,
  41. f"R2S transliteration error for {self.tbl}!\n"
  42. f"Original: {self.roman}")
  43. def make_suite():
  44. """
  45. Build parametrized test cases.
  46. """
  47. if "TXL_CONFIG_TABLE_DIR" in environ:
  48. del environ["TXL_CONFIG_TABLE_DIR"]
  49. reload_tables()
  50. suite = TestSuite()
  51. with open(
  52. path.join(TEST_DATA_DIR, "sample_strings.csv"),
  53. newline="") as fh:
  54. csv = reader(fh)
  55. csv.__next__() # Discard header row.
  56. for row in csv:
  57. if len(row[2]):
  58. # Inject transliteration info in the test case.
  59. for tname in ("sample_s2r", "sample_r2s"):
  60. tcase = TestTrans(tname)
  61. tcase.tbl = row[2]
  62. tcase.script = row[3].strip()
  63. tcase.roman = row[4].strip()
  64. suite.addTest(tcase)
  65. return suite
  66. TextTestRunner().run(make_suite())