2016-04-03 14:02:02 +02:00
|
|
|
|
" Tests for regexp in utf8 encoding
|
|
|
|
|
|
|
|
|
|
func s:equivalence_test()
|
|
|
|
|
let str = "AÀÁÂÃÄÅĀĂĄǍǞǠẢ BḂḆ CÇĆĈĊČ DĎĐḊḎḐ EÈÉÊËĒĔĖĘĚẺẼ FḞ GĜĞĠĢǤǦǴḠ HĤĦḢḦḨ IÌÍÎÏĨĪĬĮİǏỈ JĴ KĶǨḰḴ LĹĻĽĿŁḺ MḾṀ NÑŃŅŇṄṈ OÒÓÔÕÖØŌŎŐƠǑǪǬỎ PṔṖ Q RŔŖŘṘṞ SŚŜŞŠṠ TŢŤŦṪṮ UÙÚÛÜŨŪŬŮŰŲƯǓỦ VṼ WŴẀẂẄẆ XẊẌ YÝŶŸẎỲỶỸ ZŹŻŽƵẐẔ aàáâãäåāăąǎǟǡả bḃḇ cçćĉċč dďđḋḏḑ eèéêëēĕėęěẻẽ fḟ gĝğġģǥǧǵḡ hĥħḣḧḩẖ iìíîïĩīĭįǐỉ jĵǰ kķǩḱḵ lĺļľŀłḻ mḿṁ nñńņňʼnṅṉ oòóôõöøōŏőơǒǫǭỏ pṕṗ q rŕŗřṙṟ sśŝşšṡ tţťŧṫṯẗ uùúûüũūŭůűųưǔủ vṽ wŵẁẃẅẇẘ xẋẍ yýÿŷẏẙỳỷỹ zźżžƶẑẕ"
|
|
|
|
|
let groups = split(str)
|
|
|
|
|
for group1 in groups
|
|
|
|
|
for c in split(group1, '\zs')
|
|
|
|
|
" next statement confirms that equivalence class matches every
|
|
|
|
|
" character in group
|
|
|
|
|
call assert_match('^[[=' . c . '=]]*$', group1)
|
|
|
|
|
for group2 in groups
|
|
|
|
|
if group2 != group1
|
|
|
|
|
" next statement converts that equivalence class doesn't match
|
|
|
|
|
" character in any other group
|
|
|
|
|
call assert_equal(-1, match(group2, '[[=' . c . '=]]'))
|
|
|
|
|
endif
|
|
|
|
|
endfor
|
|
|
|
|
endfor
|
|
|
|
|
endfor
|
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
|
|
func Test_equivalence_re1()
|
|
|
|
|
set re=1
|
|
|
|
|
call s:equivalence_test()
|
2016-08-16 22:50:55 +02:00
|
|
|
|
set re=0
|
2016-04-03 14:02:02 +02:00
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
|
|
func Test_equivalence_re2()
|
|
|
|
|
set re=2
|
|
|
|
|
call s:equivalence_test()
|
2016-08-16 22:50:55 +02:00
|
|
|
|
set re=0
|
2016-04-03 14:02:02 +02:00
|
|
|
|
endfunc
|
2016-04-24 14:40:12 +02:00
|
|
|
|
|
|
|
|
|
func s:classes_test()
|
2016-04-24 15:11:02 +02:00
|
|
|
|
set isprint=@,161-255
|
2016-04-24 14:40:12 +02:00
|
|
|
|
call assert_equal('Motörhead', matchstr('Motörhead', '[[:print:]]\+'))
|
|
|
|
|
|
2017-03-29 15:31:20 +02:00
|
|
|
|
let alnumchars = ''
|
2016-04-24 14:40:12 +02:00
|
|
|
|
let alphachars = ''
|
2017-03-29 15:31:20 +02:00
|
|
|
|
let backspacechar = ''
|
|
|
|
|
let blankchars = ''
|
|
|
|
|
let cntrlchars = ''
|
|
|
|
|
let digitchars = ''
|
|
|
|
|
let escapechar = ''
|
|
|
|
|
let graphchars = ''
|
2016-04-24 14:40:12 +02:00
|
|
|
|
let lowerchars = ''
|
|
|
|
|
let printchars = ''
|
|
|
|
|
let punctchars = ''
|
2017-03-29 15:31:20 +02:00
|
|
|
|
let returnchar = ''
|
|
|
|
|
let spacechars = ''
|
|
|
|
|
let tabchar = ''
|
|
|
|
|
let upperchars = ''
|
2016-04-24 14:40:12 +02:00
|
|
|
|
let xdigitchars = ''
|
2019-01-31 15:34:40 +01:00
|
|
|
|
let identchars = ''
|
|
|
|
|
let identchars1 = ''
|
|
|
|
|
let kwordchars = ''
|
|
|
|
|
let kwordchars1 = ''
|
|
|
|
|
let fnamechars = ''
|
|
|
|
|
let fnamechars1 = ''
|
2016-04-24 14:40:12 +02:00
|
|
|
|
let i = 1
|
|
|
|
|
while i <= 255
|
|
|
|
|
let c = nr2char(i)
|
|
|
|
|
if c =~ '[[:alpha:]]'
|
|
|
|
|
let alphachars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:alnum:]]'
|
|
|
|
|
let alnumchars .= c
|
|
|
|
|
endif
|
2017-03-29 15:31:20 +02:00
|
|
|
|
if c =~ '[[:backspace:]]'
|
|
|
|
|
let backspacechar .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:blank:]]'
|
|
|
|
|
let blankchars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:cntrl:]]'
|
|
|
|
|
let cntrlchars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:digit:]]'
|
|
|
|
|
let digitchars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:escape:]]'
|
|
|
|
|
let escapechar .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:graph:]]'
|
|
|
|
|
let graphchars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:lower:]]'
|
|
|
|
|
let lowerchars .= c
|
|
|
|
|
endif
|
2016-04-24 14:40:12 +02:00
|
|
|
|
if c =~ '[[:print:]]'
|
|
|
|
|
let printchars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:punct:]]'
|
|
|
|
|
let punctchars .= c
|
|
|
|
|
endif
|
2017-03-29 15:31:20 +02:00
|
|
|
|
if c =~ '[[:return:]]'
|
|
|
|
|
let returnchar .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:space:]]'
|
|
|
|
|
let spacechars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:tab:]]'
|
|
|
|
|
let tabchar .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:upper:]]'
|
|
|
|
|
let upperchars .= c
|
|
|
|
|
endif
|
2016-04-24 14:40:12 +02:00
|
|
|
|
if c =~ '[[:xdigit:]]'
|
|
|
|
|
let xdigitchars .= c
|
|
|
|
|
endif
|
2019-01-31 15:34:40 +01:00
|
|
|
|
if c =~ '[[:ident:]]'
|
|
|
|
|
let identchars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '\i'
|
|
|
|
|
let identchars1 .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:keyword:]]'
|
|
|
|
|
let kwordchars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '\k'
|
|
|
|
|
let kwordchars1 .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '[[:fname:]]'
|
|
|
|
|
let fnamechars .= c
|
|
|
|
|
endif
|
|
|
|
|
if c =~ '\f'
|
|
|
|
|
let fnamechars1 .= c
|
|
|
|
|
endif
|
2016-04-24 14:40:12 +02:00
|
|
|
|
let i += 1
|
|
|
|
|
endwhile
|
|
|
|
|
|
|
|
|
|
call assert_equal('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', alphachars)
|
|
|
|
|
call assert_equal('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', alnumchars)
|
2017-03-29 15:31:20 +02:00
|
|
|
|
call assert_equal("\b", backspacechar)
|
|
|
|
|
call assert_equal("\t ", blankchars)
|
2017-03-30 22:20:29 +02:00
|
|
|
|
call assert_equal("\x01\x02\x03\x04\x05\x06\x07\b\t\n\x0b\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\e\x1c\x1d\x1e\x1f\x7f", cntrlchars)
|
2017-03-29 15:31:20 +02:00
|
|
|
|
call assert_equal("0123456789", digitchars)
|
|
|
|
|
call assert_equal("\<Esc>", escapechar)
|
2017-03-30 22:20:29 +02:00
|
|
|
|
call assert_equal('!"#$%&''()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~', graphchars)
|
2017-03-29 15:31:20 +02:00
|
|
|
|
call assert_equal('abcdefghijklmnopqrstuvwxyzµßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ', lowerchars)
|
2016-04-24 14:40:12 +02:00
|
|
|
|
call assert_equal(' !"#$%&''()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ', printchars)
|
|
|
|
|
call assert_equal('!"#$%&''()*+,-./:;<=>?@[\]^_`{|}~', punctchars)
|
2017-03-29 15:31:20 +02:00
|
|
|
|
call assert_equal('ABCDEFGHIJKLMNOPQRSTUVWXYZÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ', upperchars)
|
|
|
|
|
call assert_equal("\r", returnchar)
|
|
|
|
|
call assert_equal("\t\n\x0b\f\r ", spacechars)
|
|
|
|
|
call assert_equal("\t", tabchar)
|
2016-04-24 14:40:12 +02:00
|
|
|
|
call assert_equal('0123456789ABCDEFabcdef', xdigitchars)
|
2019-01-31 15:34:40 +01:00
|
|
|
|
|
|
|
|
|
if has('win32')
|
|
|
|
|
let identchars_ok = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz
¡¢£¤¥¦§µÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ'
|
|
|
|
|
let kwordchars_ok = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyzµÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
elseif has('ebcdic')
|
|
|
|
|
let identchars_ok = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz¬®µº¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
let kwordchars_ok = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz¬®µº¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
else
|
|
|
|
|
let identchars_ok = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyzµÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
let kwordchars_ok = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyzµÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if has('win32')
|
|
|
|
|
let fnamechars_ok = '!#$%+,-./0123456789:=@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]_abcdefghijklmnopqrstuvwxyz{}~ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
elseif has('amiga')
|
|
|
|
|
let fnamechars_ok = '$+,-./0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
elseif has('vms')
|
|
|
|
|
let fnamechars_ok = '#$%+,-./0123456789:;<>ABCDEFGHIJKLMNOPQRSTUVWXYZ[]_abcdefghijklmnopqrstuvwxyz~ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
elseif has('ebcdic')
|
|
|
|
|
let fnamechars_ok = '#$%+,-./=ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
else
|
|
|
|
|
let fnamechars_ok = '#$%+,-./0123456789=ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ'
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
call assert_equal(identchars_ok, identchars)
|
|
|
|
|
call assert_equal(kwordchars_ok, kwordchars)
|
|
|
|
|
call assert_equal(fnamechars_ok, fnamechars)
|
|
|
|
|
|
|
|
|
|
call assert_equal(identchars1, identchars)
|
|
|
|
|
call assert_equal(kwordchars1, kwordchars)
|
|
|
|
|
call assert_equal(fnamechars1, fnamechars)
|
2016-04-24 14:40:12 +02:00
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
|
|
func Test_classes_re1()
|
|
|
|
|
set re=1
|
|
|
|
|
call s:classes_test()
|
2016-08-16 22:50:55 +02:00
|
|
|
|
set re=0
|
2016-04-24 14:40:12 +02:00
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
|
|
func Test_classes_re2()
|
|
|
|
|
set re=2
|
|
|
|
|
call s:classes_test()
|
2016-08-16 22:50:55 +02:00
|
|
|
|
set re=0
|
|
|
|
|
endfunc
|
2017-06-05 16:54:08 +02:00
|
|
|
|
|
|
|
|
|
func Test_reversed_range()
|
|
|
|
|
for re in range(0, 2)
|
|
|
|
|
exe 'set re=' . re
|
|
|
|
|
call assert_fails('call match("abc def", "[c-a]")', 'E944:')
|
|
|
|
|
endfor
|
|
|
|
|
set re=0
|
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
|
|
func Test_large_class()
|
|
|
|
|
set re=1
|
|
|
|
|
call assert_fails('call match("abc def", "[\u3000-\u4000]")', 'E945:')
|
|
|
|
|
set re=2
|
|
|
|
|
call assert_equal(0, 'abc def' =~# '[\u3000-\u4000]')
|
|
|
|
|
call assert_equal(1, "\u3042" =~# '[\u3000-\u4000]')
|
|
|
|
|
set re=0
|
|
|
|
|
endfunc
|