Files
neovim/test/functional/lua/xdiff_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

206 lines
4.6 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 = n.clear
local exec_lua = n.exec_lua
local eq = t.eq
local matches = t.matches
local pcall_err = t.pcall_err
describe('xdiff bindings', function()
before_each(function()
clear()
end)
describe('can diff text', function()
local a1 = 'Hello\n'
local b1 = 'Helli\n'
local a2 = 'Hello\nbye\nfoo\n'
local b2 = 'Helli\nbye\nbar\nbaz\n'
it('with no callback', function()
eq(
table.concat({
'@@ -1 +1 @@',
'-Hello',
'+Helli',
'',
}, '\n'),
exec_lua(function()
return vim.text.diff(a1, b1)
end)
)
eq(
table.concat({
'@@ -1 +1 @@',
'-Hello',
'+Helli',
'@@ -3 +3,2 @@',
'-foo',
'+bar',
'+baz',
'',
}, '\n'),
exec_lua(function()
return vim.text.diff(a2, b2)
end)
)
end)
it('with callback', function()
eq(
{ { 1, 1, 1, 1 } },
exec_lua(function()
local exp = {} --- @type table[]
assert(vim.text.diff(a1, b1, {
on_hunk = function(...)
exp[#exp + 1] = { ... }
end,
}) == nil)
return exp
end)
)
eq(
{ { 1, 1, 1, 1 }, { 3, 1, 3, 2 } },
exec_lua(function()
local exp = {} --- @type table[]
assert(vim.text.diff(a2, b2, {
on_hunk = function(...)
exp[#exp + 1] = { ... }
end,
}) == nil)
return exp
end)
)
-- gives higher precedence to on_hunk over result_type
eq(
{ { 1, 1, 1, 1 }, { 3, 1, 3, 2 } },
exec_lua(function()
local exp = {} --- @type table[]
assert(vim.text.diff(a2, b2, {
on_hunk = function(...)
exp[#exp + 1] = { ... }
end,
result_type = 'indices',
}) == nil)
return exp
end)
)
end)
it('with error callback', function()
t.matches(
[[on_hunk: %.%.%./xdiff_spec%.lua%:0%: ERROR1]],
pcall_err(exec_lua, function()
vim.text.diff(a1, b1, {
on_hunk = function()
error('ERROR1')
end,
})
end)
)
end)
it('with hunk_lines', function()
eq(
{ { 1, 1, 1, 1 } },
exec_lua(function()
return vim.text.diff(a1, b1, { result_type = 'indices' })
end)
)
eq(
{ { 1, 1, 1, 1 }, { 3, 1, 3, 2 } },
exec_lua(function()
return vim.text.diff(a2, b2, { result_type = 'indices' })
end)
)
end)
it('can run different algorithms', function()
local a = table.concat({
'.foo1 {',
' margin: 0;',
'}',
'',
'.bar {',
' margin: 0;',
'}',
'',
}, '\n')
local b = table.concat({
'.bar {',
' margin: 0;',
'}',
'',
'.foo1 {',
' margin: 0;',
' color: green;',
'}',
'',
}, '\n')
eq(
table.concat({
'@@ -1,4 +0,0 @@',
'-.foo1 {',
'- margin: 0;',
'-}',
'-',
'@@ -7,0 +4,5 @@',
'+',
'+.foo1 {',
'+ margin: 0;',
'+ color: green;',
'+}',
'',
}, '\n'),
exec_lua(function()
return vim.text.diff(a, b, {
algorithm = 'patience',
})
end)
)
end)
end)
it('can handle bad args', function()
matches([[Expected at least 2 arguments$]], pcall_err(exec_lua, [[vim.text.diff('a')]]))
matches(
[[bad argument %#1 to '_?diff' %(expected string%)]],
pcall_err(exec_lua, [[vim.text.diff(1, 2)]])
)
matches(
[[bad argument %#3 to '_?diff' %(expected table%)]],
pcall_err(exec_lua, [[vim.text.diff('a', 'b', true)]])
)
matches(
[[invalid key: bad_key$]],
pcall_err(exec_lua, [[vim.text.diff('a', 'b', { bad_key = true })]])
)
matches(
[[on_hunk is not a function$]],
pcall_err(exec_lua, [[vim.text.diff('a', 'b', { on_hunk = true })]])
)
end)
it('can handle strings with embedded NUL characters (GitHub #30305)', function()
eq(
{ { 0, 0, 1, 1 }, { 1, 0, 3, 2 } },
exec_lua(function()
return vim.text.diff('\n', '\0\n\n\nb', { linematch = true, result_type = 'indices' })
end)
)
end)
end)