forked from mipt-cs/regexp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
advanced_sub_test.py
60 lines (56 loc) · 1.84 KB
/
advanced_sub_test.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
#!/usr/bin/env python3
from regexp_test import regexp_test, SUB
import advanced_sub
import unittest
@regexp_test(advanced_sub)
class AdvancedSubTest(unittest.TestCase):
TEST_DATA = {
'REGEXP_1': ( # название тестируемого регулярного выражения
SUB, # тип тестируемого метода — SUB для этого файла
{ # словарь с тестовыми данными вида (строка на входе => строка на выходе)
'aAc': 'a!A!c',
'aZc': 'a!Z!c',
'aZZc': 'a!Z!!Z!c',
'aBaCa': 'a!B!a!C!a'
}
),
'REGEXP_2': (
SUB,
{
'abc': 'abc',
'abbc': 'abc',
'azzzc': 'azc',
'arrrrc': 'arc',
'xxxxxx': 'x'
}
),
'REGEXP_3': (
SUB,
{
'this is text': 'this is text',
'this is is text': 'this *is* text',
'this is is is text': 'this *is* text',
'this is text text': 'this is *text*',
'this is is text text': 'this *is* *text*'
}
),
'REGEXP_4': (
SUB,
{
'one two three': 'two one three',
'dog cat wolf': 'cat dog wolf',
'goose car rat': 'goose rat car'
}
),
'REGEXP_5': (
SUB,
{
'cat dog': 'cat dog',
'cat dog cat': 'cat dog cat',
'dog cat dog cat cat': 'dog dog',
'dog wolf dog rat rat wolf wolf': 'dog dog rat rat'
}
)
}
if __name__ == '__main__':
unittest.main()