Overview
Comment: | merge trunk |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | bdic_opt |
Files: | files | file ages | folders |
SHA3-256: |
43afb8b856226923e63f4626335a2327 |
User & Date: | olr on 2020-09-11 19:20:20 |
Other Links: | branch diff | manifest | tags |
Context
2020-09-12
| ||
12:22 | [fr] tests update check-in: 0207fe1b5b user: olr tags: fr, bdic_opt | |
2020-09-11
| ||
19:20 | merge trunk check-in: 43afb8b856 user: olr tags: bdic_opt | |
19:18 | [fr] tests: spellchecker.suggest() check-in: 4a19028115 user: olr tags: trunk, fr | |
17:22 | [graphspell][py] ibdawg optimization: precalculate bytes in binary dictionary check-in: ae767aaff5 user: olr tags: graphspell, bdic_opt | |
Changes
Modified gc_lang/fr/modules/tests_modules.py from [a3d3af4689] to [1156e862bc].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #! python3 """ Grammar checker tests for French language """ import unittest from ..graphspell.ibdawg import IBDAWG from . import conj from . import phonet from . import mfsp class TestDictionary (unittest.TestCase): "Test du correcteur orthographique" @classmethod def setUpClass (cls): cls.oDic = IBDAWG("${dic_main_filename_py}") | > > > > > > > > > > > > > > > | 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 | #! python3 """ Grammar checker tests for French language """ import unittest import time from contextlib import contextmanager from ..graphspell.ibdawg import IBDAWG from . import conj from . import phonet from . import mfsp @contextmanager def timeblock (label, hDst=None): "performance counter (contextmanager)" start = time.perf_counter() try: yield finally: end = time.perf_counter() print('{} : {}'.format(label, end - start)) if hDst: hDst.write("{:<12.6}".format(end-start)) class TestDictionary (unittest.TestCase): "Test du correcteur orthographique" @classmethod def setUpClass (cls): cls.oDic = IBDAWG("${dic_main_filename_py}") |
︙ | ︙ | |||
31 32 33 34 35 36 37 38 39 40 41 42 43 44 | for sWord in ["Branche", "branche", "BRANCHE", "Émilie", "ÉMILIE", "aujourd'hui", "aujourd’hui", "Aujourd'hui", "Aujourd’hui"]: self.assertTrue(self.oDic.isValid(sWord), sWord) def test_isvalid_failed (self): for sWord in ["BranchE", "BRanche", "BRAnCHE", "émilie", "éMILIE", "émiLie"]: self.assertFalse(self.oDic.isValid(sWord), sWord) class TestConjugation (unittest.TestCase): "Tests des conjugaisons" @classmethod def setUpClass (cls): pass | > > > > > | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | for sWord in ["Branche", "branche", "BRANCHE", "Émilie", "ÉMILIE", "aujourd'hui", "aujourd’hui", "Aujourd'hui", "Aujourd’hui"]: self.assertTrue(self.oDic.isValid(sWord), sWord) def test_isvalid_failed (self): for sWord in ["BranchE", "BRanche", "BRAnCHE", "émilie", "éMILIE", "émiLie"]: self.assertFalse(self.oDic.isValid(sWord), sWord) def test_suggest (self): for sWord in ["déelirranttesss", "vallidasion", "Emilie", "exibission"]: with timeblock(sWord): self.assertNotEqual(0, self.oDic.suggest(sWord)) class TestConjugation (unittest.TestCase): "Tests des conjugaisons" @classmethod def setUpClass (cls): pass |
︙ | ︙ |