Files
neovim/test/benchmark/deepcopy_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

61 lines
1.2 KiB
Lua

local t = require('test.testutil')
local describe, it = t.describe, t.it
local N = 20
local function tcall(f, ...)
local ts = vim.uv.hrtime()
for _ = 1, N do
f(...)
end
return ((vim.uv.hrtime() - ts) / 1000000) / N
end
local function build_shared(n)
local t = {}
local a = {}
local b = {}
local c = {}
for _ = 1, n do
t[#t + 1] = {}
local tl = t[#t]
for _ = 1, n do
tl[#tl + 1] = a
tl[#tl + 1] = b
tl[#tl + 1] = c
end
end
return t
end
local function build_unique(n)
local t = {}
for _ = 1, n do
t[#t + 1] = {}
local tl = t[#t]
for _ = 1, n do
tl[#tl + 1] = {}
end
end
return t
end
describe('vim.deepcopy()', function()
local function run(name, n, noref)
it(string.format('%s entries=%d noref=%s', name, n, noref), function()
local t = name == 'shared' and build_shared(n) or build_unique(n)
local d = tcall(vim.deepcopy, t, noref)
print(string.format('%.2f ms', d))
end)
end
run('unique', 50, false)
run('unique', 50, true)
run('unique', 2000, false)
run('unique', 2000, true)
run('shared', 50, false)
run('shared', 50, true)
run('shared', 2000, false)
run('shared', 2000, true)
end)