forked from asciimoo/exrex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.py
137 lines (126 loc) · 4.73 KB
/
tests.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of exrex.
#
# exrex is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# exrex is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with exrex. If not, see < http://www.gnu.org/licenses/ >.
#
# (C) 2012- by Adam Tauber, <[email protected]>
from exrex import generate, count, getone, CATEGORIES, simplify
import re
from sys import exit, version_info
IS_PY3 = version_info[0] == 3
RS = {'[ab][cd]': ['ac', 'ad', 'bc', 'bd']
,'[12]{1,2}': ['1', '2', '11', '12', '21', '22']
,'((hai){2}|world)!': ['haihai!', 'world!']
,'[ab]{1,3}': ['a', 'b', 'aa', 'ab', 'ba', 'bb', 'aaa', 'aab', 'aba', 'abb', 'baa', 'bab', 'bba', 'bbb']
,'\d': list(map(str, range(0, 10)))
,'a[b]?(c){0,1}': ['a', 'ac', 'ab', 'abc']
,'(a(b(c(d(e(f))))))': ['abcdef']
,'(a(b(c(d(e(f){1,2}))))){1,2}': ['abcdef', 'abcdeff', 'abcdefabcdef', 'abcdefabcdeff', 'abcdeffabcdef', 'abcdeffabcdeff']
,'[^a]': [x for x in CATEGORIES['category_any'] if x != 'a']
,'[^asdf]': [x for x in CATEGORIES['category_any'] if x not in 'asdf']
,'asdf': ['asdf']
,'(as|df)': ['as', 'df']
,'[áíő]': [u'á', u'í', u'ő']
,'(a|b)(1|2)\\1\\2\\1\\2': ['a1a1a1', 'a2a2a2', 'b1b1b1', 'b2b2b2']
}
BIGS = ['^a*$'
,'^[a-zA-Z]+$'
,'^(foo){3,}$'
,'^([^/]+)(.*)$'
,'^[^/]+(.*)$'
,'^([^/]+).*$'
,'^[^asdf]+$'
,'^([^0-9]{2,}|(a|s|d|f|g)+|[a-z]+)+$'
,'^([^ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz]|asdf)+$'
,'^(1[0-2]|0[1-9])(:[0-5]\d){2} (A|P)M$'
,'(.*)\\1'
]
def gen_test():
for regex, result in RS.items():
try:
assert list(generate(regex)) == result
except:
print('[E] Assertion error! "%s"\n\t%r != %r' % (regex, list(generate(regex)), result))
return -1
return 0
def count_test():
for regex, result in RS.items():
c = count(regex)
l = len(result)
try:
assert c == l
except:
if IS_PY3:
print('[E] Assertion error! "%s"\n\t%d != %d' % (regex, c, l))
return -1
else:
print('[E] Assertion error! "%s"\n\t%d != %d' % (regex.decode('utf-8'), c, l))
return -1
return 0
def getone_test(tries=200):
for regex,_ in RS.items():
for _ in range(tries):
try:
s = getone(regex)
if IS_PY3:
assert re.match(regex, s, re.U)
else:
assert re.match(regex, s.encode('utf-8'), re.U)
except Exception:
if IS_PY3:
print('[E] Assertion error! "%s"\n\t%s not match' % (regex, s))
return -1
else:
print('[E] Assertion error! "%s"\n\t%s not match' % (regex.decode('utf-8'), s))
return -1
for regex in BIGS:
for _ in range(tries):
try:
s = getone(regex)
if IS_PY3:
assert re.match(regex, s, re.U)
else:
assert re.match(regex, s.encode('utf-8'), re.U)
except:
if IS_PY3:
print('[E] Assertion error! "%s"\n\t%s not match' % (regex, s))
return -1
else:
print('[E] Assertion error! "%s"\n\t%s not match' % (regex.decode('utf-8'), s))
return -1
return 0
def simplify_test():
for regex, result in RS.items():
new_regex = simplify(regex)
if not IS_PY3:
new_regex = new_regex.encode('utf-8')
r = list(generate(new_regex))
try:
assert r == result
except:
print('[E] Assertion error! "%s"\n\t%r != %r' % (regex, r, result))
return -1
if __name__ == '__main__':
tests = {'generation': gen_test,
'count': count_test,
'random generation': getone_test,
'simplification': simplify_test}
for i, (test_name, test) in enumerate(tests.items()):
errors = test()
if not errors:
print('[+] {0} test passed'.format(test_name))
else:
print('[-] {0} test failed'.format(test_name))
exit(i+1)