mirror of
https://github.com/neovim/neovim.git
synced 2026-07-31 12:49:11 +00:00
Problem: The magic globals `it`, `describe`, etc., are more trouble than they are worth. - Hooking into `after_each` requires `getfenv()` hacks. - They confuse luals/emmylua, because the top-level `.luarc.json` isn't merged with `test/.luarc.json` (apparently a luals limitation?) - They totally defeat discoverability because the user just has to "know" about the various magic symbols. So they harm DX, which means they serve no purpose at all. Solution: - Expose the test API from `testutil`, so tests can call `t.it()`, `t.describe()`, etc., in the conventional way. - Drop `getfenv()` hacks. - Drop the `setfenv()` injection in `load_chunk`. - Drop `test/_meta.lua`.
188 lines
4.5 KiB
Lua
188 lines
4.5 KiB
Lua
local n = require('test.functional.testnvim')()
|
|
local t = require('test.testutil')
|
|
|
|
local describe, it, before_each, after_each = t.describe, t.it, t.before_each, t.after_each
|
|
local eq = t.eq
|
|
local neq = t.neq
|
|
local exec_lua = n.exec_lua
|
|
|
|
describe('nvim.spellfile', function()
|
|
local data_root = 'Xtest_data_spellfile'
|
|
local rtp_dir = 'Xtest_rtp_spellfile'
|
|
|
|
before_each(function()
|
|
n.clear()
|
|
n.exec('set runtimepath+=' .. rtp_dir)
|
|
end)
|
|
after_each(function()
|
|
n.rmdir(data_root)
|
|
n.rmdir(rtp_dir)
|
|
end)
|
|
|
|
it('no-op when .spl and .sug already exist on runtimepath', function()
|
|
local my_spell = vim.fs.joinpath(vim.fs.abspath(rtp_dir), 'spell')
|
|
n.mkdir_p(my_spell)
|
|
t.retry(nil, nil, function()
|
|
assert(vim.uv.fs_stat(my_spell))
|
|
end)
|
|
t.write_file(my_spell .. '/en_gb.utf-8.spl', 'dummy')
|
|
t.write_file(my_spell .. '/en_gb.utf-8.sug', 'dummy')
|
|
|
|
local out = exec_lua(
|
|
[[
|
|
local rtp_dir = ...
|
|
local s = require('nvim.spellfile')
|
|
local my_spell = vim.fs.joinpath(vim.fs.abspath(rtp_dir), 'spell')
|
|
|
|
vim.uv.fs_access = function(p, mode)
|
|
return p == my_spell
|
|
end
|
|
|
|
local prompted = false
|
|
vim.fn.input = function() prompted = true; return 'n' end
|
|
|
|
local requests = 0
|
|
vim.net.request = function(_, _, cb)
|
|
requests = requests + 1
|
|
cb()
|
|
end
|
|
|
|
s.get('en_gb')
|
|
|
|
return { prompted = prompted, requests = requests }
|
|
]],
|
|
rtp_dir
|
|
)
|
|
|
|
eq(false, out.prompted)
|
|
eq(0, out.requests)
|
|
end)
|
|
|
|
it('downloads .spl to stdpath(data)/site/spell, .sug 404 is non-fatal, reloads', function()
|
|
n.mkdir_p(rtp_dir)
|
|
|
|
local out = exec_lua(
|
|
[[
|
|
local data_root = ...
|
|
local s = require('nvim.spellfile')
|
|
|
|
vim.fn.stdpath = function(k)
|
|
assert(k == 'data')
|
|
return data_root
|
|
end
|
|
|
|
vim.fn.input = function() return 'y' end
|
|
|
|
local did_reload = false
|
|
local orig_cmd = vim.cmd
|
|
vim.cmd = function(cmd)
|
|
if cmd:match('setlocal%s+spell!') then
|
|
did_reload = true
|
|
end
|
|
return orig_cmd(cmd)
|
|
end
|
|
|
|
vim.net.request = function(url, opts, cb)
|
|
local name = url:match('/([^/]+)$')
|
|
if name and name:find('%.spl$') then
|
|
vim.fn.mkdir(vim.fs.dirname(opts.outpath), 'p')
|
|
vim.fn.writefile({'ok'}, opts.outpath)
|
|
cb(nil, { status = 200 })
|
|
else
|
|
cb(nil, { status = 404 })
|
|
end
|
|
end
|
|
|
|
s.get('en_gb')
|
|
|
|
local spl = vim.fs.joinpath(data_root, 'site/spell/en_gb.utf-8.spl')
|
|
local sug = vim.fs.joinpath(data_root, 'site/spell/en_gb.utf-8.sug')
|
|
|
|
return {
|
|
has_spl = vim.uv.fs_stat(spl) ~= nil,
|
|
has_sug = vim.uv.fs_stat(sug) ~= nil,
|
|
did_reload = did_reload,
|
|
}
|
|
]],
|
|
data_root
|
|
)
|
|
|
|
eq(true, out.has_spl)
|
|
eq(false, out.has_sug)
|
|
eq(true, out.did_reload)
|
|
end)
|
|
|
|
it('failure mode: 404 for all files => warn once, mark done, no reload', function()
|
|
local out = exec_lua(
|
|
[[
|
|
local data_root = ...
|
|
local s = require('nvim.spellfile')
|
|
|
|
vim.fn.stdpath = function(k)
|
|
assert(k == 'data')
|
|
return data_root
|
|
end
|
|
|
|
vim.fn.input = function() return 'y' end
|
|
|
|
local warns = 0
|
|
vim.notify = function(_, lvl)
|
|
if lvl and lvl >= vim.log.levels.WARN then warns = warns + 1 end
|
|
end
|
|
|
|
local did_reload = false
|
|
local orig_cmd = vim.cmd
|
|
vim.cmd = function(c)
|
|
if c:match('setlocal%s+spell!') then
|
|
did_reload = true
|
|
end
|
|
return orig_cmd(c)
|
|
end
|
|
|
|
vim.net.request = function(_, _, cb) cb(nil, { status = 404 }) end
|
|
|
|
local info = s.get('zz')
|
|
local done = s._done[info.key] == true
|
|
|
|
return { warns = warns, done = done, did_reload = did_reload }
|
|
]],
|
|
data_root
|
|
)
|
|
|
|
eq(1, out.warns)
|
|
eq(true, out.done)
|
|
eq(false, out.did_reload)
|
|
end)
|
|
|
|
it('no confirmation when using confirm = false', function()
|
|
local out = exec_lua(
|
|
[[
|
|
local rtp_dir = ...
|
|
local s = require('nvim.spellfile')
|
|
|
|
vim.fn.input = function(...)
|
|
error('prompt was triggered')
|
|
return 'n'
|
|
end
|
|
|
|
local requests = 0
|
|
vim.net.request = function(_, _, cb)
|
|
requests = requests + 1
|
|
cb()
|
|
end
|
|
|
|
s.config({ confirm = false })
|
|
s.get('en_gb')
|
|
|
|
-- Reset value
|
|
s.config({ confirm = true })
|
|
|
|
return { requests = requests }
|
|
]],
|
|
rtp_dir
|
|
)
|
|
|
|
neq(0, out.requests)
|
|
end)
|
|
end)
|