1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
|
" Test for python 3 commands.
" TODO: move tests from test87.in here.
source check.vim
CheckFeature python3
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!
" 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!
endfunc
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
func Test_vim_function()
" 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, 'f.name'->py3eval())
catch
call assert_false(v:exception)
endtry
py3 del f
delfunc s:foo
endfunc
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
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
func _CleanUpHiddenBuffer()
bwipe! hidden
bwipe!
endfunc
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 )
call _CleanUpHiddenBuffer()
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 )
call _CleanUpHiddenBuffer()
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 )
call _CleanUpHiddenBuffer()
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 )
call _CleanUpHiddenBuffer()
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
func Test_Catch_Exception_Message()
try
py3 raise RuntimeError( 'TEST' )
catch /.*/
call assert_match( '^Vim(.*):RuntimeError: TEST$', v:exception )
endtry
endfunc
func Test_unicode()
" this crashed Vim once
if &tenc != ''
throw "Skipped: 'termencoding' is not empty"
endif
set encoding=utf32
py3 print('hello')
if !has('win32')
set encoding=debug
py3 print('hello')
set encoding=euc-tw
py3 print('hello')
endif
set encoding=utf8
endfunc
" Test vim.eval() with various types.
func Test_python3_vim_val()
call assert_equal("\n8", execute('py3 print(vim.eval("3+5"))'))
if has('float')
call assert_equal("\n3.140000", execute('py3 print(vim.eval("1.01+2.13"))'))
call assert_equal("\n0.000000", execute('py3 print(vim.eval("0.0/(1.0/0.0)"))'))
call assert_equal("\n0.000000", execute('py3 print(vim.eval("0.0/(1.0/0.0)"))'))
call assert_equal("\n-0.000000", execute('py3 print(vim.eval("0.0/(-1.0/0.0)"))'))
" Commented out: output of infinity and nan depend on platforms.
" call assert_equal("\ninf", execute('py3 print(vim.eval("1.0/0.0"))'))
" call assert_equal("\n-inf", execute('py3 print(vim.eval("-1.0/0.0"))'))
" call assert_equal("\n-nan", execute('py3 print(vim.eval("0.0/0.0"))'))
endif
call assert_equal("\nabc", execute('py3 print(vim.eval("\"abc\""))'))
call assert_equal("\n['1', '2']", execute('py3 print(vim.eval("[1, 2]"))'))
call assert_equal("\n{'1': '2'}", execute('py3 print(vim.eval("{1:2}"))'))
call assert_equal("\nTrue", execute('py3 print(vim.eval("v:true"))'))
call assert_equal("\nFalse", execute('py3 print(vim.eval("v:false"))'))
call assert_equal("\nNone", execute('py3 print(vim.eval("v:null"))'))
call assert_equal("\nNone", execute('py3 print(vim.eval("v:none"))'))
call assert_equal("\nb'\\xab\\x12'", execute('py3 print(vim.eval("0zab12"))'))
call assert_fails('py3 vim.eval("1+")', 'vim.error: invalid expression')
endfunc
" Test range objects, see :help python-range
func Test_python3_range()
new
py3 b = vim.current.buffer
call setline(1, range(1, 6))
py3 r = b.range(2, 4)
call assert_equal(6, py3eval('len(b)'))
call assert_equal(3, py3eval('len(r)'))
call assert_equal('3', py3eval('b[2]'))
call assert_equal('4', py3eval('r[2]'))
call assert_fails('py3 r[3] = "x"', 'IndexError: line number out of range')
call assert_fails('py3 x = r[3]', 'IndexError: line number out of range')
call assert_fails('py3 r["a"] = "x"', 'TypeError')
call assert_fails('py3 x = r["a"]', 'TypeError')
py3 del r[:]
call assert_equal(['1', '5', '6'], getline(1, '$'))
%d | call setline(1, range(1, 6))
py3 r = b.range(2, 5)
py3 del r[2]
call assert_equal(['1', '2', '3', '5', '6'], getline(1, '$'))
%d | call setline(1, range(1, 6))
py3 r = b.range(2, 4)
py3 vim.command("%d,%dnorm Ax" % (r.start + 1, r.end + 1))
call assert_equal(['1', '2x', '3x', '4x', '5', '6'], getline(1, '$'))
%d | call setline(1, range(1, 4))
py3 r = b.range(2, 3)
py3 r.append(['a', 'b'])
call assert_equal(['1', '2', '3', 'a', 'b', '4'], getline(1, '$'))
py3 r.append(['c', 'd'], 0)
call assert_equal(['1', 'c', 'd', '2', '3', 'a', 'b', '4'], getline(1, '$'))
%d | call setline(1, range(1, 5))
py3 r = b.range(2, 4)
py3 r.append('a')
call assert_equal(['1', '2', '3', '4', 'a', '5'], getline(1, '$'))
py3 r.append('b', 1)
call assert_equal(['1', '2', 'b', '3', '4', 'a', '5'], getline(1, '$'))
bwipe!
endfunc
" Test for resetting options with local values to global values
func Test_python3_opt_reset_local_to_global()
new
py3 curbuf = vim.current.buffer
py3 curwin = vim.current.window
" List of buffer-local options. Each list item has [option name, global
" value, buffer-local value, buffer-local value after reset] to use in the
" test.
let bopts = [
\ ['autoread', 1, 0, -1],
\ ['equalprg', 'geprg', 'leprg', ''],
\ ['keywordprg', 'gkprg', 'lkprg', ''],
\ ['path', 'gpath', 'lpath', ''],
\ ['backupcopy', 'yes', 'no', ''],
\ ['tags', 'gtags', 'ltags', ''],
\ ['tagcase', 'ignore', 'match', ''],
\ ['define', 'gdef', 'ldef', ''],
\ ['include', 'ginc', 'linc', ''],
\ ['dict', 'gdict', 'ldict', ''],
\ ['thesaurus', 'gtsr', 'ltsr', ''],
\ ['formatprg', 'gfprg', 'lfprg', ''],
\ ['errorformat', '%f:%l:%m', '%s-%l-%m', ''],
\ ['grepprg', 'ggprg', 'lgprg', ''],
\ ['makeprg', 'gmprg', 'lmprg', ''],
\ ['balloonexpr', 'gbexpr', 'lbexpr', ''],
\ ['cryptmethod', 'blowfish2', 'zip', ''],
\ ['lispwords', 'abc', 'xyz', ''],
\ ['makeencoding', 'utf-8', 'latin1', ''],
\ ['undolevels', 100, 200, -123456]]
" Set the global and buffer-local option values and then clear the
" buffer-local option value.
for opt in bopts
py3 pyopt = vim.bindeval("opt")
py3 vim.options[pyopt[0]] = pyopt[1]
py3 curbuf.options[pyopt[0]] = pyopt[2]
exe "call assert_equal(opt[2], &" .. opt[0] .. ")"
exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
exe "call assert_equal(opt[2], &l:" .. opt[0] .. ")"
py3 del curbuf.options[pyopt[0]]
exe "call assert_equal(opt[1], &" .. opt[0] .. ")"
exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
exe "call assert_equal(opt[3], &l:" .. opt[0] .. ")"
exe "set " .. opt[0] .. "&"
endfor
" Set the global and window-local option values and then clear the
" window-local option value.
let wopts = [
\ ['scrolloff', 5, 10, -1],
\ ['sidescrolloff', 6, 12, -1],
\ ['statusline', '%<%f', '%<%F', '']]
for opt in wopts
py3 pyopt = vim.bindeval("opt")
py3 vim.options[pyopt[0]] = pyopt[1]
py3 curwin.options[pyopt[0]] = pyopt[2]
exe "call assert_equal(opt[2], &" .. opt[0] .. ")"
exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
exe "call assert_equal(opt[2], &l:" .. opt[0] .. ")"
py3 del curwin.options[pyopt[0]]
exe "call assert_equal(opt[1], &" .. opt[0] .. ")"
exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
exe "call assert_equal(opt[3], &l:" .. opt[0] .. ")"
exe "set " .. opt[0] .. "&"
endfor
close!
endfunc
" vim: shiftwidth=2 sts=2 expandtab
|