2020-01-26 15:56:19 +01:00
|
|
|
" Test various aspects of the Vim9 script language.
|
|
|
|
|
2020-01-26 16:50:05 +01:00
|
|
|
source check.vim
|
2020-02-26 18:23:43 +01:00
|
|
|
source view_util.vim
|
2020-01-26 16:50:05 +01:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
" Check that "lines" inside ":def" results in an "error" message.
|
|
|
|
func CheckDefFailure(lines, error)
|
2020-01-26 17:38:12 +01:00
|
|
|
call writefile(['def Func()'] + a:lines + ['enddef'], 'Xdef')
|
2020-01-26 15:56:19 +01:00
|
|
|
call assert_fails('so Xdef', a:error, a:lines)
|
|
|
|
call delete('Xdef')
|
|
|
|
endfunc
|
|
|
|
|
2020-04-16 22:10:49 +02:00
|
|
|
def CheckScriptFailure(lines: list<string>, error: string)
|
|
|
|
writefile(lines, 'Xdef')
|
|
|
|
assert_fails('so Xdef', error, lines)
|
|
|
|
delete('Xdef')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def CheckScriptSuccess(lines: list<string>)
|
|
|
|
writefile(lines, 'Xdef')
|
|
|
|
so Xdef
|
|
|
|
delete('Xdef')
|
|
|
|
enddef
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
def Test_syntax()
|
|
|
|
let var = 234
|
|
|
|
let other: list<string> = ['asdf']
|
|
|
|
enddef
|
|
|
|
|
2020-02-06 13:15:52 +01:00
|
|
|
let s:appendToMe = 'xxx'
|
|
|
|
let s:addToMe = 111
|
2020-02-19 18:14:44 +01:00
|
|
|
let g:existing = 'yes'
|
2020-04-01 21:17:24 +02:00
|
|
|
let g:inc_counter = 1
|
|
|
|
let $SOME_ENV_VAR = 'some'
|
2020-02-06 13:15:52 +01:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
def Test_assignment()
|
|
|
|
let bool1: bool = true
|
|
|
|
assert_equal(v:true, bool1)
|
|
|
|
let bool2: bool = false
|
|
|
|
assert_equal(v:false, bool2)
|
|
|
|
|
2020-02-25 22:58:29 +01:00
|
|
|
let list1: list<bool> = [false, true, false]
|
2020-01-26 15:56:19 +01:00
|
|
|
let list2: list<number> = [1, 2, 3]
|
2020-02-25 22:58:29 +01:00
|
|
|
let list3: list<string> = ['sdf', 'asdf']
|
|
|
|
let list4: list<any> = ['yes', true, 1234]
|
|
|
|
let list5: list<blob> = [0z01, 0z02]
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-02-20 22:54:43 +01:00
|
|
|
let listS: list<string> = []
|
|
|
|
let listN: list<number> = []
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-02-25 22:58:29 +01:00
|
|
|
let dict1: dict<bool> = #{one: false, two: true}
|
2020-01-26 15:56:19 +01:00
|
|
|
let dict2: dict<number> = #{one: 1, two: 2}
|
2020-02-25 22:58:29 +01:00
|
|
|
let dict3: dict<string> = #{key: 'value'}
|
|
|
|
let dict4: dict<any> = #{one: 1, two: '2'}
|
|
|
|
let dict5: dict<blob> = #{one: 0z01, tw: 0z02}
|
2020-02-02 22:24:04 +01:00
|
|
|
|
2020-03-30 22:51:24 +02:00
|
|
|
let a: number = 6
|
|
|
|
assert_equal(6, a)
|
|
|
|
|
2020-02-29 23:23:47 +01:00
|
|
|
if has('channel')
|
|
|
|
let chan1: channel
|
2020-03-01 14:04:46 +01:00
|
|
|
let job1: job
|
2020-03-01 17:55:14 +01:00
|
|
|
let job2: job = job_start('willfail')
|
2020-02-29 23:23:47 +01:00
|
|
|
endif
|
2020-03-01 14:04:46 +01:00
|
|
|
if has('float')
|
|
|
|
let float1: float = 3.4
|
|
|
|
endif
|
2020-04-05 17:08:17 +02:00
|
|
|
let Funky1: func
|
|
|
|
let Funky2: func = function('len')
|
|
|
|
let Party2: func = funcref('Test_syntax')
|
2020-02-29 23:23:47 +01:00
|
|
|
|
2020-04-16 13:00:29 +02:00
|
|
|
# type becomes list<any>
|
2020-03-01 23:32:25 +01:00
|
|
|
let somelist = rand() > 0 ? [1, 2, 3] : ['a', 'b', 'c']
|
2020-04-16 13:00:29 +02:00
|
|
|
# type becomes dict<any>
|
2020-03-02 22:53:32 +01:00
|
|
|
let somedict = rand() > 0 ? #{a: 1, b: 2} : #{a: 'a', b: 'b'}
|
2020-03-01 23:32:25 +01:00
|
|
|
|
2020-02-19 18:14:44 +01:00
|
|
|
g:newvar = 'new'
|
|
|
|
assert_equal('new', g:newvar)
|
|
|
|
|
|
|
|
assert_equal('yes', g:existing)
|
|
|
|
g:existing = 'no'
|
|
|
|
assert_equal('no', g:existing)
|
|
|
|
|
2020-02-02 22:24:04 +01:00
|
|
|
v:char = 'abc'
|
2020-02-06 13:15:52 +01:00
|
|
|
assert_equal('abc', v:char)
|
2020-02-02 22:24:04 +01:00
|
|
|
|
|
|
|
$ENVVAR = 'foobar'
|
2020-02-06 13:15:52 +01:00
|
|
|
assert_equal('foobar', $ENVVAR)
|
2020-02-02 22:24:04 +01:00
|
|
|
$ENVVAR = ''
|
2020-02-06 13:15:52 +01:00
|
|
|
|
2020-02-19 20:23:11 +01:00
|
|
|
s:appendToMe ..= 'yyy'
|
|
|
|
assert_equal('xxxyyy', s:appendToMe)
|
|
|
|
s:addToMe += 222
|
|
|
|
assert_equal(333, s:addToMe)
|
2020-02-19 22:31:48 +01:00
|
|
|
s:newVar = 'new'
|
|
|
|
assert_equal('new', s:newVar)
|
2020-04-01 21:17:24 +02:00
|
|
|
|
|
|
|
set ts=7
|
|
|
|
&ts += 1
|
|
|
|
assert_equal(8, &ts)
|
2020-04-01 23:05:18 +02:00
|
|
|
&ts -= 3
|
|
|
|
assert_equal(5, &ts)
|
|
|
|
&ts *= 2
|
|
|
|
assert_equal(10, &ts)
|
|
|
|
&ts /= 3
|
|
|
|
assert_equal(3, &ts)
|
|
|
|
set ts=10
|
|
|
|
&ts %= 4
|
|
|
|
assert_equal(2, &ts)
|
2020-04-01 21:17:24 +02:00
|
|
|
call CheckDefFailure(['¬ex += 3'], 'E113:')
|
|
|
|
call CheckDefFailure(['&ts ..= "xxx"'], 'E1019:')
|
|
|
|
call CheckDefFailure(['&path += 3'], 'E1013:')
|
2020-04-16 13:00:29 +02:00
|
|
|
# test freeing ISN_STOREOPT
|
2020-04-02 22:33:21 +02:00
|
|
|
call CheckDefFailure(['&ts = 3', 'let asdf'], 'E1022:')
|
2020-04-01 23:05:18 +02:00
|
|
|
&ts = 8
|
2020-04-01 21:17:24 +02:00
|
|
|
|
|
|
|
g:inc_counter += 1
|
|
|
|
assert_equal(2, g:inc_counter)
|
|
|
|
|
|
|
|
$SOME_ENV_VAR ..= 'more'
|
|
|
|
assert_equal('somemore', $SOME_ENV_VAR)
|
|
|
|
call CheckDefFailure(['$SOME_ENV_VAR += "more"'], 'E1013:')
|
|
|
|
call CheckDefFailure(['$SOME_ENV_VAR += 123'], 'E1013:')
|
|
|
|
|
|
|
|
@a = 'areg'
|
|
|
|
@a ..= 'add'
|
|
|
|
assert_equal('aregadd', @a)
|
|
|
|
call CheckDefFailure(['@a += "more"'], 'E1013:')
|
|
|
|
call CheckDefFailure(['@a += 123'], 'E1013:')
|
2020-04-01 22:11:01 +02:00
|
|
|
|
|
|
|
v:errmsg = 'none'
|
|
|
|
v:errmsg ..= 'again'
|
|
|
|
assert_equal('noneagain', v:errmsg)
|
|
|
|
call CheckDefFailure(['v:errmsg += "more"'], 'E1013:')
|
|
|
|
call CheckDefFailure(['v:errmsg += 123'], 'E1013:')
|
2020-04-05 17:08:17 +02:00
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_assignment_default()
|
2020-04-01 22:11:01 +02:00
|
|
|
|
2020-04-16 13:00:29 +02:00
|
|
|
# Test default values.
|
2020-04-01 22:11:01 +02:00
|
|
|
let thebool: bool
|
|
|
|
assert_equal(v:false, thebool)
|
|
|
|
|
|
|
|
let thenumber: number
|
|
|
|
assert_equal(0, thenumber)
|
|
|
|
|
|
|
|
if has('float')
|
|
|
|
let thefloat: float
|
|
|
|
assert_equal(0.0, thefloat)
|
|
|
|
endif
|
|
|
|
|
|
|
|
let thestring: string
|
|
|
|
assert_equal('', thestring)
|
|
|
|
|
|
|
|
let theblob: blob
|
|
|
|
assert_equal(0z, theblob)
|
|
|
|
|
2020-04-05 17:08:17 +02:00
|
|
|
let Thefunc: func
|
|
|
|
assert_equal(test_null_function(), Thefunc)
|
2020-04-01 22:11:01 +02:00
|
|
|
|
|
|
|
let thelist: list<any>
|
|
|
|
assert_equal([], thelist)
|
|
|
|
|
|
|
|
let thedict: dict<any>
|
|
|
|
assert_equal({}, thedict)
|
|
|
|
|
2020-04-02 19:12:08 +02:00
|
|
|
if has('channel')
|
|
|
|
let thejob: job
|
|
|
|
assert_equal(test_null_job(), thejob)
|
2020-04-01 22:11:01 +02:00
|
|
|
|
2020-04-02 19:12:08 +02:00
|
|
|
let thechannel: channel
|
|
|
|
assert_equal(test_null_channel(), thechannel)
|
|
|
|
endif
|
2020-04-02 22:33:21 +02:00
|
|
|
|
|
|
|
let nr = 1234 | nr = 5678
|
|
|
|
assert_equal(5678, nr)
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
2020-04-09 20:10:55 +02:00
|
|
|
def Mess(): string
|
|
|
|
v:foldstart = 123
|
|
|
|
return 'xxx'
|
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
func Test_assignment_failure()
|
|
|
|
call CheckDefFailure(['let var=234'], 'E1004:')
|
|
|
|
call CheckDefFailure(['let var =234'], 'E1004:')
|
|
|
|
call CheckDefFailure(['let var= 234'], 'E1004:')
|
|
|
|
|
|
|
|
call CheckDefFailure(['let true = 1'], 'E1034:')
|
|
|
|
call CheckDefFailure(['let false = 1'], 'E1034:')
|
|
|
|
|
2020-03-30 22:51:24 +02:00
|
|
|
call CheckDefFailure(['let [a; b; c] = g:list'], 'E452:')
|
|
|
|
|
2020-04-01 22:11:01 +02:00
|
|
|
call CheckDefFailure(['let somevar'], "E1022:")
|
2020-03-30 22:51:24 +02:00
|
|
|
call CheckDefFailure(['let &option'], 'E1052:')
|
|
|
|
call CheckDefFailure(['&g:option = 5'], 'E113:')
|
|
|
|
|
|
|
|
call CheckDefFailure(['let $VAR = 5'], 'E1065:')
|
|
|
|
|
|
|
|
call CheckDefFailure(['let @~ = 5'], 'E354:')
|
|
|
|
call CheckDefFailure(['let @a = 5'], 'E1066:')
|
|
|
|
|
|
|
|
call CheckDefFailure(['let g:var = 5'], 'E1016:')
|
|
|
|
|
|
|
|
call CheckDefFailure(['let anr = 4', 'anr ..= "text"'], 'E1019:')
|
|
|
|
call CheckDefFailure(['let xnr += 4'], 'E1020:')
|
|
|
|
|
2020-03-28 19:41:33 +01:00
|
|
|
call CheckScriptFailure(['vim9script', 'def Func()', 'let dummy = s:notfound', 'enddef'], 'E1050:')
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
call CheckDefFailure(['let var: list<string> = [123]'], 'expected list<string> but got list<number>')
|
|
|
|
call CheckDefFailure(['let var: list<number> = ["xx"]'], 'expected list<number> but got list<string>')
|
|
|
|
|
|
|
|
call CheckDefFailure(['let var: dict<string> = #{key: 123}'], 'expected dict<string> but got dict<number>')
|
|
|
|
call CheckDefFailure(['let var: dict<number> = #{key: "xx"}'], 'expected dict<number> but got dict<string>')
|
|
|
|
|
|
|
|
call CheckDefFailure(['let var = feedkeys("0")'], 'E1031:')
|
|
|
|
call CheckDefFailure(['let var: number = feedkeys("0")'], 'expected number but got void')
|
2020-02-29 23:23:47 +01:00
|
|
|
|
2020-04-03 21:59:57 +02:00
|
|
|
call CheckDefFailure(['let var: dict <number>'], 'E1068:')
|
2020-02-29 23:23:47 +01:00
|
|
|
call CheckDefFailure(['let var: dict<number'], 'E1009:')
|
2020-04-09 20:10:55 +02:00
|
|
|
|
|
|
|
call assert_fails('s/^/\=Mess()/n', 'E794:')
|
|
|
|
call CheckDefFailure(['let var: dict<number'], 'E1009:')
|
2020-03-28 14:53:20 +01:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_wrong_type()
|
|
|
|
call CheckDefFailure(['let var: list<nothing>'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: list<list<nothing>>'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: dict<nothing>'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: dict<dict<nothing>>'], 'E1010:')
|
|
|
|
|
|
|
|
call CheckDefFailure(['let var: dict<number'], 'E1009:')
|
|
|
|
call CheckDefFailure(['let var: dict<list<number>'], 'E1009:')
|
2020-02-29 23:23:47 +01:00
|
|
|
|
|
|
|
call CheckDefFailure(['let var: ally'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: bram'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: cathy'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: dom'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: freddy'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: john'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: larry'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: ned'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: pam'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: sam'], 'E1010:')
|
|
|
|
call CheckDefFailure(['let var: vim'], 'E1010:')
|
2020-01-26 15:56:19 +01:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_const()
|
|
|
|
call CheckDefFailure(['const var = 234', 'var = 99'], 'E1018:')
|
|
|
|
call CheckDefFailure(['const one = 234', 'let one = 99'], 'E1017:')
|
|
|
|
call CheckDefFailure(['const two'], 'E1021:')
|
2020-03-30 22:51:24 +02:00
|
|
|
call CheckDefFailure(['const &option'], 'E996:')
|
2020-01-26 15:56:19 +01:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
def Test_block()
|
|
|
|
let outer = 1
|
|
|
|
{
|
|
|
|
let inner = 2
|
|
|
|
assert_equal(1, outer)
|
|
|
|
assert_equal(2, inner)
|
|
|
|
}
|
|
|
|
assert_equal(1, outer)
|
|
|
|
enddef
|
|
|
|
|
|
|
|
func Test_block_failure()
|
|
|
|
call CheckDefFailure(['{', 'let inner = 1', '}', 'echo inner'], 'E1001:')
|
2020-04-02 22:33:21 +02:00
|
|
|
call CheckDefFailure(['}'], 'E1025:')
|
|
|
|
call CheckDefFailure(['{', 'echo 1'], 'E1026:')
|
2020-01-26 15:56:19 +01:00
|
|
|
endfunc
|
|
|
|
|
2020-04-02 22:33:21 +02:00
|
|
|
def Test_cmd_modifier()
|
|
|
|
tab echo '0'
|
|
|
|
call CheckDefFailure(['5tab echo 3'], 'E16:')
|
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
def Test_try_catch()
|
|
|
|
let l = []
|
2020-04-16 22:10:49 +02:00
|
|
|
try # comment
|
2020-01-26 15:56:19 +01:00
|
|
|
add(l, '1')
|
|
|
|
throw 'wrong'
|
|
|
|
add(l, '2')
|
2020-04-16 22:10:49 +02:00
|
|
|
catch # comment
|
2020-01-26 15:56:19 +01:00
|
|
|
add(l, v:exception)
|
2020-04-16 22:10:49 +02:00
|
|
|
finally # comment
|
2020-01-26 15:56:19 +01:00
|
|
|
add(l, '3')
|
2020-04-16 22:10:49 +02:00
|
|
|
endtry # comment
|
2020-01-26 15:56:19 +01:00
|
|
|
assert_equal(['1', 'wrong', '3'], l)
|
|
|
|
enddef
|
|
|
|
|
2020-02-19 17:06:11 +01:00
|
|
|
def ThrowFromDef()
|
|
|
|
throw 'getout'
|
|
|
|
enddef
|
|
|
|
|
|
|
|
func CatchInFunc()
|
|
|
|
try
|
|
|
|
call ThrowFromDef()
|
|
|
|
catch
|
|
|
|
let g:thrown_func = v:exception
|
|
|
|
endtry
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
def CatchInDef()
|
|
|
|
try
|
|
|
|
ThrowFromDef()
|
|
|
|
catch
|
|
|
|
g:thrown_def = v:exception
|
|
|
|
endtry
|
|
|
|
enddef
|
|
|
|
|
2020-02-20 20:41:06 +01:00
|
|
|
def ReturnFinally(): string
|
|
|
|
try
|
|
|
|
return 'intry'
|
|
|
|
finally
|
|
|
|
g:in_finally = 'finally'
|
|
|
|
endtry
|
|
|
|
return 'end'
|
|
|
|
enddef
|
|
|
|
|
2020-02-19 17:06:11 +01:00
|
|
|
def Test_try_catch_nested()
|
|
|
|
CatchInFunc()
|
|
|
|
assert_equal('getout', g:thrown_func)
|
|
|
|
|
|
|
|
CatchInDef()
|
|
|
|
assert_equal('getout', g:thrown_def)
|
2020-02-20 20:41:06 +01:00
|
|
|
|
|
|
|
assert_equal('intry', ReturnFinally())
|
|
|
|
assert_equal('finally', g:in_finally)
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_try_catch_match()
|
|
|
|
let seq = 'a'
|
|
|
|
try
|
|
|
|
throw 'something'
|
|
|
|
catch /nothing/
|
|
|
|
seq ..= 'x'
|
|
|
|
catch /some/
|
|
|
|
seq ..= 'b'
|
|
|
|
catch /asdf/
|
|
|
|
seq ..= 'x'
|
2020-04-02 21:13:25 +02:00
|
|
|
catch ?a\?sdf?
|
|
|
|
seq ..= 'y'
|
2020-02-20 20:41:06 +01:00
|
|
|
finally
|
|
|
|
seq ..= 'c'
|
|
|
|
endtry
|
|
|
|
assert_equal('abc', seq)
|
2020-02-19 17:06:11 +01:00
|
|
|
enddef
|
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
def Test_try_catch_fails()
|
|
|
|
call CheckDefFailure(['catch'], 'E603:')
|
|
|
|
call CheckDefFailure(['try', 'echo 0', 'catch','catch'], 'E1033:')
|
|
|
|
call CheckDefFailure(['try', 'echo 0', 'catch /pat'], 'E1067:')
|
2020-04-02 22:33:21 +02:00
|
|
|
call CheckDefFailure(['finally'], 'E606:')
|
|
|
|
call CheckDefFailure(['try', 'echo 0', 'finally', 'echo 1', 'finally'], 'E607:')
|
|
|
|
call CheckDefFailure(['endtry'], 'E602:')
|
|
|
|
call CheckDefFailure(['while 1', 'endtry'], 'E170:')
|
|
|
|
call CheckDefFailure(['for i in range(5)', 'endtry'], 'E170:')
|
|
|
|
call CheckDefFailure(['if 2', 'endtry'], 'E171:')
|
|
|
|
call CheckDefFailure(['try', 'echo 1', 'endtry'], 'E1032:')
|
|
|
|
|
|
|
|
call CheckDefFailure(['throw'], 'E471:')
|
|
|
|
call CheckDefFailure(['throw xxx'], 'E1001:')
|
2020-04-02 21:13:25 +02:00
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
let s:export_script_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let name: string = 'bob'
|
|
|
|
def Concat(arg: string): string
|
|
|
|
return name .. arg
|
|
|
|
enddef
|
|
|
|
let g:result = Concat('bie')
|
|
|
|
let g:localname = name
|
|
|
|
|
|
|
|
export const CONST = 1234
|
|
|
|
export let exported = 9876
|
2020-02-06 13:15:52 +01:00
|
|
|
export let exp_name = 'John'
|
2020-01-26 15:56:19 +01:00
|
|
|
export def Exported(): string
|
|
|
|
return 'Exported'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
|
2020-03-09 19:25:27 +01:00
|
|
|
def Test_vim9_import_export()
|
2020-01-26 15:56:19 +01:00
|
|
|
let import_script_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import {exported, Exported} from './Xexport.vim'
|
|
|
|
g:imported = exported
|
2020-02-06 13:15:52 +01:00
|
|
|
exported += 3
|
|
|
|
g:imported_added = exported
|
2020-01-26 15:56:19 +01:00
|
|
|
g:imported_func = Exported()
|
2020-02-06 13:15:52 +01:00
|
|
|
|
|
|
|
import {exp_name} from './Xexport.vim'
|
|
|
|
g:imported_name = exp_name
|
|
|
|
exp_name ..= ' Doe'
|
|
|
|
g:imported_name_appended = exp_name
|
2020-03-02 22:53:32 +01:00
|
|
|
g:imported_later = exported
|
2020-01-26 15:56:19 +01:00
|
|
|
END
|
|
|
|
|
|
|
|
writefile(import_script_lines, 'Ximport.vim')
|
|
|
|
writefile(s:export_script_lines, 'Xexport.vim')
|
|
|
|
|
|
|
|
source Ximport.vim
|
|
|
|
|
|
|
|
assert_equal('bobbie', g:result)
|
|
|
|
assert_equal('bob', g:localname)
|
|
|
|
assert_equal(9876, g:imported)
|
2020-02-06 13:15:52 +01:00
|
|
|
assert_equal(9879, g:imported_added)
|
2020-03-02 22:53:32 +01:00
|
|
|
assert_equal(9879, g:imported_later)
|
2020-01-26 15:56:19 +01:00
|
|
|
assert_equal('Exported', g:imported_func)
|
2020-02-06 13:15:52 +01:00
|
|
|
assert_equal('John', g:imported_name)
|
|
|
|
assert_equal('John Doe', g:imported_name_appended)
|
2020-01-26 15:56:19 +01:00
|
|
|
assert_false(exists('g:name'))
|
|
|
|
|
|
|
|
unlet g:result
|
|
|
|
unlet g:localname
|
|
|
|
unlet g:imported
|
2020-02-06 13:15:52 +01:00
|
|
|
unlet g:imported_added
|
2020-03-02 22:53:32 +01:00
|
|
|
unlet g:imported_later
|
2020-01-26 15:56:19 +01:00
|
|
|
unlet g:imported_func
|
2020-02-06 13:15:52 +01:00
|
|
|
unlet g:imported_name g:imported_name_appended
|
2020-02-23 21:25:54 +01:00
|
|
|
delete('Ximport.vim')
|
|
|
|
|
2020-03-02 22:53:32 +01:00
|
|
|
let import_in_def_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def ImportInDef()
|
|
|
|
import exported from './Xexport.vim'
|
|
|
|
g:imported = exported
|
|
|
|
exported += 7
|
|
|
|
g:imported_added = exported
|
|
|
|
enddef
|
|
|
|
ImportInDef()
|
|
|
|
END
|
|
|
|
writefile(import_in_def_lines, 'Ximport2.vim')
|
|
|
|
source Ximport2.vim
|
|
|
|
" TODO: this should be 9879
|
|
|
|
assert_equal(9876, g:imported)
|
|
|
|
assert_equal(9883, g:imported_added)
|
|
|
|
unlet g:imported
|
|
|
|
unlet g:imported_added
|
|
|
|
delete('Ximport2.vim')
|
|
|
|
|
2020-02-23 21:25:54 +01:00
|
|
|
let import_star_as_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * as Export from './Xexport.vim'
|
|
|
|
def UseExport()
|
|
|
|
g:imported = Export.exported
|
|
|
|
enddef
|
|
|
|
UseExport()
|
|
|
|
END
|
|
|
|
writefile(import_star_as_lines, 'Ximport.vim')
|
|
|
|
source Ximport.vim
|
2020-03-02 22:53:32 +01:00
|
|
|
assert_equal(9883, g:imported)
|
2020-02-23 21:25:54 +01:00
|
|
|
|
2020-03-28 14:53:20 +01:00
|
|
|
let import_star_as_lines_no_dot =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * as Export from './Xexport.vim'
|
|
|
|
def Func()
|
|
|
|
let dummy = 1
|
|
|
|
let imported = Export + dummy
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(import_star_as_lines_no_dot, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1060:')
|
|
|
|
|
|
|
|
let import_star_as_lines_dot_space =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * as Export from './Xexport.vim'
|
|
|
|
def Func()
|
|
|
|
let imported = Export . exported
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(import_star_as_lines_dot_space, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1074:')
|
|
|
|
|
|
|
|
let import_star_as_lines_missing_name =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * as Export from './Xexport.vim'
|
|
|
|
def Func()
|
|
|
|
let imported = Export.
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(import_star_as_lines_missing_name, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1048:')
|
|
|
|
|
2020-02-23 21:25:54 +01:00
|
|
|
let import_star_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import * from './Xexport.vim'
|
|
|
|
g:imported = exported
|
|
|
|
END
|
|
|
|
writefile(import_star_lines, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1045:')
|
|
|
|
|
2020-02-23 22:35:05 +01:00
|
|
|
" try to import something that exists but is not exported
|
|
|
|
let import_not_exported_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_not_exported_lines, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1049:')
|
|
|
|
|
2020-03-09 19:25:27 +01:00
|
|
|
" try to import something that is already defined
|
|
|
|
let import_already_defined =<< trim END
|
|
|
|
vim9script
|
|
|
|
let exported = 'something'
|
|
|
|
import exported from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_already_defined, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1073:')
|
|
|
|
|
|
|
|
" try to import something that is already defined
|
|
|
|
import_already_defined =<< trim END
|
|
|
|
vim9script
|
|
|
|
let exported = 'something'
|
|
|
|
import * as exported from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_already_defined, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1073:')
|
|
|
|
|
|
|
|
" try to import something that is already defined
|
|
|
|
import_already_defined =<< trim END
|
|
|
|
vim9script
|
|
|
|
let exported = 'something'
|
|
|
|
import {exported} from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_already_defined, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1073:')
|
|
|
|
|
2020-02-23 22:35:05 +01:00
|
|
|
" import a very long name, requires making a copy
|
|
|
|
let import_long_name_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 from './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_long_name_lines, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1048:')
|
|
|
|
|
|
|
|
let import_no_from_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name './Xexport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_no_from_lines, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1070:')
|
|
|
|
|
|
|
|
let import_invalid_string_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name from Xexport.vim
|
|
|
|
END
|
|
|
|
writefile(import_invalid_string_lines, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1071:')
|
|
|
|
|
|
|
|
let import_wrong_name_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import name from './XnoExport.vim'
|
|
|
|
END
|
|
|
|
writefile(import_wrong_name_lines, 'Ximport.vim')
|
|
|
|
assert_fails('source Ximport.vim', 'E1053:')
|
|
|
|
|
|
|
|
let import_missing_comma_lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
import {exported name} from './Xexport.vim'
|
|
|
|
END
|
2020-03-09 19:25:27 +01:00
|
|
|
writefile(import_missing_comma_lines, 'Ximport3.vim')
|
|
|
|
assert_fails('source Ximport3.vim', 'E1046:')
|
2020-02-23 22:35:05 +01:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
delete('Ximport.vim')
|
2020-03-09 19:25:27 +01:00
|
|
|
delete('Ximport3.vim')
|
2020-01-26 15:56:19 +01:00
|
|
|
delete('Xexport.vim')
|
|
|
|
|
2020-02-23 18:08:33 +01:00
|
|
|
" Check that in a Vim9 script 'cpo' is set to the Vim default.
|
|
|
|
set cpo&vi
|
|
|
|
let cpo_before = &cpo
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
g:cpo_in_vim9script = &cpo
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xvim9_script')
|
|
|
|
source Xvim9_script
|
|
|
|
assert_equal(cpo_before, &cpo)
|
|
|
|
set cpo&vim
|
|
|
|
assert_equal(&cpo, g:cpo_in_vim9script)
|
|
|
|
delete('Xvim9_script')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_vim9script_fails()
|
2020-01-26 15:56:19 +01:00
|
|
|
CheckScriptFailure(['scriptversion 2', 'vim9script'], 'E1039:')
|
|
|
|
CheckScriptFailure(['vim9script', 'scriptversion 2'], 'E1040:')
|
2020-02-23 18:08:33 +01:00
|
|
|
CheckScriptFailure(['export let some = 123'], 'E1042:')
|
2020-02-23 21:25:54 +01:00
|
|
|
CheckScriptFailure(['import some from "./Xexport.vim"'], 'E1042:')
|
2020-02-23 18:08:33 +01:00
|
|
|
CheckScriptFailure(['vim9script', 'export let g:some'], 'E1044:')
|
|
|
|
CheckScriptFailure(['vim9script', 'export echo 134'], 'E1043:')
|
|
|
|
|
|
|
|
assert_fails('vim9script', 'E1038')
|
|
|
|
assert_fails('export something', 'E1042')
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_vim9script_reload()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
const var = ''
|
|
|
|
let valone = 1234
|
|
|
|
def MyFunc(arg: string)
|
|
|
|
valone = 5678
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
let morelines =<< trim END
|
|
|
|
let valtwo = 222
|
|
|
|
export def GetValtwo(): number
|
|
|
|
return valtwo
|
|
|
|
enddef
|
|
|
|
END
|
2020-04-12 22:53:54 +02:00
|
|
|
writefile(lines + morelines,
|
|
|
|
'Xreload.vim')
|
2020-01-26 15:56:19 +01:00
|
|
|
source Xreload.vim
|
|
|
|
source Xreload.vim
|
|
|
|
source Xreload.vim
|
|
|
|
|
|
|
|
let testlines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def TheFunc()
|
|
|
|
import GetValtwo from './Xreload.vim'
|
|
|
|
assert_equal(222, GetValtwo())
|
|
|
|
enddef
|
|
|
|
TheFunc()
|
|
|
|
END
|
|
|
|
writefile(testlines, 'Ximport.vim')
|
|
|
|
source Ximport.vim
|
|
|
|
|
|
|
|
" test that when not using "morelines" valtwo is still defined
|
|
|
|
" need to source Xreload.vim again, import doesn't reload a script
|
|
|
|
writefile(lines, 'Xreload.vim')
|
|
|
|
source Xreload.vim
|
|
|
|
source Ximport.vim
|
|
|
|
|
|
|
|
" cannot declare a var twice
|
|
|
|
lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let valone = 1234
|
|
|
|
let valone = 5678
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xreload.vim')
|
|
|
|
assert_fails('source Xreload.vim', 'E1041:')
|
|
|
|
|
|
|
|
delete('Xreload.vim')
|
|
|
|
delete('Ximport.vim')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_import_absolute()
|
|
|
|
let import_lines = [
|
2020-04-12 20:19:16 +02:00
|
|
|
'vim9script',
|
|
|
|
'import exported from "' .. escape(getcwd(), '\') .. '/Xexport_abs.vim"',
|
|
|
|
'def UseExported()',
|
|
|
|
' g:imported_abs = exported',
|
|
|
|
' exported = 8888',
|
|
|
|
' g:imported_after = exported',
|
|
|
|
'enddef',
|
|
|
|
'UseExported()',
|
|
|
|
'g:import_disassembled = execute("disass UseExported")',
|
|
|
|
]
|
2020-01-26 15:56:19 +01:00
|
|
|
writefile(import_lines, 'Ximport_abs.vim')
|
|
|
|
writefile(s:export_script_lines, 'Xexport_abs.vim')
|
|
|
|
|
|
|
|
source Ximport_abs.vim
|
|
|
|
|
|
|
|
assert_equal(9876, g:imported_abs)
|
2020-02-03 20:50:59 +01:00
|
|
|
assert_equal(8888, g:imported_after)
|
2020-04-12 22:53:54 +02:00
|
|
|
assert_match('<SNR>\d\+_UseExported.*' ..
|
|
|
|
'g:imported_abs = exported.*' ..
|
|
|
|
'0 LOADSCRIPT exported from .*Xexport_abs.vim.*' ..
|
|
|
|
'1 STOREG g:imported_abs.*' ..
|
|
|
|
'exported = 8888.*' ..
|
|
|
|
'3 STORESCRIPT exported in .*Xexport_abs.vim.*' ..
|
|
|
|
'g:imported_after = exported.*' ..
|
|
|
|
'4 LOADSCRIPT exported from .*Xexport_abs.vim.*' ..
|
|
|
|
'5 STOREG g:imported_after.*',
|
2020-04-12 20:19:16 +02:00
|
|
|
g:import_disassembled)
|
2020-01-26 15:56:19 +01:00
|
|
|
unlet g:imported_abs
|
2020-02-03 20:50:59 +01:00
|
|
|
unlet g:import_disassembled
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
delete('Ximport_abs.vim')
|
|
|
|
delete('Xexport_abs.vim')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_import_rtp()
|
|
|
|
let import_lines = [
|
2020-04-12 20:19:16 +02:00
|
|
|
'vim9script',
|
|
|
|
'import exported from "Xexport_rtp.vim"',
|
|
|
|
'g:imported_rtp = exported',
|
|
|
|
]
|
2020-01-26 15:56:19 +01:00
|
|
|
writefile(import_lines, 'Ximport_rtp.vim')
|
|
|
|
mkdir('import')
|
|
|
|
writefile(s:export_script_lines, 'import/Xexport_rtp.vim')
|
|
|
|
|
|
|
|
let save_rtp = &rtp
|
|
|
|
&rtp = getcwd()
|
|
|
|
source Ximport_rtp.vim
|
|
|
|
&rtp = save_rtp
|
|
|
|
|
|
|
|
assert_equal(9876, g:imported_rtp)
|
|
|
|
unlet g:imported_rtp
|
|
|
|
|
|
|
|
delete('Ximport_rtp.vim')
|
|
|
|
delete('import/Xexport_rtp.vim')
|
|
|
|
delete('import', 'd')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_fixed_size_list()
|
|
|
|
" will be allocated as one piece of memory, check that changes work
|
|
|
|
let l = [1, 2, 3, 4]
|
|
|
|
l->remove(0)
|
|
|
|
l->add(5)
|
|
|
|
l->insert(99, 1)
|
2020-02-02 17:22:27 +01:00
|
|
|
assert_equal([2, 99, 3, 4, 5], l)
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
2020-02-06 20:39:45 +01:00
|
|
|
def IfElse(what: number): string
|
|
|
|
let res = ''
|
|
|
|
if what == 1
|
|
|
|
res = "one"
|
|
|
|
elseif what == 2
|
|
|
|
res = "two"
|
2020-01-31 20:10:50 +01:00
|
|
|
else
|
2020-02-06 20:39:45 +01:00
|
|
|
res = "three"
|
2020-01-31 20:10:50 +01:00
|
|
|
endif
|
2020-02-06 20:39:45 +01:00
|
|
|
return res
|
2020-01-31 20:10:50 +01:00
|
|
|
enddef
|
|
|
|
|
2020-02-06 20:39:45 +01:00
|
|
|
def Test_if_elseif_else()
|
|
|
|
assert_equal('one', IfElse(1))
|
|
|
|
assert_equal('two', IfElse(2))
|
|
|
|
assert_equal('three', IfElse(3))
|
2020-02-02 17:22:27 +01:00
|
|
|
enddef
|
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
def Test_if_elseif_else_fails()
|
|
|
|
call CheckDefFailure(['elseif true'], 'E582:')
|
|
|
|
call CheckDefFailure(['else'], 'E581:')
|
|
|
|
call CheckDefFailure(['endif'], 'E580:')
|
|
|
|
call CheckDefFailure(['if true', 'elseif xxx'], 'E1001:')
|
2020-04-02 22:33:21 +02:00
|
|
|
call CheckDefFailure(['if true', 'echo 1'], 'E171:')
|
2020-04-02 21:13:25 +02:00
|
|
|
enddef
|
|
|
|
|
2020-03-03 19:02:12 +01:00
|
|
|
let g:bool_true = v:true
|
|
|
|
let g:bool_false = v:false
|
|
|
|
|
|
|
|
def Test_if_const_expr()
|
|
|
|
let res = false
|
|
|
|
if true ? true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
2020-04-02 22:33:21 +02:00
|
|
|
g:glob = 2
|
|
|
|
if false
|
|
|
|
execute('let g:glob = 3')
|
|
|
|
endif
|
|
|
|
assert_equal(2, g:glob)
|
|
|
|
if true
|
|
|
|
execute('let g:glob = 3')
|
|
|
|
endif
|
|
|
|
assert_equal(3, g:glob)
|
|
|
|
|
2020-03-03 19:02:12 +01:00
|
|
|
res = false
|
|
|
|
if g:bool_true ? true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true ? g:bool_true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true ? true : g:bool_false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true ? false : true
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if false ? false : true
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if false ? true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
res = false
|
|
|
|
if has('xyz') ? true : false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
2020-03-03 19:02:12 +01:00
|
|
|
res = false
|
|
|
|
if true && true
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true && false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if g:bool_true && false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true && g:bool_false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if false && false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true || false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if g:bool_true || false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if true || g:bool_false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(true, res)
|
|
|
|
|
|
|
|
res = false
|
|
|
|
if false || false
|
|
|
|
res = true
|
|
|
|
endif
|
|
|
|
assert_equal(false, res)
|
2020-04-01 23:05:18 +02:00
|
|
|
enddef
|
2020-03-03 19:02:12 +01:00
|
|
|
|
2020-04-01 23:05:18 +02:00
|
|
|
def Test_if_const_expr_fails()
|
|
|
|
call CheckDefFailure(['if "aaa" == "bbb'], 'E114:')
|
|
|
|
call CheckDefFailure(["if 'aaa' == 'bbb"], 'E115:')
|
2020-04-02 21:13:25 +02:00
|
|
|
call CheckDefFailure(["if has('aaa'"], 'E110:')
|
|
|
|
call CheckDefFailure(["if has('aaa') ? true false"], 'E109:')
|
2020-03-03 19:02:12 +01:00
|
|
|
enddef
|
|
|
|
|
2020-02-26 18:23:43 +01:00
|
|
|
def Test_execute_cmd()
|
|
|
|
new
|
|
|
|
setline(1, 'default')
|
|
|
|
execute 'call setline(1, "execute-string")'
|
|
|
|
assert_equal('execute-string', getline(1))
|
|
|
|
let cmd1 = 'call setline(1,'
|
|
|
|
let cmd2 = '"execute-var")'
|
|
|
|
execute cmd1 cmd2
|
|
|
|
assert_equal('execute-var', getline(1))
|
|
|
|
execute cmd1 cmd2 '|call setline(1, "execute-var-string")'
|
|
|
|
assert_equal('execute-var-string', getline(1))
|
|
|
|
let cmd_first = 'call '
|
|
|
|
let cmd_last = 'setline(1, "execute-var-var")'
|
|
|
|
execute cmd_first .. cmd_last
|
|
|
|
assert_equal('execute-var-var', getline(1))
|
|
|
|
bwipe!
|
2020-04-02 22:33:21 +02:00
|
|
|
|
|
|
|
call CheckDefFailure(['execute xxx'], 'E1001:')
|
2020-02-26 18:23:43 +01:00
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_echo_cmd()
|
2020-04-02 22:33:21 +02:00
|
|
|
echo 'some'
|
|
|
|
echon 'thing'
|
2020-02-26 18:23:43 +01:00
|
|
|
assert_match('^something$', Screenline(&lines))
|
|
|
|
|
|
|
|
let str1 = 'some'
|
|
|
|
let str2 = 'more'
|
|
|
|
echo str1 str2
|
|
|
|
assert_match('^some more$', Screenline(&lines))
|
|
|
|
enddef
|
|
|
|
|
2020-03-01 16:22:40 +01:00
|
|
|
def Test_for_outside_of_function()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
new
|
|
|
|
for var in range(0, 3)
|
|
|
|
append(line('$'), var)
|
|
|
|
endfor
|
|
|
|
assert_equal(['', '0', '1', '2', '3'], getline(1, '$'))
|
|
|
|
bwipe!
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xvim9for.vim')
|
|
|
|
source Xvim9for.vim
|
|
|
|
delete('Xvim9for.vim')
|
|
|
|
enddef
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
def Test_for_loop()
|
|
|
|
let result = ''
|
|
|
|
for cnt in range(7)
|
|
|
|
if cnt == 4
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
if cnt == 2
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
result ..= cnt .. '_'
|
|
|
|
endfor
|
|
|
|
assert_equal('0_1_3_', result)
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_for_loop_fails()
|
2020-04-12 22:53:54 +02:00
|
|
|
CheckDefFailure(['for # in range(5)'], 'E690:')
|
|
|
|
CheckDefFailure(['for i In range(5)'], 'E690:')
|
|
|
|
CheckDefFailure(['let x = 5', 'for x in range(5)'], 'E1023:')
|
2020-04-13 17:21:00 +02:00
|
|
|
CheckScriptFailure(['def Func(arg: any)', 'for arg in range(5)', 'enddef'], 'E1006:')
|
2020-04-12 22:53:54 +02:00
|
|
|
CheckDefFailure(['for i in "text"'], 'E1024:')
|
|
|
|
CheckDefFailure(['for i in xxx'], 'E1001:')
|
|
|
|
CheckDefFailure(['endfor'], 'E588:')
|
|
|
|
CheckDefFailure(['for i in range(3)', 'echo 3'], 'E170:')
|
2020-04-02 21:13:25 +02:00
|
|
|
enddef
|
|
|
|
|
2020-03-04 21:50:46 +01:00
|
|
|
def Test_while_loop()
|
|
|
|
let result = ''
|
|
|
|
let cnt = 0
|
|
|
|
while cnt < 555
|
|
|
|
if cnt == 3
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
cnt += 1
|
|
|
|
if cnt == 2
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
result ..= cnt .. '_'
|
|
|
|
endwhile
|
|
|
|
assert_equal('1_3_', result)
|
|
|
|
enddef
|
|
|
|
|
2020-04-02 21:13:25 +02:00
|
|
|
def Test_while_loop_fails()
|
2020-04-12 22:53:54 +02:00
|
|
|
CheckDefFailure(['while xxx'], 'E1001:')
|
|
|
|
CheckDefFailure(['endwhile'], 'E588:')
|
|
|
|
CheckDefFailure(['continue'], 'E586:')
|
|
|
|
CheckDefFailure(['if true', 'continue'], 'E586:')
|
|
|
|
CheckDefFailure(['break'], 'E587:')
|
|
|
|
CheckDefFailure(['if true', 'break'], 'E587:')
|
|
|
|
CheckDefFailure(['while 1', 'echo 3'], 'E170:')
|
2020-03-31 23:13:10 +02:00
|
|
|
enddef
|
|
|
|
|
2020-03-20 20:48:49 +01:00
|
|
|
def Test_interrupt_loop()
|
2020-03-22 13:44:28 +01:00
|
|
|
let caught = false
|
2020-03-20 20:48:49 +01:00
|
|
|
let x = 0
|
2020-03-22 13:44:28 +01:00
|
|
|
try
|
|
|
|
while 1
|
|
|
|
x += 1
|
|
|
|
if x == 100
|
|
|
|
feedkeys("\<C-C>", 'Lt')
|
|
|
|
endif
|
|
|
|
endwhile
|
|
|
|
catch
|
|
|
|
caught = true
|
|
|
|
assert_equal(100, x)
|
|
|
|
endtry
|
|
|
|
assert_true(caught, 'should have caught an exception')
|
2020-03-20 20:48:49 +01:00
|
|
|
enddef
|
2020-03-20 18:39:46 +01:00
|
|
|
|
2020-04-12 16:38:57 +02:00
|
|
|
def Test_automatic_line_continuation()
|
|
|
|
let mylist = [
|
|
|
|
'one',
|
|
|
|
'two',
|
|
|
|
'three',
|
|
|
|
] " comment
|
|
|
|
assert_equal(['one', 'two', 'three'], mylist)
|
|
|
|
|
|
|
|
let mydict = {
|
|
|
|
'one': 1,
|
|
|
|
'two': 2,
|
|
|
|
'three':
|
|
|
|
3,
|
|
|
|
} " comment
|
|
|
|
assert_equal({'one': 1, 'two': 2, 'three': 3}, mydict)
|
|
|
|
mydict = #{
|
2020-04-13 14:41:35 +02:00
|
|
|
one: 1, # comment
|
|
|
|
two: # comment
|
|
|
|
2, # comment
|
|
|
|
three: 3 # comment
|
|
|
|
}
|
|
|
|
assert_equal(#{one: 1, two: 2, three: 3}, mydict)
|
|
|
|
mydict = #{
|
|
|
|
one: 1,
|
|
|
|
two:
|
|
|
|
2,
|
|
|
|
three: 3
|
2020-04-12 16:38:57 +02:00
|
|
|
}
|
|
|
|
assert_equal(#{one: 1, two: 2, three: 3}, mydict)
|
2020-04-12 20:19:16 +02:00
|
|
|
|
|
|
|
assert_equal(
|
|
|
|
['one', 'two', 'three'],
|
|
|
|
split('one two three')
|
|
|
|
)
|
2020-04-12 16:38:57 +02:00
|
|
|
enddef
|
|
|
|
|
2020-04-16 22:10:49 +02:00
|
|
|
def Test_vim9_comment()
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'# something',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
':# something',
|
|
|
|
], 'E488:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'# something',
|
|
|
|
], 'E488:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
':# something',
|
|
|
|
], 'E488:')
|
|
|
|
|
2020-04-16 22:54:32 +02:00
|
|
|
{ # block start
|
|
|
|
} # block end
|
|
|
|
CheckDefFailure([
|
|
|
|
'{# comment',
|
|
|
|
], 'E488:')
|
|
|
|
CheckDefFailure([
|
|
|
|
'{',
|
|
|
|
'}# comment',
|
|
|
|
], 'E488:')
|
|
|
|
|
|
|
|
echo "yes" # comment
|
|
|
|
CheckDefFailure([
|
|
|
|
'echo "yes"# comment',
|
|
|
|
], 'E488:')
|
2020-04-16 22:10:49 +02:00
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'echo "yes" # something',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'echo "yes"# something',
|
|
|
|
], 'E121:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'echo# something',
|
|
|
|
], 'E121:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'echo "yes" # something',
|
|
|
|
], 'E121:')
|
|
|
|
|
2020-04-16 22:54:32 +02:00
|
|
|
exe "echo" # comment
|
|
|
|
CheckDefFailure([
|
|
|
|
'exe "echo"# comment',
|
|
|
|
], 'E488:')
|
|
|
|
CheckScriptSuccess([
|
|
|
|
'vim9script',
|
|
|
|
'exe "echo" # something',
|
|
|
|
])
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'exe "echo"# something',
|
|
|
|
], 'E121:')
|
|
|
|
CheckDefFailure([
|
|
|
|
'exe # comment',
|
|
|
|
], 'E1015:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'vim9script',
|
|
|
|
'exe# something',
|
|
|
|
], 'E121:')
|
|
|
|
CheckScriptFailure([
|
|
|
|
'exe "echo" # something',
|
|
|
|
], 'E121:')
|
|
|
|
|
2020-04-16 22:10:49 +02:00
|
|
|
CheckDefFailure([
|
|
|
|
'try# comment',
|
|
|
|
'echo "yes"',
|
|
|
|
'catch',
|
|
|
|
'endtry',
|
|
|
|
], 'E488:')
|
|
|
|
CheckDefFailure([
|
|
|
|
'try',
|
|
|
|
'echo "yes"',
|
|
|
|
'catch# comment',
|
|
|
|
'endtry',
|
|
|
|
], 'E488:')
|
|
|
|
CheckDefFailure([
|
|
|
|
'try',
|
|
|
|
'echo "yes"',
|
|
|
|
'catch',
|
|
|
|
'endtry# comment',
|
|
|
|
], 'E488:')
|
|
|
|
enddef
|
|
|
|
|
2020-04-02 22:33:21 +02:00
|
|
|
" Keep this last, it messes up highlighting.
|
|
|
|
def Test_substitute_cmd()
|
|
|
|
new
|
|
|
|
setline(1, 'something')
|
|
|
|
:substitute(some(other(
|
|
|
|
assert_equal('otherthing', getline(1))
|
|
|
|
bwipe!
|
|
|
|
|
|
|
|
" also when the context is Vim9 script
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
new
|
|
|
|
setline(1, 'something')
|
|
|
|
:substitute(some(other(
|
|
|
|
assert_equal('otherthing', getline(1))
|
|
|
|
bwipe!
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xvim9lines')
|
|
|
|
source Xvim9lines
|
|
|
|
|
|
|
|
delete('Xvim9lines')
|
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
" vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker
|