2019-08-30 07:42:19 -07:00
|
|
|
" Test for python 3 commands.
|
2018-06-07 01:06:06 -07:00
|
|
|
" TODO: move tests from test88.in here.
|
|
|
|
|
|
|
|
if !has('python3')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
func Test_py3do()
|
|
|
|
" Check deleting lines does not trigger an ml_get error.
|
|
|
|
py3 import vim
|
|
|
|
new
|
|
|
|
call setline(1, ['one', 'two', 'three'])
|
|
|
|
py3do vim.command("%d_")
|
|
|
|
bwipe!
|
|
|
|
|
2018-06-27 05:03:46 -07:00
|
|
|
" Disabled until neovim/neovim#8554 is resolved
|
|
|
|
if 0
|
|
|
|
" Check switching to another buffer does not trigger an ml_get error.
|
|
|
|
new
|
|
|
|
let wincount = winnr('$')
|
|
|
|
call setline(1, ['one', 'two', 'three'])
|
|
|
|
py3do vim.command("new")
|
|
|
|
call assert_equal(wincount + 1, winnr('$'))
|
|
|
|
bwipe!
|
|
|
|
bwipe!
|
|
|
|
endif
|
2018-06-07 01:06:06 -07:00
|
|
|
endfunc
|
2018-12-23 05:12:59 -07:00
|
|
|
|
2019-08-30 07:42:19 -07:00
|
|
|
func Test_set_cursor()
|
|
|
|
" Check that setting the cursor position works.
|
|
|
|
py3 import vim
|
|
|
|
new
|
|
|
|
call setline(1, ['first line', 'second line'])
|
|
|
|
normal gg
|
|
|
|
py3do vim.current.window.cursor = (1, 5)
|
|
|
|
call assert_equal([1, 6], [line('.'), col('.')])
|
|
|
|
|
|
|
|
" Check that movement after setting cursor position keeps current column.
|
|
|
|
normal j
|
|
|
|
call assert_equal([2, 6], [line('.'), col('.')])
|
|
|
|
endfunc
|
|
|
|
|
2018-12-23 05:12:59 -07:00
|
|
|
func Test_vim_function()
|
2019-09-14 14:53:52 -07:00
|
|
|
throw 'skipped: Nvim does not support vim.bindeval()'
|
2018-12-23 05:12:59 -07:00
|
|
|
" Check creating vim.Function object
|
|
|
|
py3 import vim
|
|
|
|
|
|
|
|
func s:foo()
|
|
|
|
return matchstr(expand('<sfile>'), '<SNR>\zs\d\+_foo$')
|
|
|
|
endfunc
|
|
|
|
let name = '<SNR>' . s:foo()
|
|
|
|
|
|
|
|
try
|
|
|
|
py3 f = vim.bindeval('function("s:foo")')
|
|
|
|
call assert_equal(name, py3eval('f.name'))
|
|
|
|
catch
|
|
|
|
call assert_false(v:exception)
|
|
|
|
endtry
|
|
|
|
|
|
|
|
try
|
|
|
|
py3 f = vim.Function(b'\x80\xfdR' + vim.eval('s:foo()').encode())
|
|
|
|
call assert_equal(name, py3eval('f.name'))
|
|
|
|
catch
|
|
|
|
call assert_false(v:exception)
|
|
|
|
endtry
|
|
|
|
|
|
|
|
py3 del f
|
|
|
|
delfunc s:foo
|
|
|
|
endfunc
|
2019-03-23 11:56:26 -07:00
|
|
|
|
2019-08-30 07:43:21 -07:00
|
|
|
func Test_skipped_python3_command_does_not_affect_pyxversion()
|
|
|
|
set pyxversion=0
|
|
|
|
if 0
|
|
|
|
python3 import vim
|
|
|
|
endif
|
|
|
|
call assert_equal(0, &pyxversion) " This assertion would have failed with Vim 8.0.0251. (pyxversion was introduced in 8.0.0251.)
|
|
|
|
endfunc
|
|
|
|
|
2019-03-23 11:56:26 -07:00
|
|
|
func _SetUpHiddenBuffer()
|
|
|
|
py3 import vim
|
|
|
|
new
|
|
|
|
edit hidden
|
|
|
|
setlocal bufhidden=hide
|
|
|
|
|
|
|
|
enew
|
|
|
|
let lnum = 0
|
|
|
|
while lnum < 10
|
|
|
|
call append( 1, string( lnum ) )
|
|
|
|
let lnum = lnum + 1
|
|
|
|
endwhile
|
|
|
|
normal G
|
|
|
|
|
|
|
|
call assert_equal( line( '.' ), 11 )
|
|
|
|
endfunc
|
|
|
|
|
2019-03-31 08:10:03 -07:00
|
|
|
func _CleanUpHiddenBuffer()
|
|
|
|
bwipe! hidden
|
|
|
|
bwipe!
|
|
|
|
endfunc
|
|
|
|
|
2019-03-23 11:56:26 -07:00
|
|
|
func Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_Clear()
|
|
|
|
call _SetUpHiddenBuffer()
|
|
|
|
py3 vim.buffers[ int( vim.eval( 'bufnr("hidden")' ) ) ][:] = None
|
|
|
|
call assert_equal( line( '.' ), 11 )
|
2019-03-31 08:10:03 -07:00
|
|
|
call _CleanUpHiddenBuffer()
|
2019-03-23 11:56:26 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_List()
|
|
|
|
call _SetUpHiddenBuffer()
|
|
|
|
py3 vim.buffers[ int( vim.eval( 'bufnr("hidden")' ) ) ][:] = [ 'test' ]
|
|
|
|
call assert_equal( line( '.' ), 11 )
|
2019-03-31 08:10:03 -07:00
|
|
|
call _CleanUpHiddenBuffer()
|
2019-03-23 11:56:26 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_Str()
|
|
|
|
call _SetUpHiddenBuffer()
|
|
|
|
py3 vim.buffers[ int( vim.eval( 'bufnr("hidden")' ) ) ][0] = 'test'
|
|
|
|
call assert_equal( line( '.' ), 11 )
|
2019-03-31 08:10:03 -07:00
|
|
|
call _CleanUpHiddenBuffer()
|
2019-03-23 11:56:26 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_ClearLine()
|
|
|
|
call _SetUpHiddenBuffer()
|
|
|
|
py3 vim.buffers[ int( vim.eval( 'bufnr("hidden")' ) ) ][0] = None
|
|
|
|
call assert_equal( line( '.' ), 11 )
|
2019-03-31 08:10:03 -07:00
|
|
|
call _CleanUpHiddenBuffer()
|
2019-03-23 11:56:26 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
func _SetUpVisibleBuffer()
|
|
|
|
py3 import vim
|
|
|
|
new
|
|
|
|
let lnum = 0
|
|
|
|
while lnum < 10
|
|
|
|
call append( 1, string( lnum ) )
|
|
|
|
let lnum = lnum + 1
|
|
|
|
endwhile
|
|
|
|
normal G
|
|
|
|
call assert_equal( line( '.' ), 11 )
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_Write_To_Current_Buffer_Fixes_Cursor_Clear()
|
|
|
|
call _SetUpVisibleBuffer()
|
|
|
|
|
|
|
|
py3 vim.current.buffer[:] = None
|
|
|
|
call assert_equal( line( '.' ), 1 )
|
|
|
|
|
|
|
|
bwipe!
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func Test_Write_To_Current_Buffer_Fixes_Cursor_List()
|
|
|
|
call _SetUpVisibleBuffer()
|
|
|
|
|
|
|
|
py3 vim.current.buffer[:] = [ 'test' ]
|
|
|
|
call assert_equal( line( '.' ), 1 )
|
|
|
|
|
|
|
|
bwipe!
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
func Test_Write_To_Current_Buffer_Fixes_Cursor_Str()
|
|
|
|
call _SetUpVisibleBuffer()
|
|
|
|
|
|
|
|
py3 vim.current.buffer[-1] = None
|
|
|
|
call assert_equal( line( '.' ), 10 )
|
|
|
|
|
|
|
|
bwipe!
|
|
|
|
endfunction
|
2019-12-31 21:15:42 -07:00
|
|
|
|
|
|
|
func Test_Catch_Exception_Message()
|
|
|
|
try
|
|
|
|
py3 raise RuntimeError( 'TEST' )
|
|
|
|
catch /.*/
|
|
|
|
call assert_match('^Vim(.*):.*RuntimeError: TEST$', v:exception )
|
|
|
|
endtry
|
|
|
|
endfunc
|
2019-12-31 21:22:58 -07:00
|
|
|
|
|
|
|
func Test_unicode()
|
|
|
|
" this crashed Vim once
|
2020-01-01 11:12:43 -07:00
|
|
|
if &tenc != ''
|
|
|
|
throw "Skipped: 'termencoding' is not empty"
|
|
|
|
endif
|
2020-01-01 11:03:06 -07:00
|
|
|
|
2020-01-01 08:16:25 -07:00
|
|
|
set encoding=utf32
|
2019-12-31 21:22:58 -07:00
|
|
|
py3 print('hello')
|
2020-01-01 11:03:06 -07:00
|
|
|
|
2020-01-01 11:13:40 -07:00
|
|
|
if !has('win32')
|
|
|
|
set encoding=debug
|
|
|
|
py3 print('hello')
|
|
|
|
endif
|
2020-01-01 11:03:06 -07:00
|
|
|
|
2020-01-01 08:16:25 -07:00
|
|
|
set encoding=euc-tw
|
|
|
|
py3 print('hello')
|
2020-01-01 11:03:06 -07:00
|
|
|
|
2020-01-01 08:16:25 -07:00
|
|
|
set encoding=utf8
|
2019-12-31 21:22:58 -07:00
|
|
|
endfunc
|