2016-07-09 17:07:29 +02:00
|
|
|
" test execute()
|
|
|
|
|
|
|
|
func NestedEval()
|
|
|
|
let nested = execute('echo "nested\nlines"')
|
|
|
|
echo 'got: "' . nested . '"'
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func NestedRedir()
|
|
|
|
redir => var
|
|
|
|
echo 'broken'
|
|
|
|
redir END
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_execute_string()
|
|
|
|
call assert_equal("\nnocompatible", execute('set compatible?'))
|
|
|
|
call assert_equal("\nsomething\nnice", execute('echo "something\nnice"'))
|
|
|
|
call assert_equal("noendofline", execute('echon "noendofline"'))
|
|
|
|
call assert_equal("", execute(123))
|
|
|
|
|
|
|
|
call assert_equal("\ngot: \"\nnested\nlines\"", execute('call NestedEval()'))
|
|
|
|
redir => redired
|
|
|
|
echo 'this'
|
|
|
|
let evaled = execute('echo "that"')
|
|
|
|
echo 'theend'
|
|
|
|
redir END
|
|
|
|
call assert_equal("\nthis\ntheend", redired)
|
|
|
|
call assert_equal("\nthat", evaled)
|
|
|
|
|
|
|
|
call assert_fails('call execute("doesnotexist")', 'E492:')
|
|
|
|
call assert_fails('call execute(3.4)', 'E806:')
|
|
|
|
call assert_fails('call execute("call NestedRedir()")', 'E930:')
|
|
|
|
|
|
|
|
call assert_equal("\nsomething", execute('echo "something"', ''))
|
|
|
|
call assert_equal("\nsomething", execute('echo "something"', 'silent'))
|
|
|
|
call assert_equal("\nsomething", execute('echo "something"', 'silent!'))
|
|
|
|
call assert_equal("", execute('burp', 'silent!'))
|
|
|
|
call assert_fails('call execute("echo \"x\"", 3.4)', 'E806:')
|
|
|
|
|
|
|
|
call assert_equal("", execute(test_null_string()))
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_execute_list()
|
|
|
|
call assert_equal("\nsomething\nnice", execute(['echo "something"', 'echo "nice"']))
|
|
|
|
let l = ['for n in range(0, 3)',
|
|
|
|
\ 'echo n',
|
|
|
|
\ 'endfor']
|
|
|
|
call assert_equal("\n0\n1\n2\n3", execute(l))
|
|
|
|
|
|
|
|
call assert_equal("", execute([]))
|
|
|
|
call assert_equal("", execute(test_null_list()))
|
|
|
|
endfunc
|
2018-12-07 16:38:23 +01:00
|
|
|
|
|
|
|
func Test_execute_does_not_change_col()
|
|
|
|
echo ''
|
|
|
|
echon 'abcd'
|
|
|
|
let x = execute('silent echo 234343')
|
|
|
|
echon 'xyz'
|
|
|
|
let text = ''
|
|
|
|
for col in range(1, 7)
|
|
|
|
let text .= nr2char(screenchar(&lines, col))
|
|
|
|
endfor
|
|
|
|
call assert_equal('abcdxyz', text)
|
|
|
|
endfunc
|
2018-12-08 13:57:42 +01:00
|
|
|
|
|
|
|
func Test_execute_not_silent()
|
|
|
|
echo ''
|
|
|
|
echon 'abcd'
|
|
|
|
let x = execute('echon 234', '')
|
|
|
|
echo 'xyz'
|
|
|
|
let text1 = ''
|
|
|
|
for col in range(1, 8)
|
|
|
|
let text1 .= nr2char(screenchar(&lines - 1, col))
|
|
|
|
endfor
|
|
|
|
call assert_equal('abcd234 ', text1)
|
|
|
|
let text2 = ''
|
|
|
|
for col in range(1, 4)
|
|
|
|
let text2 .= nr2char(screenchar(&lines, col))
|
|
|
|
endfor
|
|
|
|
call assert_equal('xyz ', text2)
|
|
|
|
endfunc
|
2019-05-29 21:44:40 +02:00
|
|
|
|
|
|
|
func Test_win_execute()
|
|
|
|
let thiswin = win_getid()
|
|
|
|
new
|
|
|
|
let otherwin = win_getid()
|
|
|
|
call setline(1, 'the new window')
|
|
|
|
call win_gotoid(thiswin)
|
|
|
|
let line = win_execute(otherwin, 'echo getline(1)')
|
|
|
|
call assert_match('the new window', line)
|
|
|
|
|
|
|
|
if has('textprop')
|
|
|
|
let popupwin = popup_create('the popup win', {'line': 2, 'col': 3})
|
|
|
|
redraw
|
|
|
|
let line = win_execute(popupwin, 'echo getline(1)')
|
|
|
|
call assert_match('the popup win', line)
|
|
|
|
|
|
|
|
call popup_close(popupwin)
|
|
|
|
endif
|
|
|
|
|
|
|
|
call win_gotoid(otherwin)
|
|
|
|
bwipe!
|
|
|
|
endfunc
|
2019-08-09 14:56:22 +02:00
|
|
|
|
|
|
|
func Test_win_execute_other_tab()
|
|
|
|
let thiswin = win_getid()
|
|
|
|
tabnew
|
|
|
|
call win_execute(thiswin, 'let xyz = 1')
|
|
|
|
call assert_equal(1, xyz)
|
|
|
|
tabclose
|
|
|
|
unlet xyz
|
|
|
|
endfunc
|