blob: 22c33c0ac719b7942c2aba245b55aee56549ba08 [file] [log] [blame]
Bram Moolenaar07282f02019-10-10 16:46:17 +02001source shared.vim
Bram Moolenaar3180fe62020-02-02 13:47:06 +01002source term_util.vim
Bram Moolenaar07282f02019-10-10 16:46:17 +02003
Bram Moolenaar7f829ca2020-01-31 22:12:41 +01004command -nargs=1 MissingFeature throw 'Skipped: ' .. <args> .. ' feature missing'
5
Bram Moolenaarb46fecd2019-06-15 17:58:09 +02006" Command to check for the presence of a feature.
7command -nargs=1 CheckFeature call CheckFeature(<f-args>)
8func CheckFeature(name)
Bram Moolenaar79296512020-03-22 16:17:14 +01009 if !has(a:name, 1)
10 throw 'Checking for non-existent feature ' .. a:name
11 endif
Bram Moolenaarb46fecd2019-06-15 17:58:09 +020012 if !has(a:name)
Bram Moolenaar7f829ca2020-01-31 22:12:41 +010013 MissingFeature a:name
Bram Moolenaarb46fecd2019-06-15 17:58:09 +020014 endif
15endfunc
16
17" Command to check for the presence of a working option.
18command -nargs=1 CheckOption call CheckOption(<f-args>)
19func CheckOption(name)
Bram Moolenaarc5a8fdc2020-03-22 20:13:39 +010020 if !exists('&' .. a:name)
21 throw 'Checking for non-existent option ' .. a:name
22 endif
Bram Moolenaarb46fecd2019-06-15 17:58:09 +020023 if !exists('+' .. a:name)
24 throw 'Skipped: ' .. a:name .. ' option not supported'
25 endif
26endfunc
27
Bram Moolenaar15c47602020-03-26 22:16:48 +010028" Command to check for the presence of a built-in function.
Bram Moolenaarb46fecd2019-06-15 17:58:09 +020029command -nargs=1 CheckFunction call CheckFunction(<f-args>)
30func CheckFunction(name)
Bram Moolenaar15c47602020-03-26 22:16:48 +010031 if !exists('?' .. a:name)
32 throw 'Checking for non-existent function ' .. a:name
33 endif
Bram Moolenaarb46fecd2019-06-15 17:58:09 +020034 if !exists('*' .. a:name)
35 throw 'Skipped: ' .. a:name .. ' function missing'
36 endif
37endfunc
Bram Moolenaar4641a122019-07-29 22:10:23 +020038
Bram Moolenaar8c5a2782019-08-07 23:07:07 +020039" Command to check for the presence of an Ex command
40command -nargs=1 CheckCommand call CheckCommand(<f-args>)
41func CheckCommand(name)
42 if !exists(':' .. a:name)
43 throw 'Skipped: ' .. a:name .. ' command not supported'
44 endif
45endfunc
46
47" Command to check for the presence of a shell command
48command -nargs=1 CheckExecutable call CheckExecutable(<f-args>)
49func CheckExecutable(name)
50 if !executable(a:name)
51 throw 'Skipped: ' .. a:name .. ' program not executable'
52 endif
53endfunc
54
Bram Moolenaar4641a122019-07-29 22:10:23 +020055" Command to check for running on MS-Windows
56command CheckMSWindows call CheckMSWindows()
57func CheckMSWindows()
58 if !has('win32')
59 throw 'Skipped: only works on MS-Windows'
60 endif
61endfunc
62
Bram Moolenaar8c5a2782019-08-07 23:07:07 +020063" Command to check for NOT running on MS-Windows
64command CheckNotMSWindows call CheckNotMSWindows()
65func CheckNotMSWindows()
66 if has('win32')
67 throw 'Skipped: does not work on MS-Windows'
68 endif
69endfunc
70
Bram Moolenaar4641a122019-07-29 22:10:23 +020071" Command to check for running on Unix
72command CheckUnix call CheckUnix()
73func CheckUnix()
74 if !has('unix')
75 throw 'Skipped: only works on Unix'
76 endif
77endfunc
Bram Moolenaar3c8ee622019-08-03 22:55:50 +020078
Bram Moolenaar9134f1e2019-11-29 20:26:13 +010079" Command to check for not running on a BSD system.
80" TODO: using this checks should not be needed
81command CheckNotBSD call CheckNotBSD()
82func CheckNotBSD()
83 if has('bsd')
84 throw 'Skipped: does not work on BSD'
85 endif
86endfunc
87
Bram Moolenaar3c8ee622019-08-03 22:55:50 +020088" Command to check that making screendumps is supported.
89" Caller must source screendump.vim
90command CheckScreendump call CheckScreendump()
91func CheckScreendump()
92 if !CanRunVimInTerminal()
93 throw 'Skipped: cannot make screendumps'
94 endif
95endfunc
96
97" Command to check that we can Run Vim in a terminal window
98command CheckRunVimInTerminal call CheckRunVimInTerminal()
99func CheckRunVimInTerminal()
100 if !CanRunVimInTerminal()
101 throw 'Skipped: cannot run Vim in a terminal window'
102 endif
103endfunc
Bram Moolenaar8c5a2782019-08-07 23:07:07 +0200104
105" Command to check that we can run the GUI
106command CheckCanRunGui call CheckCanRunGui()
107func CheckCanRunGui()
108 if !has('gui') || ($DISPLAY == "" && !has('gui_running'))
Bram Moolenaar25143152019-08-09 14:13:57 +0200109 throw 'Skipped: cannot start the GUI'
Bram Moolenaar8c5a2782019-08-07 23:07:07 +0200110 endif
111endfunc
112
113" Command to check that we are using the GUI
114command CheckGui call CheckGui()
115func CheckGui()
116 if !has('gui_running')
117 throw 'Skipped: only works in the GUI'
118 endif
119endfunc
120
121" Command to check that not currently using the GUI
122command CheckNotGui call CheckNotGui()
123func CheckNotGui()
124 if has('gui_running')
125 throw 'Skipped: only works in the terminal'
126 endif
127endfunc
Bram Moolenaar07282f02019-10-10 16:46:17 +0200128
129" Command to check that test is not running as root
130command CheckNotRoot call CheckNotRoot()
131func CheckNotRoot()
132 if IsRoot()
133 throw 'Skipped: cannot run test as root'
134 endif
135endfunc