test02_transliteration.py 2.0 KB

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