summaryrefslogtreecommitdiff
path: root/src/testdir/test60.in
blob: 58a2c90833260dd2a08cddd8447744d35cb434f0 (plain)
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
Tests for the exists() function.  vim: set ft=vim :

STARTTEST
:so small.vim
:function! RunTest(str, result)
    if exists(a:str) == a:result
	echo "OK"
    else
	echo "FAILED: Checking for " . a:str
    endif
endfunction
:function! TestExists()
    augroup myagroup
	autocmd! BufEnter *.my echo 'myfile edited'
    augroup END
    redir! > test.out

    " valid autocmd group
    call RunTest('#myagroup', 1)

    " Valid autocmd group and event
    call RunTest('#myagroup#BufEnter', 1)

    " Valid autocmd group, event and pattern
    call RunTest('#myagroup#BufEnter#*.my', 1)

    " Valid autocmd event
    call RunTest('#BufEnter', 1)

    " Valid autocmd event and pattern
    call RunTest('#BufEnter#*.my', 1)

    " Non-existing autocmd group or event
    call RunTest('#xyzagroup', 0)

    " Non-existing autocmd group and valid autocmd event
    call RunTest('#xyzagroup#BufEnter', 0)

    " Valid autocmd group and autocmd event with no matching pattern
    call RunTest('#myagroup#CmdwinEnter', 0)

    " Valid autocmd group and non-existing autocmd event
    call RunTest('#myagroup#xyzacmd', 0)

    " Valid autocmd group and event and non-matching pattern
    call RunTest('#myagroup#BufEnter#xyzpat', 0)

    " Valid autocmd event and non-matching pattern
    call RunTest('#BufEnter#xyzpat', 0)

    " Empty autocmd group, event and pattern
    call RunTest('###', 0)

    " Empty autocmd group and event or event and pattern
    call RunTest('##', 0)

    " Testing support for event name that exists.
    call RunTest('##SwapExists', 1)

    " Testing support for event name that doesn't exist.
    call RunTest('##SwapNotExists', 0)

    redir END
endfunction
:call TestExists()
:edit! test.out
:set ff=unix
:w
:qa!
ENDTEST