Files
neovim/test/functional/autocmd/modechanged_spec.lua
Justin M. Keyes 6d8c8b18d5 test(harness): migrate away from magic globals
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`.
2026-07-21 13:22:39 +02:00

68 lines
1.7 KiB
Lua

local t = require('test.testutil')
local n = require('test.functional.testnvim')()
local describe, it, before_each = t.describe, t.it, t.before_each
local clear, eval, eq = n.clear, n.eval, t.eq
local feed, command = n.feed, n.command
local exec_lua = n.exec_lua
describe('ModeChanged', function()
before_each(function()
clear()
end)
it('picks up terminal mode changes', function()
command('let g:count = 0')
command('au ModeChanged * let g:event = copy(v:event)')
command('au ModeChanged * let g:count += 1')
command('term')
feed('i')
eq({
old_mode = 'nt',
new_mode = 't',
}, eval('g:event'))
feed('<c-\\><c-n>')
eq({
old_mode = 't',
new_mode = 'nt',
}, eval('g:event'))
eq(3, eval('g:count'))
command('bd!')
-- v:event is cleared after the autocommand is done
eq({}, eval('v:event'))
end)
it('does not repeatedly trigger for scheduled callback', function()
exec_lua([[
vim.g.s_count = 0
vim.g.s_mode = ""
vim.g.t_count = 0
vim.g.t_mode = ""
vim.api.nvim_create_autocmd("ModeChanged", {
callback = function()
vim.g.s_count = vim.g.s_count + 1
vim.g.s_mode = vim.api.nvim_get_mode().mode
vim.schedule(function()
vim.g.t_count = vim.g.t_count + 1
vim.g.t_mode = vim.api.nvim_get_mode().mode
end)
end,
})
]])
feed('d')
eq(1, eval('g:s_count'))
eq('no', eval('g:s_mode'))
eq(1, eval('g:t_count'))
eq('no', eval('g:t_mode'))
feed('<Esc>')
eq(2, eval('g:s_count'))
eq('n', eval('g:s_mode'))
eq(2, eval('g:t_count'))
eq('n', eval('g:t_mode'))
end)
end)