aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ex_cmds/verbose_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/ex_cmds/verbose_spec.lua')
-rw-r--r--test/functional/ex_cmds/verbose_spec.lua122
1 files changed, 90 insertions, 32 deletions
diff --git a/test/functional/ex_cmds/verbose_spec.lua b/test/functional/ex_cmds/verbose_spec.lua
index 50077e9e0c..7ceb2460d3 100644
--- a/test/functional/ex_cmds/verbose_spec.lua
+++ b/test/functional/ex_cmds/verbose_spec.lua
@@ -5,19 +5,21 @@ local eq = helpers.eq
local exec = helpers.exec
local exec_capture = helpers.exec_capture
local write_file = helpers.write_file
-local call_viml_function = helpers.meths.call_function
+local call_viml_function = helpers.api.nvim_call_function
local function last_set_tests(cmd)
local script_location, script_file
-- All test cases below use the same nvim instance.
setup(function()
- clear{args={'-V1'}}
+ clear { args = { '-V1' } }
script_file = 'test_verbose.lua'
local current_dir = call_viml_function('getcwd', {})
- current_dir = call_viml_function('fnamemodify', {current_dir, ':~'})
- script_location = table.concat{current_dir, helpers.get_pathsep(), script_file}
+ current_dir = call_viml_function('fnamemodify', { current_dir, ':~' })
+ script_location = table.concat { current_dir, helpers.get_pathsep(), script_file }
- write_file(script_file, [[
+ write_file(
+ script_file,
+ [[
vim.api.nvim_set_option_value('hlsearch', false, {})
vim.bo.expandtab = true
vim.opt.number = true
@@ -45,7 +47,8 @@ function! s:return80()\
endfunction\
let &tw = s:return80()\
", true)
-]])
+]]
+ )
exec(cmd .. ' ' .. script_file)
end)
@@ -55,54 +58,84 @@ let &tw = s:return80()\
it('"Last set" for option set by Lua', function()
local result = exec_capture(':verbose set hlsearch?')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
nohlsearch
Last set from %s line 1]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
it('"Last set" for option set by vim.o', function()
local result = exec_capture(':verbose set expandtab?')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
expandtab
Last set from %s line 2]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
it('"Last set" for option set by vim.opt', function()
local result = exec_capture(':verbose set number?')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
number
Last set from %s line 3]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
it('"Last set" for mapping set by Lua', function()
local result = exec_capture(':verbose map <leader>key1')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
n \key1 * :echo "test"<CR>
Last set from %s line 4]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
it('"Last set" for mapping set by vim.keymap', function()
local result = exec_capture(':verbose map <leader>key2')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
n \key2 * :echo "test"<CR>
Last set from %s line 5]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
it('"Last set" for autocmd by vim.api.nvim_exec', function()
local result = exec_capture(':verbose autocmd test_group Filetype c')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
--- Autocommands ---
test_group FileType
c setl cindent
Last set from %s line 7]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
it('"Last set" for command defined by nvim_command', function()
@@ -110,38 +143,58 @@ test_group FileType
pending('nvim_command does not set the script context')
end
local result = exec_capture(':verbose command Bdelete')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
Name Args Address Complete Definition
Bdelete 0 :bd
Last set from %s line 13]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
it('"Last set" for command defined by nvim_create_user_command', function()
local result = exec_capture(':verbose command TestCommand')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
Name Args Address Complete Definition
TestCommand 0 :echo 'Hello'
Last set from %s line 14]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
it('"Last set" for function', function()
local result = exec_capture(':verbose function Close_Window')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
function Close_Window() abort
Last set from %s line 16
1 wincmd -
endfunction]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
it('"Last set" works with anonymous sid', function()
local result = exec_capture(':verbose set tw?')
- eq(string.format([[
+ eq(
+ string.format(
+ [[
textwidth=80
Last set from %s line 22]],
- script_location), result)
+ script_location
+ ),
+ result
+ )
end)
end
@@ -159,10 +212,13 @@ describe('lua verbose:', function()
setup(function()
clear()
script_file = 'test_luafile.lua'
- write_file(script_file, [[
+ write_file(
+ script_file,
+ [[
vim.api.nvim_set_option_value('hlsearch', false, {})
- ]])
- exec(':source '..script_file)
+ ]]
+ )
+ exec(':source ' .. script_file)
end)
teardown(function()
@@ -171,9 +227,11 @@ describe('lua verbose:', function()
it('is disabled when verbose = 0', function()
local result = exec_capture(':verbose set hlsearch?')
- eq([[
+ eq(
+ [[
nohlsearch
- Last set from Lua]], result)
+ Last set from Lua]],
+ result
+ )
end)
end)
-