blob: ed90bb7c387b59ce3c53f594ec7a7ed29f34b9ec [file] [log] [blame]
Bram Moolenaard7a06b12013-05-21 13:05:15 +02001Test for regexp patterns with multi-byte support, using utf-8.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002See test64 for the non-multi-byte tests.
3
4A pattern that gives the expected result produces OK, so that we know it was
5actually tried.
6
7STARTTEST
8:so small.vim
9:so mbyte.vim
Bram Moolenaard7a06b12013-05-21 13:05:15 +020010:set encoding=utf-8 viminfo+=nviminfo
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +020011:" tl is a List of Lists with:
12:" regexp pattern
13:" text to test the pattern on
14:" expected match (optional)
15:" expected submatch 1 (optional)
16:" expected submatch 2 (optional)
17:" etc.
18:" When there is no match use only the first two items.
19:let tl = []
20
21:"""" Multi-byte character tests. These will fail unless vim is compiled
22:"""" with Multibyte (FEAT_MBYTE) or BIG/HUGE features.
23:call add(tl, ['[[:alpha:][=a=]]\+', '879 aiaãâaiuvna ', 'aiaãâaiuvna'])
24:call add(tl, ['[[=a=]]\+', 'ddaãâbcd', 'aãâ']) " equivalence classes
25:call add(tl, ['[^ม ]\+', 'มม oijasoifjos ifjoisj f osij j มมมมม abcd', 'oijasoifjos'])
26:call add(tl, [' [^ ]\+', 'start มabcdม ', ' มabcdม'])
27:call add(tl, ['[ม[:alpha:][=a=]]\+', '879 aiaãมâมaiuvna ', 'aiaãมâมaiuvna'])
28
Bram Moolenaar0fabe3f2013-05-21 12:34:17 +020029:" this is not a normal "i" but 0xec
30:call add(tl, ['\p\+', 'ìa', 'ìa'])
31
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +020032:"""" Run the tests
33
34:"
35:for t in tl
36: let l = matchlist(t[1], t[0])
37:" check the match itself
38: if len(l) == 0 && len(t) > 2
39: $put ='ERROR: pat: \"' . t[0] . '\", text: \"' . t[1] . '\", did not match, expected: \"' . t[2] . '\"'
40: elseif len(l) > 0 && len(t) == 2
41: $put ='ERROR: pat: \"' . t[0] . '\", text: \"' . t[1] . '\", match: \"' . l[0] . '\", expected no match'
42: elseif len(t) > 2 && l[0] != t[2]
43: $put ='ERROR: pat: \"' . t[0] . '\", text: \"' . t[1] . '\", match: \"' . l[0] . '\", expected: \"' . t[2] . '\"'
44: else
45: $put ='OK - ' . t[0]
46: endif
47: if len(l) > 0
48:" check all the nine submatches
49: for i in range(1, 9)
50: if len(t) <= i + 2
51: let e = ''
52: else
53: let e = t[i + 2]
54: endif
55: if l[i] != e
56: $put ='ERROR: pat: \"' . t[0] . '\", text: \"' . t[1] . '\", submatch ' . i . ': \"' . l[i] . '\", expected: \"' . e . '\"'
57: endif
58: endfor
59: unlet i
60: endif
61:endfor
62:unlet t tl e l
63
64:/\%#=1^Results/,$wq! test.out
65ENDTEST
66
67Results of test95: