summaryrefslogtreecommitdiff
path: root/tests/test_regexopt.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2019-05-06 18:02:47 +0200
committerGeorg Brandl <georg@python.org>2019-11-10 10:15:13 +0100
commit7827966acdb6431636520d20fc3c148ce52de59b (patch)
tree13a9316eb3eb964c22da0a08f046d44cd81470d0 /tests/test_regexopt.py
parenta281ff8367a3a5f4cc17c9956e9273593558d336 (diff)
downloadpygments-git-7827966acdb6431636520d20fc3c148ce52de59b.tar.gz
Remove unittest classes from the test suite.
Diffstat (limited to 'tests/test_regexopt.py')
-rw-r--r--tests/test_regexopt.py181
1 files changed, 87 insertions, 94 deletions
diff --git a/tests/test_regexopt.py b/tests/test_regexopt.py
index 9c44f498..20d48dda 100644
--- a/tests/test_regexopt.py
+++ b/tests/test_regexopt.py
@@ -9,102 +9,95 @@
import re
import random
-import unittest
-import itertools
+from itertools import combinations_with_replacement
from pygments.regexopt import regex_opt
ALPHABET = ['a', 'b', 'c', 'd', 'e']
-try:
- from itertools import combinations_with_replacement
- N_TRIES = 15
-except ImportError:
- # Python 2.6
- def combinations_with_replacement(iterable, r):
- pool = tuple(iterable)
- n = len(pool)
- for indices in itertools.product(range(n), repeat=r):
- if sorted(indices) == list(indices):
- yield tuple(pool[i] for i in indices)
- N_TRIES = 9
-
-
-class RegexOptTestCase(unittest.TestCase):
-
- def generate_keywordlist(self, length):
- return [''.join(p) for p in
- combinations_with_replacement(ALPHABET, length)]
-
- def test_randomly(self):
- # generate a list of all possible keywords of a certain length using
- # a restricted alphabet, then choose some to match and make sure only
- # those do
- for n in range(3, N_TRIES):
- kwlist = self.generate_keywordlist(n)
- to_match = random.sample(kwlist,
- random.randint(1, len(kwlist) - 1))
- no_match = set(kwlist) - set(to_match)
- rex = re.compile(regex_opt(to_match))
- self.assertEqual(rex.groups, 1)
- for w in to_match:
- self.assertTrue(rex.match(w))
- for w in no_match:
- self.assertFalse(rex.match(w))
-
- def test_prefix(self):
- opt = regex_opt(('a', 'b'), prefix=r':{1,2}')
- print(opt)
- rex = re.compile(opt)
- self.assertFalse(rex.match('a'))
- self.assertTrue(rex.match('::a'))
- self.assertFalse(rex.match(':::')) # fullmatch
-
- def test_suffix(self):
- opt = regex_opt(('a', 'b'), suffix=r':{1,2}')
- print(opt)
- rex = re.compile(opt)
- self.assertFalse(rex.match('a'))
- self.assertTrue(rex.match('a::'))
- self.assertFalse(rex.match(':::')) # fullmatch
-
- def test_suffix_opt(self):
- # test that detected suffixes remain sorted.
- opt = regex_opt(('afoo', 'abfoo'))
- print(opt)
- rex = re.compile(opt)
- m = rex.match('abfoo')
- self.assertEqual(5, m.end())
-
- def test_different_length_grouping(self):
- opt = regex_opt(('a', 'xyz'))
- print(opt)
- rex = re.compile(opt)
- self.assertTrue(rex.match('a'))
- self.assertTrue(rex.match('xyz'))
- self.assertFalse(rex.match('b'))
- self.assertEqual(1, rex.groups)
-
- def test_same_length_grouping(self):
- opt = regex_opt(('a', 'b'))
- print(opt)
- rex = re.compile(opt)
- self.assertTrue(rex.match('a'))
- self.assertTrue(rex.match('b'))
- self.assertFalse(rex.match('x'))
-
- self.assertEqual(1, rex.groups)
- groups = rex.match('a').groups()
- self.assertEqual(('a',), groups)
-
- def test_same_length_suffix_grouping(self):
- opt = regex_opt(('a', 'b'), suffix='(m)')
- print(opt)
- rex = re.compile(opt)
- self.assertTrue(rex.match('am'))
- self.assertTrue(rex.match('bm'))
- self.assertFalse(rex.match('xm'))
- self.assertFalse(rex.match('ax'))
- self.assertEqual(2, rex.groups)
- groups = rex.match('am').groups()
- self.assertEqual(('a', 'm'), groups)
+N_TRIES = 15
+
+
+def generate_keywordlist(length):
+ return [''.join(p) for p in
+ combinations_with_replacement(ALPHABET, length)]
+
+
+def test_randomly():
+ # generate a list of all possible keywords of a certain length using
+ # a restricted alphabet, then choose some to match and make sure only
+ # those do
+ for n in range(3, N_TRIES):
+ kwlist = generate_keywordlist(n)
+ to_match = random.sample(kwlist,
+ random.randint(1, len(kwlist) - 1))
+ no_match = set(kwlist) - set(to_match)
+ rex = re.compile(regex_opt(to_match))
+ assert rex.groups == 1
+ for w in to_match:
+ assert rex.match(w)
+ for w in no_match:
+ assert not rex.match(w)
+
+
+def test_prefix():
+ opt = regex_opt(('a', 'b'), prefix=r':{1,2}')
+ print(opt)
+ rex = re.compile(opt)
+ assert not rex.match('a')
+ assert rex.match('::a')
+ assert not rex.match(':::') # fullmatch
+
+
+def test_suffix():
+ opt = regex_opt(('a', 'b'), suffix=r':{1,2}')
+ print(opt)
+ rex = re.compile(opt)
+ assert not rex.match('a')
+ assert rex.match('a::')
+ assert not rex.match(':::') # fullmatch
+
+
+def test_suffix_opt():
+ # test that detected suffixes remain sorted.
+ opt = regex_opt(('afoo', 'abfoo'))
+ print(opt)
+ rex = re.compile(opt)
+ m = rex.match('abfoo')
+ assert m.end() == 5
+
+
+def test_different_length_grouping():
+ opt = regex_opt(('a', 'xyz'))
+ print(opt)
+ rex = re.compile(opt)
+ assert rex.match('a')
+ assert rex.match('xyz')
+ assert not rex.match('b')
+ assert rex.groups == 1
+
+
+def test_same_length_grouping():
+ opt = regex_opt(('a', 'b'))
+ print(opt)
+ rex = re.compile(opt)
+ assert rex.match('a')
+ assert rex.match('b')
+ assert not rex.match('x')
+
+ assert rex.groups == 1
+ groups = rex.match('a').groups()
+ assert groups == ('a',)
+
+
+def test_same_length_suffix_grouping():
+ opt = regex_opt(('a', 'b'), suffix='(m)')
+ print(opt)
+ rex = re.compile(opt)
+ assert rex.match('am')
+ assert rex.match('bm')
+ assert not rex.match('xm')
+ assert not rex.match('ax')
+ assert rex.groups == 2
+ groups = rex.match('am').groups()
+ assert groups == ('a', 'm')