aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/utility_functions_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-10-26 02:30:40 -0700
committerGitHub <noreply@github.com>2019-10-26 02:30:40 -0700
commit19ba36d0e1bb4ef28f8aa92c7386345fbcf78cf2 (patch)
treef8e95ef890acd6ee9fecb9d56a1093dfc4d1df8a /test/functional/lua/utility_functions_spec.lua
parent91b831da8b00319afba6a90b439d70960f90c3f7 (diff)
parent316c29bbf36d3d36c459b7c955d921b29ca659d0 (diff)
downloadrneovim-19ba36d0e1bb4ef28f8aa92c7386345fbcf78cf2.tar.gz
rneovim-19ba36d0e1bb4ef28f8aa92c7386345fbcf78cf2.tar.bz2
rneovim-19ba36d0e1bb4ef28f8aa92c7386345fbcf78cf2.zip
Merge #11271 from h-michael/add-more-info
lua/vim.shared: improve some validation messages
Diffstat (limited to 'test/functional/lua/utility_functions_spec.lua')
-rw-r--r--test/functional/lua/utility_functions_spec.lua31
1 files changed, 21 insertions, 10 deletions
diff --git a/test/functional/lua/utility_functions_spec.lua b/test/functional/lua/utility_functions_spec.lua
index ea2b1fc8a9..a51334398c 100644
--- a/test/functional/lua/utility_functions_spec.lua
+++ b/test/functional/lua/utility_functions_spec.lua
@@ -9,6 +9,7 @@ local eval = helpers.eval
local feed = helpers.feed
local pcall_err = helpers.pcall_err
local exec_lua = helpers.exec_lua
+local matches = helpers.matches
before_each(clear)
@@ -146,10 +147,9 @@ describe('lua stdlib', function()
]])
eq({"yy","xx"}, exec_lua("return test_table"))
- -- type checked args
+ -- Validates args.
eq('Error executing lua: vim.schedule: expected function',
pcall_err(exec_lua, "vim.schedule('stringly')"))
-
eq('Error executing lua: vim.schedule: expected function',
pcall_err(exec_lua, "vim.schedule()"))
@@ -195,8 +195,8 @@ describe('lua stdlib', function()
end)
it("vim.split", function()
- local split = function(str, sep)
- return exec_lua('return vim.split(...)', str, sep)
+ local split = function(str, sep, plain)
+ return exec_lua('return vim.split(...)', str, sep, plain)
end
local tests = {
@@ -221,10 +221,17 @@ describe('lua stdlib', function()
}
for _, t in ipairs(loops) do
- local status, err = pcall(split, t[1], t[2])
- eq(false, status)
- assert(string.match(err, "Infinite loop detected"))
+ matches(".*Infinite loop detected", pcall_err(split, t[1], t[2]))
end
+
+ -- Validates args.
+ eq(true, pcall(split, 'string', 'string', nil))
+ eq('Error executing lua: .../shared.lua: Expected string, got number',
+ pcall_err(split, 1, 'string', nil))
+ eq('Error executing lua: .../shared.lua: Expected string, got number',
+ pcall_err(split, 'string', 1, nil))
+ eq('Error executing lua: .../shared.lua: Expected boolean or nil, got number',
+ pcall_err(split, 'string', 'string', 1))
end)
it('vim.trim', function()
@@ -243,9 +250,9 @@ describe('lua stdlib', function()
assert(t[2], trim(t[1]))
end
- local status, err = pcall(trim, 2)
- eq(false, status)
- assert(string.match(err, "Only strings can be trimmed"))
+ -- Validates args.
+ eq('Error executing lua: .../shared.lua: Expected string, got number',
+ pcall_err(trim, 2))
end)
it('vim.inspect', function()
@@ -287,5 +294,9 @@ describe('lua stdlib', function()
it('vim.pesc', function()
eq('foo%-bar', exec_lua([[return vim.pesc('foo-bar')]]))
eq('foo%%%-bar', exec_lua([[return vim.pesc(vim.pesc('foo-bar'))]]))
+
+ -- Validates args.
+ eq("Error executing lua: .../shared.lua: Expected string, got number",
+ pcall_err(exec_lua, [[return vim.pesc(2)]]))
end)
end)