annotate src/testdir/test_lua.vim @ 20609:054ba681412d v8.2.0858

patch 8.2.0858: not easy to require Lua modules Commit: https://github.com/vim/vim/commit/788fbb47079e6df4d4815d27273faf8390395029 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 31 14:08:12 2020 +0200 patch 8.2.0858: not easy to require Lua modules Problem: Not easy to require Lua modules. Solution: Improve use of Lua path. (Prabir Shrestha, closes https://github.com/vim/vim/issues/6098)
author Bram Moolenaar <Bram@vim.org>
date Sun, 31 May 2020 14:15:03 +0200
parents 86dde5c4b375
children ae185f35e256
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10757
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Tests for Lua.
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2
17089
8e9e9124c7a2 patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents: 17049
diff changeset
3 source check.vim
8e9e9124c7a2 patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents: 17049
diff changeset
4 CheckFeature lua
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
5 CheckFeature float
10757
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6
15997
725255793949 patch 8.1.1004: function "luaV_setref()" not covered with tests
Bram Moolenaar <Bram@vim.org>
parents: 15328
diff changeset
7 func TearDown()
725255793949 patch 8.1.1004: function "luaV_setref()" not covered with tests
Bram Moolenaar <Bram@vim.org>
parents: 15328
diff changeset
8 " Run garbage collection after each test to exercise luaV_setref().
725255793949 patch 8.1.1004: function "luaV_setref()" not covered with tests
Bram Moolenaar <Bram@vim.org>
parents: 15328
diff changeset
9 call test_garbagecollect_now()
725255793949 patch 8.1.1004: function "luaV_setref()" not covered with tests
Bram Moolenaar <Bram@vim.org>
parents: 15328
diff changeset
10 endfunc
725255793949 patch 8.1.1004: function "luaV_setref()" not covered with tests
Bram Moolenaar <Bram@vim.org>
parents: 15328
diff changeset
11
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
12 " Check that switching to another buffer does not trigger ml_get error.
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
13 func Test_lua_command_new_no_ml_get_error()
10757
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14 new
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 let wincount = winnr('$')
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 call setline(1, ['one', 'two', 'three'])
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17 luado vim.command("new")
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18 call assert_equal(wincount + 1, winnr('$'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
19 %bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
20 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
21
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
22 " Test vim.command()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
23 func Test_lua_command()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
24 new
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
25 call setline(1, ['one', 'two', 'three'])
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
26 luado vim.command("1,2d_")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
27 call assert_equal(['three'], getline(1, '$'))
10757
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
28 bwipe!
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
29 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
30
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
31 " Test vim.eval()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
32 func Test_lua_eval()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
33 " lua.eval with a number
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
34 lua v = vim.eval('123')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
35 call assert_equal('number', luaeval('vim.type(v)'))
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
36 call assert_equal(123, luaeval('v'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
37
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
38 " lua.eval with a string
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
39 lua v = vim.eval('"abc"')
17916
2e53305f2239 patch 8.1.1954: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
40 call assert_equal('string', 'vim.type(v)'->luaeval())
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
41 call assert_equal('abc', luaeval('v'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
42
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
43 " lua.eval with a list
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
44 lua v = vim.eval("['a']")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
45 call assert_equal('list', luaeval('vim.type(v)'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
46 call assert_equal(['a'], luaeval('v'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
47
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
48 " lua.eval with a dict
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
49 lua v = vim.eval("{'a':'b'}")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
50 call assert_equal('dict', luaeval('vim.type(v)'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
51 call assert_equal({'a':'b'}, luaeval('v'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
52
16076
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
53 " lua.eval with a blob
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
54 lua v = vim.eval("0z00112233.deadbeef")
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
55 call assert_equal('blob', luaeval('vim.type(v)'))
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
56 call assert_equal(0z00112233.deadbeef, luaeval('v'))
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
57
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
58 call assert_fails('lua v = vim.eval(nil)',
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
59 \ "[string \"vim chunk\"]:1: bad argument #1 to 'eval' (string expected, got nil)")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
60 call assert_fails('lua v = vim.eval(true)',
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
61 \ "[string \"vim chunk\"]:1: bad argument #1 to 'eval' (string expected, got boolean)")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
62 call assert_fails('lua v = vim.eval({})',
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
63 \ "[string \"vim chunk\"]:1: bad argument #1 to 'eval' (string expected, got table)")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
64 call assert_fails('lua v = vim.eval(print)',
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
65 \ "[string \"vim chunk\"]:1: bad argument #1 to 'eval' (string expected, got function)")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
66 call assert_fails('lua v = vim.eval(vim.buffer())',
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
67 \ "[string \"vim chunk\"]:1: bad argument #1 to 'eval' (string expected, got userdata)")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
68
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
69 lua v = nil
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
70 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
71
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
72 " Test vim.window()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
73 func Test_lua_window()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
74 e Xfoo2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
75 new Xfoo1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
76
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
77 " Window 1 (top window) contains Xfoo1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
78 " Window 2 (bottom window) contains Xfoo2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
79 call assert_equal('Xfoo1', luaeval('vim.window(1):buffer().name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
80 call assert_equal('Xfoo2', luaeval('vim.window(2):buffer().name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
81
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
82 " Window 3 does not exist so vim.window(3) should return nil
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
83 call assert_equal('nil', luaeval('tostring(vim.window(3))'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
84
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
85 %bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
86 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
87
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
88 " Test vim.window().height
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
89 func Test_lua_window_height()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
90 new
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
91 lua vim.window().height = 2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
92 call assert_equal(2, winheight(0))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
93 lua vim.window().height = vim.window().height + 1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
94 call assert_equal(3, winheight(0))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
95 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
96 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
97
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
98 " Test vim.window().width
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
99 func Test_lua_window_width()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
100 vert new
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
101 lua vim.window().width = 2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
102 call assert_equal(2, winwidth(0))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
103 lua vim.window().width = vim.window().width + 1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
104 call assert_equal(3, winwidth(0))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
105 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
106 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
107
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
108 " Test vim.window().line and vim.window.col
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
109 func Test_lua_window_line_col()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
110 new
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
111 call setline(1, ['line1', 'line2', 'line3'])
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
112 lua vim.window().line = 2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
113 lua vim.window().col = 4
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
114 call assert_equal([0, 2, 4, 0], getpos('.'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
115 lua vim.window().line = vim.window().line + 1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
116 lua vim.window().col = vim.window().col - 1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
117 call assert_equal([0, 3, 3, 0], getpos('.'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
118
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
119 call assert_fails('lua vim.window().line = 10',
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
120 \ '[string "vim chunk"]:1: line out of range')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
121 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
122 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
123
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
124 " Test vim.call
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
125 func Test_lua_call()
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
126 call assert_equal(has('lua'), luaeval('vim.call("has", "lua")'))
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
127 call assert_equal(printf("Hello %s", "vim"), luaeval('vim.call("printf", "Hello %s", "vim")'))
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
128 endfunc
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
129
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
130 " Test vim.fn.*
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
131 func Test_lua_fn()
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
132 call assert_equal(has('lua'), luaeval('vim.fn.has("lua")'))
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
133 call assert_equal(printf("Hello %s", "vim"), luaeval('vim.fn.printf("Hello %s", "vim")'))
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
134 endfunc
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
135
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
136 " Test setting the current window
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
137 func Test_lua_window_set_current()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
138 new Xfoo1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
139 lua w1 = vim.window()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
140 new Xfoo2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
141 lua w2 = vim.window()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
142
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
143 call assert_equal('Xfoo2', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
144 lua w1()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
145 call assert_equal('Xfoo1', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
146 lua w2()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
147 call assert_equal('Xfoo2', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
148
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
149 lua w1, w2 = nil
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
150 %bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
151 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
152
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
153 " Test vim.window().buffer
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
154 func Test_lua_window_buffer()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
155 new Xfoo1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
156 lua w1 = vim.window()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
157 lua b1 = w1.buffer()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
158 new Xfoo2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
159 lua w2 = vim.window()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
160 lua b2 = w2.buffer()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
161
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
162 lua b1()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
163 call assert_equal('Xfoo1', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
164 lua b2()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
165 call assert_equal('Xfoo2', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
166
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
167 lua b1, b2, w1, w2 = nil
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
168 %bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
169 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
170
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
171 " Test vim.window():previous() and vim.window():next()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
172 func Test_lua_window_next_previous()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
173 new Xfoo1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
174 new Xfoo2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
175 new Xfoo3
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
176 wincmd j
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
177
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
178 call assert_equal('Xfoo2', luaeval('vim.window().buffer().name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
179 call assert_equal('Xfoo1', luaeval('vim.window():next():buffer().name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
180 call assert_equal('Xfoo3', luaeval('vim.window():previous():buffer().name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
181
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
182 %bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
183 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
184
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
185 " Test vim.window():isvalid()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
186 func Test_lua_window_isvalid()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
187 new Xfoo
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
188 lua w = vim.window()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
189 call assert_true(luaeval('w:isvalid()'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
190
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
191 " FIXME: how to test the case when isvalid() returns v:false?
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
192 " isvalid() gives errors when the window is deleted. Is it a bug?
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
193
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
194 lua w = nil
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
195 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
196 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
197
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
198 " Test vim.buffer() with and without argument
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
199 func Test_lua_buffer()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
200 new Xfoo1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
201 let bn1 = bufnr('%')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
202 new Xfoo2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
203 let bn2 = bufnr('%')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
204
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
205 " Test vim.buffer() without argument.
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
206 call assert_equal('Xfoo2', luaeval("vim.buffer().name"))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
207
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
208 " Test vim.buffer() with string argument.
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
209 call assert_equal('Xfoo1', luaeval("vim.buffer('Xfoo1').name"))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
210 call assert_equal('Xfoo2', luaeval("vim.buffer('Xfoo2').name"))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
211
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
212 " Test vim.buffer() with integer argument.
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
213 call assert_equal('Xfoo1', luaeval("vim.buffer(" . bn1 . ").name"))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
214 call assert_equal('Xfoo2', luaeval("vim.buffer(" . bn2 . ").name"))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
215
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
216 lua bn1, bn2 = nil
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
217 %bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
218 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
219
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
220 " Test vim.buffer().name and vim.buffer().fname
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
221 func Test_lua_buffer_name()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
222 new
14296
396b71b242b2 patch 8.1.0164: luaeval('vim.buffer().name') returns an error
Christian Brabandt <cb@256bit.org>
parents: 14245
diff changeset
223 call assert_equal('', luaeval('vim.buffer().name'))
396b71b242b2 patch 8.1.0164: luaeval('vim.buffer().name') returns an error
Christian Brabandt <cb@256bit.org>
parents: 14245
diff changeset
224 call assert_equal('', luaeval('vim.buffer().fname'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
225 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
226
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
227 new Xfoo
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
228 call assert_equal('Xfoo', luaeval('vim.buffer().name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
229 call assert_equal(expand('%:p'), luaeval('vim.buffer().fname'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
230 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
231 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
232
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
233 " Test vim.buffer().number
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
234 func Test_lua_buffer_number()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
235 " All numbers in Lua are floating points number (no integers).
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
236 call assert_equal(bufnr('%'), float2nr(luaeval('vim.buffer().number')))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
237 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
238
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
239 " Test inserting lines in buffer.
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
240 func Test_lua_buffer_insert()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
241 new
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
242 lua vim.buffer()[1] = '3'
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
243 lua vim.buffer():insert('1', 0)
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
244 lua vim.buffer():insert('2', 1)
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
245 lua vim.buffer():insert('4', 10)
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
246
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
247 call assert_equal(['1', '2', '3', '4'], getline(1, '$'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
248 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
249 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
250
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
251 " Test deleting line in buffer
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
252 func Test_lua_buffer_delete()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
253 new
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
254 call setline(1, ['1', '2', '3'])
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
255 lua vim.buffer()[2] = nil
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
256 call assert_equal(['1', '3'], getline(1, '$'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
257
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
258 call assert_fails('lua vim.buffer()[3] = nil',
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
259 \ '[string "vim chunk"]:1: invalid line number')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
260 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
261 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
262
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
263 " Test #vim.buffer() i.e. number of lines in buffer
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
264 func Test_lua_buffer_number_lines()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
265 new
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
266 call setline(1, ['a', 'b', 'c'])
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
267 call assert_equal(3, luaeval('#vim.buffer()'))
10757
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
268 bwipe!
6c3d42d18366 patch 8.0.0268: may get ml_get error when :luado deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
269 endfunc
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
270
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
271 " Test vim.buffer():next() and vim.buffer():previous()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
272 " Note that these functions get the next or previous buffers
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
273 " but do not switch buffer.
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
274 func Test_lua_buffer_next_previous()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
275 new Xfoo1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
276 new Xfoo2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
277 new Xfoo3
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
278 b Xfoo2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
279
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
280 lua bn = vim.buffer():next()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
281 lua bp = vim.buffer():previous()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
282
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
283 call assert_equal('Xfoo2', luaeval('vim.buffer().name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
284 call assert_equal('Xfoo1', luaeval('bp.name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
285 call assert_equal('Xfoo3', luaeval('bn.name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
286
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
287 call assert_equal('Xfoo2', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
288
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
289 lua bn()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
290 call assert_equal('Xfoo3', luaeval('vim.buffer().name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
291 call assert_equal('Xfoo3', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
292
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
293 lua bp()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
294 call assert_equal('Xfoo1', luaeval('vim.buffer().name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
295 call assert_equal('Xfoo1', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
296
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
297 lua bn, bp = nil
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
298 %bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
299 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
300
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
301 " Test vim.buffer():isvalid()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
302 func Test_lua_buffer_isvalid()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
303 new Xfoo
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
304 lua b = vim.buffer()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
305 call assert_true(luaeval('b:isvalid()'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
306
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
307 " FIXME: how to test the case when isvalid() returns v:false?
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
308 " isvalid() gives errors when the buffer is wiped. Is it a bug?
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
309
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
310 lua b = nil
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
311 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
312 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
313
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
314 func Test_lua_list()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
315 call assert_equal([], luaeval('vim.list()'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
316
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
317 let l = []
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
318 lua l = vim.eval('l')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
319 lua l:add(123)
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
320 lua l:add('abc')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
321 lua l:add(true)
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
322 lua l:add(false)
15328
f7130bc17248 patch 8.1.0672: the Lua interface doesn't know about v:null
Bram Moolenaar <Bram@vim.org>
parents: 14395
diff changeset
323 lua l:add(nil)
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
324 lua l:add(vim.eval("[1, 2, 3]"))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
325 lua l:add(vim.eval("{'a':1, 'b':2, 'c':3}"))
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
326 call assert_equal([123, 'abc', v:true, v:false, v:null, [1, 2, 3], {'a': 1, 'b': 2, 'c': 3}], l)
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
327 call assert_equal(7, luaeval('#l'))
14245
f445c5edb6af patch 8.1.0139: Lua tests fail on some platforms
Christian Brabandt <cb@256bit.org>
parents: 14239
diff changeset
328 call assert_match('^list: \%(0x\)\?\x\+$', luaeval('tostring(l)'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
329
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
330 lua l[0] = 124
15328
f7130bc17248 patch 8.1.0672: the Lua interface doesn't know about v:null
Bram Moolenaar <Bram@vim.org>
parents: 14395
diff changeset
331 lua l[5] = nil
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
332 lua l:insert('first')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
333 lua l:insert('xx', 3)
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
334 call assert_equal(['first', 124, 'abc', 'xx', v:true, v:false, v:null, {'a': 1, 'b': 2, 'c': 3}], l)
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
335
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
336 lockvar 1 l
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
337 call assert_fails('lua l:add("x")', '[string "vim chunk"]:1: list is locked')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
338
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
339 lua l = nil
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
340 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
341
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
342 func Test_lua_list_table()
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
343 " See :help lua-vim
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
344 " Non-numeric keys should not be used to initialize the list
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
345 " so say = 'hi' should be ignored.
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
346 lua t = {3.14, 'hello', false, true, say = 'hi'}
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
347 call assert_equal([3.14, 'hello', v:false, v:true], luaeval('vim.list(t)'))
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
348 lua t = nil
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
349
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
350 call assert_fails('lua vim.list(1)', '[string "vim chunk"]:1: table expected, got number')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
351 call assert_fails('lua vim.list("x")', '[string "vim chunk"]:1: table expected, got string')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
352 call assert_fails('lua vim.list(print)', '[string "vim chunk"]:1: table expected, got function')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
353 call assert_fails('lua vim.list(true)', '[string "vim chunk"]:1: table expected, got boolean')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
354 endfunc
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
355
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
356 " Test l() i.e. iterator on list
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
357 func Test_lua_list_iter()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
358 lua l = vim.list():add('foo'):add('bar')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
359 lua str = ''
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
360 lua for v in l() do str = str .. v end
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
361 call assert_equal('foobar', luaeval('str'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
362
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
363 lua str, l = nil
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
364 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
365
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
366 func Test_lua_recursive_list()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
367 lua l = vim.list():add(1):add(2)
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
368 lua l = l:add(l)
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
369
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
370 call assert_equal(1, luaeval('l[0]'))
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
371 call assert_equal(2, luaeval('l[1]'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
372
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
373 call assert_equal(1, luaeval('l[2][0]'))
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
374 call assert_equal(2, luaeval('l[2][1]'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
375
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
376 call assert_equal(1, luaeval('l[2][2][0]'))
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
377 call assert_equal(2, luaeval('l[2][2][1]'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
378
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
379 call assert_equal('[1, 2, [...]]', string(luaeval('l')))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
380
14245
f445c5edb6af patch 8.1.0139: Lua tests fail on some platforms
Christian Brabandt <cb@256bit.org>
parents: 14239
diff changeset
381 call assert_match('^list: \%(0x\)\?\x\+$', luaeval('tostring(l)'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
382 call assert_equal(luaeval('tostring(l)'), luaeval('tostring(l[2])'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
383
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
384 call assert_equal(luaeval('l'), luaeval('l[2]'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
385 call assert_equal(luaeval('l'), luaeval('l[2][2]'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
386
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
387 lua l = nil
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
388 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
389
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
390 func Test_lua_dict()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
391 call assert_equal({}, luaeval('vim.dict()'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
392
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
393 let d = {}
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
394 lua d = vim.eval('d')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
395 lua d[0] = 123
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
396 lua d[1] = "abc"
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
397 lua d[2] = true
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
398 lua d[3] = false
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
399 lua d[4] = vim.eval("[1, 2, 3]")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
400 lua d[5] = vim.eval("{'a':1, 'b':2, 'c':3}")
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
401 call assert_equal({'0':123, '1':'abc', '2':v:true, '3':v:false, '4': [1, 2, 3], '5': {'a':1, 'b':2, 'c':3}}, d)
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
402 call assert_equal(6, luaeval('#d'))
14245
f445c5edb6af patch 8.1.0139: Lua tests fail on some platforms
Christian Brabandt <cb@256bit.org>
parents: 14239
diff changeset
403 call assert_match('^dict: \%(0x\)\?\x\+$', luaeval('tostring(d)'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
404
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
405 call assert_equal('abc', luaeval('d[1]'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
406
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
407 lua d[0] = 124
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
408 lua d[4] = nil
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
409 call assert_equal({'0':124, '1':'abc', '2':v:true, '3':v:false, '5': {'a':1, 'b':2, 'c':3}}, d)
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
410
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
411 lockvar 1 d
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
412 call assert_fails('lua d[6] = 1', '[string "vim chunk"]:1: dict is locked')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
413
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
414 lua d = nil
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
415 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
416
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
417 func Test_lua_dict_table()
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
418 lua t = {key1 = 'x', key2 = 3.14, key3 = true, key4 = false}
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
419 call assert_equal({'key1': 'x', 'key2': 3.14, 'key3': v:true, 'key4': v:false},
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
420 \ luaeval('vim.dict(t)'))
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
421
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
422 " Same example as in :help lua-vim.
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
423 lua t = {math.pi, false, say = 'hi'}
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
424 " FIXME: commented out as it currently does not work as documented:
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
425 " Expected {'say': 'hi'}
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
426 " but got {'1': 3.141593, '2': v:false, 'say': 'hi'}
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
427 " Is the documentation or the code wrong?
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
428 "call assert_equal({'say' : 'hi'}, luaeval('vim.dict(t)'))
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
429 lua t = nil
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
430
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
431 call assert_fails('lua vim.dict(1)', '[string "vim chunk"]:1: table expected, got number')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
432 call assert_fails('lua vim.dict("x")', '[string "vim chunk"]:1: table expected, got string')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
433 call assert_fails('lua vim.dict(print)', '[string "vim chunk"]:1: table expected, got function')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
434 call assert_fails('lua vim.dict(true)', '[string "vim chunk"]:1: table expected, got boolean')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
435 endfunc
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
436
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
437 " Test d() i.e. iterator on dictionary
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
438 func Test_lua_dict_iter()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
439 let d = {'a': 1, 'b':2}
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
440 lua d = vim.eval('d')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
441 lua str = ''
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
442 lua for k,v in d() do str = str .. k ..':' .. v .. ',' end
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
443 call assert_equal('a:1,b:2,', luaeval('str'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
444
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
445 lua str, d = nil
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
446 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
447
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
448 func Test_lua_blob()
16076
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
449 call assert_equal(0z, luaeval('vim.blob("")'))
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
450 call assert_equal(0z31326162, luaeval('vim.blob("12ab")'))
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
451 call assert_equal(0z00010203, luaeval('vim.blob("\x00\x01\x02\x03")'))
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
452 call assert_equal(0z8081FEFF, luaeval('vim.blob("\x80\x81\xfe\xff")'))
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
453
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
454 lua b = vim.blob("\x00\x00\x00\x00")
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
455 call assert_equal(0z00000000, luaeval('b'))
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
456 call assert_equal(4, luaeval('#b'))
16076
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
457 lua b[0], b[1], b[2], b[3] = 1, 32, 256, 0xff
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
458 call assert_equal(0z012000ff, luaeval('b'))
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
459 lua b[4] = string.byte("z", 1)
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
460 call assert_equal(0z012000ff.7a, luaeval('b'))
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
461 call assert_equal(5, luaeval('#b'))
16076
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
462 call assert_fails('lua b[#b+1] = 0x80', '[string "vim chunk"]:1: index out of range')
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
463 lua b:add("12ab")
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
464 call assert_equal(0z012000ff.7a313261.62, luaeval('b'))
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
465 call assert_equal(9, luaeval('#b'))
16076
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
466 call assert_fails('lua b:add(nil)', '[string "vim chunk"]:1: string expected, got nil')
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
467 call assert_fails('lua b:add(true)', '[string "vim chunk"]:1: string expected, got boolean')
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
468 call assert_fails('lua b:add({})', '[string "vim chunk"]:1: string expected, got table')
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
469 lua b = nil
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
470 endfunc
a2f0e93a5857 patch 8.1.1043: Lua interface does not support Blob
Bram Moolenaar <Bram@vim.org>
parents: 16028
diff changeset
471
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
472 func Test_lua_funcref()
14235
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
473 function I(x)
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
474 return a:x
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
475 endfunction
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
476 let R = function('I')
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
477 lua i1 = vim.funcref"I"
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
478 lua i2 = vim.eval"R"
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
479 lua msg = "funcref|test|" .. (#i2(i1) == #i1(i2) and "OK" or "FAIL")
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
480 lua msg = vim.funcref"tr"(msg, "|", " ")
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
481 call assert_equal("funcref test OK", luaeval('msg'))
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
482
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
483 " dict funcref
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
484 function Mylen() dict
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
485 return len(self.data)
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
486 endfunction
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
487 let l = [0, 1, 2, 3]
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
488 let mydict = {'data': l}
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
489 lua d = vim.eval"mydict"
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
490 lua d.len = vim.funcref"Mylen" -- assign d as 'self'
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
491 lua res = (d.len() == vim.funcref"len"(vim.eval"l")) and "OK" or "FAIL"
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
492 call assert_equal("OK", luaeval('res'))
16028
8ad2cda3757d patch 8.1.1019: Lua: may garbage collect function reference in use
Bram Moolenaar <Bram@vim.org>
parents: 15997
diff changeset
493 call assert_equal(function('Mylen', {'data': l, 'len': function('Mylen')}), mydict.len)
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
494
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
495 lua i1, i2, msg, d, res = nil
14235
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
496 endfunc
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
497
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
498 " Test vim.type()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
499 func Test_lua_type()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
500 " The following values are identical to Lua's type function.
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
501 call assert_equal('string', luaeval('vim.type("foo")'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
502 call assert_equal('number', luaeval('vim.type(1)'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
503 call assert_equal('number', luaeval('vim.type(1.2)'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
504 call assert_equal('function', luaeval('vim.type(print)'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
505 call assert_equal('table', luaeval('vim.type({})'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
506 call assert_equal('boolean', luaeval('vim.type(true)'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
507 call assert_equal('boolean', luaeval('vim.type(false)'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
508 call assert_equal('nil', luaeval('vim.type(nil)'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
509
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
510 " The following values are specific to Vim.
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
511 call assert_equal('window', luaeval('vim.type(vim.window())'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
512 call assert_equal('buffer', luaeval('vim.type(vim.buffer())'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
513 call assert_equal('list', luaeval('vim.type(vim.list())'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
514 call assert_equal('dict', luaeval('vim.type(vim.dict())'))
14235
e3bc8cdc94dd patch 8.1.0134: Lua interface does not support funcref
Christian Brabandt <cb@256bit.org>
parents: 14230
diff changeset
515 call assert_equal('funcref', luaeval('vim.type(vim.funcref("Test_type"))'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
516 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
517
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
518 " Test vim.open()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
519 func Test_lua_open()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
520 call assert_notmatch('XOpen', execute('ls'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
521
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
522 " Open a buffer XOpen1, but do not jump to it.
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
523 lua b = vim.open('XOpen1')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
524 call assert_equal('XOpen1', luaeval('b.name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
525 call assert_equal('', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
526
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
527 call assert_match('XOpen1', execute('ls'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
528 call assert_notequal('XOpen2', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
529
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
530 " Open a buffer XOpen2 and jump to it.
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
531 lua b = vim.open('XOpen2')()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
532 call assert_equal('XOpen2', luaeval('b.name'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
533 call assert_equal('XOpen2', bufname('%'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
534
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
535 lua b = nil
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
536 %bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
537 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
538
20609
054ba681412d patch 8.2.0858: not easy to require Lua modules
Bram Moolenaar <Bram@vim.org>
parents: 20441
diff changeset
539 func Test_update_package_paths()
054ba681412d patch 8.2.0858: not easy to require Lua modules
Bram Moolenaar <Bram@vim.org>
parents: 20441
diff changeset
540 set runtimepath+=./testluaplugin
054ba681412d patch 8.2.0858: not easy to require Lua modules
Bram Moolenaar <Bram@vim.org>
parents: 20441
diff changeset
541 call assert_equal("hello from lua", luaeval("require('testluaplugin').hello()"))
054ba681412d patch 8.2.0858: not easy to require Lua modules
Bram Moolenaar <Bram@vim.org>
parents: 20441
diff changeset
542 endfunc
054ba681412d patch 8.2.0858: not easy to require Lua modules
Bram Moolenaar <Bram@vim.org>
parents: 20441
diff changeset
543
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
544 " Test vim.line()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
545 func Test_lua_line()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
546 new
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
547 call setline(1, ['first line', 'second line'])
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
548 1
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
549 call assert_equal('first line', luaeval('vim.line()'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
550 2
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
551 call assert_equal('second line', luaeval('vim.line()'))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
552 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
553 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
554
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
555 " Test vim.beep()
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
556 func Test_lua_beep()
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
557 call assert_beeps('lua vim.beep()')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
558 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
559
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
560 " Test errors in luaeval()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
561 func Test_luaeval_error()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
562 " Compile error
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
563 call assert_fails("call luaeval('-nil')",
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
564 \ '[string "luaeval"]:1: attempt to perform arithmetic on a nil value')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
565 call assert_fails("call luaeval(']')",
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
566 \ "[string \"luaeval\"]:1: unexpected symbol near ']'")
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
567 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
568
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
569 " Test :luafile foo.lua
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
570 func Test_luafile()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
571 call delete('Xlua_file')
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
572 call writefile(["str = 'hello'", "num = 123" ], 'Xlua_file')
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
573 call setfperm('Xlua_file', 'r-xr-xr-x')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
574
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
575 luafile Xlua_file
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
576 call assert_equal('hello', luaeval('str'))
20441
86dde5c4b375 patch 8.2.0775: not easy to call a Vim function from Lua
Bram Moolenaar <Bram@vim.org>
parents: 20233
diff changeset
577 call assert_equal(123, luaeval('num'))
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
578
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
579 lua str, num = nil
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
580 call delete('Xlua_file')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
581 endfunc
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
582
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
583 " Test :luafile %
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
584 func Test_luafile_percent()
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
585 new Xlua_file
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
586 append
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
587 str, num = 'foo', 321.0
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
588 print(string.format('str=%s, num=%d', str, num))
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
589 .
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
590 w!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
591 luafile %
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
592 let msg = split(execute('message'), "\n")[-1]
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
593 call assert_equal('str=foo, num=321', msg)
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
594
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
595 lua str, num = nil
14230
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
596 call delete('Xlua_file')
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
597 bwipe!
2e95ea9afa1e patch 8.1.0132: lua tests are old style
Christian Brabandt <cb@256bit.org>
parents: 10757
diff changeset
598 endfunc
14239
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
599
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
600 " Test :luafile with syntax error
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
601 func Test_luafile_error()
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
602 new Xlua_file
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
603 call writefile(['nil = 0' ], 'Xlua_file')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
604 call setfperm('Xlua_file', 'r-xr-xr-x')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
605
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
606 call assert_fails('luafile Xlua_file', "Xlua_file:1: unexpected symbol near 'nil'")
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
607
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
608 call delete('Xlua_file')
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
609 bwipe!
7457bf2db968 patch 8.1.0136: Lua tests don't cover new features
Christian Brabandt <cb@256bit.org>
parents: 14235
diff changeset
610 endfunc
14395
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
611
19249
2a017e9dc6da patch 8.2.0183: tests fail when the float feature is disabled
Bram Moolenaar <Bram@vim.org>
parents: 17916
diff changeset
612 func Test_lua_set_cursor()
14395
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
613 " Check that setting the cursor position works.
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
614 new
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
615 call setline(1, ['first line', 'second line'])
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
616 normal gg
20045
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
617 lua << trim EOF
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
618 w = vim.window()
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
619 w.line = 1
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
620 w.col = 5
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
621 EOF
14395
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
622 call assert_equal([1, 5], [line('.'), col('.')])
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
623
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
624 " Check that movement after setting cursor position keeps current column.
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
625 normal j
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
626 call assert_equal([2, 5], [line('.'), col('.')])
c15bef307de6 patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents: 14296
diff changeset
627 endfunc
20045
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
628
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
629 " Test for various heredoc syntax
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
630 func Test_lua_heredoc()
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
631 lua << END
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
632 vim.command('let s = "A"')
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
633 END
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
634 lua <<
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
635 vim.command('let s ..= "B"')
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
636 .
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
637 lua << trim END
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
638 vim.command('let s ..= "C"')
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
639 END
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
640 lua << trim
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
641 vim.command('let s ..= "D"')
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
642 .
20233
5f9c2c7d3d73 patch 8.2.0672: heredoc in scripts does not accept lower case marker
Bram Moolenaar <Bram@vim.org>
parents: 20045
diff changeset
643 lua << trim eof
5f9c2c7d3d73 patch 8.2.0672: heredoc in scripts does not accept lower case marker
Bram Moolenaar <Bram@vim.org>
parents: 20045
diff changeset
644 vim.command('let s ..= "E"')
5f9c2c7d3d73 patch 8.2.0672: heredoc in scripts does not accept lower case marker
Bram Moolenaar <Bram@vim.org>
parents: 20045
diff changeset
645 eof
5f9c2c7d3d73 patch 8.2.0672: heredoc in scripts does not accept lower case marker
Bram Moolenaar <Bram@vim.org>
parents: 20045
diff changeset
646 call assert_equal('ABCDE', s)
20045
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
647 endfunc
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
648
04ef2ccf2519 patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents: 19249
diff changeset
649 " vim: shiftwidth=2 sts=2 expandtab