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-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
|
|
|
|
|
|
|
|
func CheckScriptFailure(lines, error)
|
|
|
|
call writefile(a:lines, 'Xdef')
|
|
|
|
call assert_fails('so Xdef', a:error, a:lines)
|
|
|
|
call delete('Xdef')
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
def Test_syntax()
|
|
|
|
let var = 234
|
|
|
|
let other: list<string> = ['asdf']
|
|
|
|
enddef
|
|
|
|
|
|
|
|
func Test_def_basic()
|
|
|
|
def SomeFunc(): string
|
|
|
|
return 'yes'
|
|
|
|
enddef
|
|
|
|
call assert_equal('yes', SomeFunc())
|
|
|
|
endfunc
|
|
|
|
|
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-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)
|
|
|
|
|
|
|
|
let list1: list<string> = ['sdf', 'asdf']
|
|
|
|
let list2: list<number> = [1, 2, 3]
|
|
|
|
|
2020-02-20 22:54:43 +01:00
|
|
|
let listS: list<string> = []
|
|
|
|
let listN: list<number> = []
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
let dict1: dict<string> = #{key: 'value'}
|
|
|
|
let dict2: dict<number> = #{one: 1, two: 2}
|
2020-02-02 22:24:04 +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-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
|
|
|
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:')
|
|
|
|
|
|
|
|
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')
|
|
|
|
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:')
|
|
|
|
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:')
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
def ReturnString(): string
|
|
|
|
return 'string'
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def ReturnNumber(): number
|
|
|
|
return 123
|
|
|
|
enddef
|
|
|
|
|
2020-02-20 23:08:34 +01:00
|
|
|
let g:notNumber = 'string'
|
|
|
|
|
|
|
|
def ReturnGlobal(): number
|
|
|
|
return g:notNumber
|
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
def Test_return_string()
|
|
|
|
assert_equal('string', ReturnString())
|
|
|
|
assert_equal(123, ReturnNumber())
|
2020-02-20 23:08:34 +01:00
|
|
|
assert_fails('call ReturnGlobal()', 'E1029: Expected number but got string')
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
|
|
|
func Increment()
|
|
|
|
let g:counter += 1
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
def Test_call_ufunc_count()
|
|
|
|
g:counter = 1
|
|
|
|
Increment()
|
|
|
|
Increment()
|
|
|
|
Increment()
|
|
|
|
" works with and without :call
|
|
|
|
assert_equal(4, g:counter)
|
2020-02-02 22:24:04 +01:00
|
|
|
call assert_equal(4, g:counter)
|
2020-01-26 15:56:19 +01:00
|
|
|
unlet g:counter
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def MyVarargs(arg: string, ...rest: list<string>): string
|
|
|
|
let res = arg
|
|
|
|
for s in rest
|
|
|
|
res ..= ',' .. s
|
|
|
|
endfor
|
|
|
|
return res
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_call_varargs()
|
|
|
|
assert_equal('one', MyVarargs('one'))
|
|
|
|
assert_equal('one,two', MyVarargs('one', 'two'))
|
|
|
|
assert_equal('one,two,three', MyVarargs('one', 'two', 'three'))
|
|
|
|
enddef
|
|
|
|
|
2020-02-04 21:24:15 +01:00
|
|
|
def MyDefaultArgs(name = 'string'): string
|
|
|
|
return name
|
|
|
|
enddef
|
|
|
|
|
2020-02-06 17:51:35 +01:00
|
|
|
def Test_call_default_args()
|
|
|
|
assert_equal('string', MyDefaultArgs())
|
|
|
|
assert_equal('one', MyDefaultArgs('one'))
|
|
|
|
assert_fails('call MyDefaultArgs("one", "two")', 'E118:')
|
|
|
|
enddef
|
|
|
|
|
2020-02-04 21:24:15 +01:00
|
|
|
func Test_call_default_args_from_func()
|
2020-02-06 17:51:35 +01:00
|
|
|
call assert_equal('string', MyDefaultArgs())
|
2020-02-04 21:24:15 +01:00
|
|
|
call assert_equal('one', MyDefaultArgs('one'))
|
|
|
|
call assert_fails('call MyDefaultArgs("one", "two")', 'E118:')
|
|
|
|
endfunc
|
|
|
|
|
2020-02-06 17:51:35 +01:00
|
|
|
" Default arg and varargs
|
|
|
|
def MyDefVarargs(one: string, two = 'foo', ...rest: list<string>): string
|
|
|
|
let res = one .. ',' .. two
|
|
|
|
for s in rest
|
|
|
|
res ..= ',' .. s
|
|
|
|
endfor
|
|
|
|
return res
|
2020-02-04 21:24:15 +01:00
|
|
|
enddef
|
|
|
|
|
2020-02-06 17:51:35 +01:00
|
|
|
def Test_call_def_varargs()
|
|
|
|
call assert_fails('call MyDefVarargs()', 'E119:')
|
|
|
|
assert_equal('one,foo', MyDefVarargs('one'))
|
|
|
|
assert_equal('one,two', MyDefVarargs('one', 'two'))
|
|
|
|
assert_equal('one,two,three', MyDefVarargs('one', 'two', 'three'))
|
|
|
|
enddef
|
|
|
|
|
|
|
|
|
|
|
|
"def Test_call_func_defined_later()
|
|
|
|
" call assert_equal('one', DefineLater('one'))
|
|
|
|
" call assert_fails('call NotDefined("one")', 'E99:')
|
|
|
|
"enddef
|
|
|
|
|
|
|
|
func DefineLater(arg)
|
|
|
|
return a:arg
|
|
|
|
endfunc
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
def Test_return_type_wrong()
|
2020-01-26 17:38:12 +01:00
|
|
|
CheckScriptFailure(['def Func(): number', 'return "a"', 'enddef'], 'expected number but got string')
|
|
|
|
CheckScriptFailure(['def Func(): string', 'return 1', 'enddef'], 'expected string but got number')
|
|
|
|
CheckScriptFailure(['def Func(): void', 'return "a"', 'enddef'], 'expected void but got string')
|
|
|
|
CheckScriptFailure(['def Func()', 'return "a"', 'enddef'], 'expected void but got string')
|
2020-01-26 15:56:19 +01:00
|
|
|
enddef
|
|
|
|
|
2020-02-04 21:54:07 +01:00
|
|
|
def Test_arg_type_wrong()
|
|
|
|
CheckScriptFailure(['def Func3(items: list)', 'echo "a"', 'enddef'], 'E1008: Missing <type>')
|
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
def Test_try_catch()
|
|
|
|
let l = []
|
|
|
|
try
|
|
|
|
add(l, '1')
|
|
|
|
throw 'wrong'
|
|
|
|
add(l, '2')
|
|
|
|
catch
|
|
|
|
add(l, v:exception)
|
|
|
|
finally
|
|
|
|
add(l, '3')
|
|
|
|
endtry
|
|
|
|
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'
|
|
|
|
finally
|
|
|
|
seq ..= 'c'
|
|
|
|
endtry
|
|
|
|
assert_equal('abc', seq)
|
2020-02-19 17:06:11 +01: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
|
|
|
|
|
|
|
|
def Test_vim9script()
|
|
|
|
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-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-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-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-01-26 15:56:19 +01:00
|
|
|
delete('Ximport.vim')
|
|
|
|
delete('Xexport.vim')
|
|
|
|
|
|
|
|
CheckScriptFailure(['scriptversion 2', 'vim9script'], 'E1039:')
|
|
|
|
CheckScriptFailure(['vim9script', 'scriptversion 2'], 'E1040:')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_vim9script_call()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let var = ''
|
|
|
|
def MyFunc(arg: string)
|
|
|
|
var = arg
|
|
|
|
enddef
|
|
|
|
MyFunc('foobar')
|
|
|
|
assert_equal('foobar', var)
|
|
|
|
|
|
|
|
let str = 'barfoo'
|
|
|
|
str->MyFunc()
|
|
|
|
assert_equal('barfoo', var)
|
|
|
|
|
|
|
|
let g:value = 'value'
|
|
|
|
g:value->MyFunc()
|
|
|
|
assert_equal('value', var)
|
|
|
|
|
|
|
|
let listvar = []
|
|
|
|
def ListFunc(arg: list<number>)
|
|
|
|
listvar = arg
|
|
|
|
enddef
|
|
|
|
[1, 2, 3]->ListFunc()
|
|
|
|
assert_equal([1, 2, 3], listvar)
|
|
|
|
|
|
|
|
let dictvar = {}
|
|
|
|
def DictFunc(arg: dict<number>)
|
|
|
|
dictvar = arg
|
|
|
|
enddef
|
|
|
|
{'a': 1, 'b': 2}->DictFunc()
|
|
|
|
assert_equal(#{a: 1, b: 2}, dictvar)
|
|
|
|
#{a: 3, b: 4}->DictFunc()
|
|
|
|
assert_equal(#{a: 3, b: 4}, dictvar)
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xcall.vim')
|
|
|
|
source Xcall.vim
|
|
|
|
delete('Xcall.vim')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_vim9script_call_fail_decl()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
let var = ''
|
|
|
|
def MyFunc(arg: string)
|
|
|
|
let var = 123
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xcall_decl.vim')
|
|
|
|
assert_fails('source Xcall_decl.vim', 'E1054:')
|
|
|
|
delete('Xcall_decl.vim')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def Test_vim9script_call_fail_const()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
const var = ''
|
|
|
|
def MyFunc(arg: string)
|
|
|
|
var = 'asdf'
|
|
|
|
enddef
|
|
|
|
END
|
|
|
|
writefile(lines, 'Xcall_const.vim')
|
|
|
|
assert_fails('source Xcall_const.vim', 'E46:')
|
|
|
|
delete('Xcall_const.vim')
|
|
|
|
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
|
|
|
|
writefile(lines + morelines, 'Xreload.vim')
|
|
|
|
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 = [
|
|
|
|
\ 'vim9script',
|
|
|
|
\ 'import exported from "' .. escape(getcwd(), '\') .. '/Xexport_abs.vim"',
|
2020-02-02 22:24:04 +01:00
|
|
|
\ 'def UseExported()',
|
|
|
|
\ ' g:imported_abs = exported',
|
2020-02-03 20:50:59 +01:00
|
|
|
\ ' exported = 8888',
|
|
|
|
\ ' g:imported_after = exported',
|
2020-02-02 22:24:04 +01:00
|
|
|
\ 'enddef',
|
|
|
|
\ 'UseExported()',
|
2020-02-03 20:50:59 +01:00
|
|
|
\ '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-02-02 22:24:04 +01:00
|
|
|
assert_match('<SNR>\d\+_UseExported.*'
|
|
|
|
\ .. 'g:imported_abs = exported.*'
|
|
|
|
\ .. '0 LOADSCRIPT exported from .*Xexport_abs.vim.*'
|
2020-02-03 20:50:59 +01:00
|
|
|
\ .. '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.*'
|
|
|
|
\, 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 = [
|
|
|
|
\ 'vim9script',
|
|
|
|
\ 'import exported from "Xexport_rtp.vim"',
|
|
|
|
\ 'g:imported_rtp = exported',
|
|
|
|
\ ]
|
|
|
|
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-01-26 16:50:05 +01:00
|
|
|
" Test that inside :function a Python function can be defined, :def is not
|
|
|
|
" recognized.
|
|
|
|
func Test_function_python()
|
|
|
|
CheckFeature python3
|
|
|
|
let py = 'python3'
|
|
|
|
execute py "<< EOF"
|
|
|
|
def do_something():
|
|
|
|
return 1
|
|
|
|
EOF
|
|
|
|
endfunc
|
|
|
|
|
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-02-19 15:46:48 +01:00
|
|
|
def Test_delfunc()
|
|
|
|
let lines =<< trim END
|
|
|
|
vim9script
|
|
|
|
def GoneSoon()
|
|
|
|
echo 'hello'
|
|
|
|
enddef
|
|
|
|
|
|
|
|
def CallGoneSoon()
|
|
|
|
GoneSoon()
|
|
|
|
enddef
|
|
|
|
|
|
|
|
delfunc GoneSoon
|
|
|
|
CallGoneSoon()
|
|
|
|
END
|
|
|
|
writefile(lines, 'XToDelFunc')
|
|
|
|
assert_fails('so XToDelFunc', 'E933')
|
|
|
|
assert_fails('so XToDelFunc', 'E933')
|
|
|
|
|
|
|
|
delete('XToDelFunc')
|
|
|
|
enddef
|
|
|
|
|
2020-02-21 18:42:43 +01:00
|
|
|
def Test_substitute_cmd()
|
|
|
|
new
|
|
|
|
setline(1, 'something')
|
|
|
|
:substitute(some(other(
|
|
|
|
assert_equal('otherthing', getline(1))
|
|
|
|
enddef
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
" vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker
|