mirror of
https://github.com/neovim/neovim.git
synced 2026-07-31 20:59: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`.
153 lines
4.5 KiB
Lua
153 lines
4.5 KiB
Lua
local t = require('test.testutil')
|
|
local n = require('test.functional.testnvim')()
|
|
local Screen = require('test.functional.ui.screen')
|
|
|
|
local describe, it, before_each, pending = t.describe, t.it, t.before_each, t.pending
|
|
local clear = n.clear
|
|
local connect = n.connect
|
|
local get_session = n.get_session
|
|
local eq = t.eq
|
|
local fn = n.fn
|
|
local is_os = t.is_os
|
|
local nvim_prog = n.nvim_prog
|
|
|
|
describe('has()', function()
|
|
before_each(clear)
|
|
|
|
it('"nvim-x.y.z"', function()
|
|
eq(0, fn.has('nvim-'))
|
|
eq(0, fn.has('nvim- '))
|
|
eq(0, fn.has('nvim- \t '))
|
|
eq(0, fn.has('nvim-0. 1. 1'))
|
|
eq(0, fn.has('nvim-0. 1.1'))
|
|
eq(0, fn.has('nvim-0.1. 1'))
|
|
eq(0, fn.has('nvim-a'))
|
|
eq(0, fn.has('nvim-a.b.c'))
|
|
eq(0, fn.has('nvim-0.b.c'))
|
|
eq(0, fn.has('nvim-0.0.c'))
|
|
eq(0, fn.has('nvim-0.b.0'))
|
|
eq(0, fn.has('nvim-a.b.0'))
|
|
eq(0, fn.has('nvim-.0.0.0'))
|
|
eq(0, fn.has('nvim-.0'))
|
|
eq(0, fn.has('nvim-0.'))
|
|
eq(0, fn.has('nvim-0..'))
|
|
eq(0, fn.has('nvim-.'))
|
|
eq(0, fn.has('nvim-..'))
|
|
eq(0, fn.has('nvim-...'))
|
|
eq(0, fn.has('nvim-42'))
|
|
eq(0, fn.has('nvim-9999'))
|
|
eq(0, fn.has('nvim-99.001.05'))
|
|
|
|
eq(1, fn.has('nvim'))
|
|
eq(1, fn.has('nvim-0'))
|
|
eq(1, fn.has('nvim-0.1'))
|
|
eq(1, fn.has('nvim-0.0.0'))
|
|
eq(1, fn.has('nvim-0.1.1.'))
|
|
eq(1, fn.has('nvim-0.1.1.abc'))
|
|
eq(1, fn.has('nvim-0.1.1..'))
|
|
eq(1, fn.has('nvim-0.1.1.. ..'))
|
|
eq(1, fn.has('nvim-0.1.1.... '))
|
|
eq(1, fn.has('nvim-0.0.0'))
|
|
eq(1, fn.has('nvim-0.0.1'))
|
|
eq(1, fn.has('nvim-0.1.0'))
|
|
eq(1, fn.has('nvim-0.1.1'))
|
|
eq(1, fn.has('nvim-0.1.5'))
|
|
eq(1, fn.has('nvim-0000.001.05'))
|
|
eq(1, fn.has('nvim-0.01.005'))
|
|
eq(1, fn.has('nvim-00.001.05'))
|
|
end)
|
|
|
|
it('"unnamedplus"', function()
|
|
if (not is_os('win')) and fn.has('clipboard') == 1 then
|
|
eq(1, fn.has('unnamedplus'))
|
|
else
|
|
eq(0, fn.has('unnamedplus'))
|
|
end
|
|
end)
|
|
|
|
it('"terminfo"', function()
|
|
local version = n.exec_capture('verbose version')
|
|
local compilation_string = version:match('Compilation: (.*)')
|
|
-- zig builds currently show only TODO for the compilation string
|
|
if not compilation_string or compilation_string:match('TODO') then
|
|
pending('no compilation string present')
|
|
end
|
|
-- Looks like "HAVE_UNIBILIUM ", "HAVE_UNIBILIUM=1", "HAVE_UNIBILIUM off", ….
|
|
-- Capture group returns the "1"/"off"/….
|
|
local build_flag =
|
|
vim.trim((compilation_string:match('HAVE_UNIBILIUM([^-]+)') or 'missing'):lower())
|
|
local is_enabled = not (
|
|
build_flag == 'missing'
|
|
or build_flag == 'false'
|
|
or build_flag == '0'
|
|
or build_flag == 'off'
|
|
)
|
|
eq(is_enabled and 1 or 0, fn.has('terminfo'))
|
|
end)
|
|
|
|
it('"wsl"', function()
|
|
local is_wsl = vim.uv.os_uname()['release']:lower():match('microsoft') and true or false
|
|
if is_wsl then
|
|
eq(1, fn.has('wsl'))
|
|
else
|
|
eq(0, fn.has('wsl'))
|
|
end
|
|
end)
|
|
|
|
it('"gui_running"', function()
|
|
eq(0, fn.has('gui_running'))
|
|
local tui_session = get_session()
|
|
local gui_session = connect(fn.serverstart())
|
|
eq(0, fn.has('gui_running'))
|
|
local tui = Screen.new(50, 5, { rgb = true, stdin_tty = true, stdout_tty = true }, tui_session)
|
|
eq(0, fn.has('gui_running'))
|
|
local gui = Screen.new(50, 15, { ext_multigrid = true, rgb = true }, gui_session)
|
|
eq(1, fn.has('gui_running'))
|
|
tui:detach()
|
|
eq(1, fn.has('gui_running'))
|
|
gui:detach()
|
|
eq(0, fn.has('gui_running'))
|
|
end)
|
|
|
|
it('does not change v:shell_error', function()
|
|
fn.system({ nvim_prog, '-es', '+73cquit' })
|
|
fn.has('python3') -- use a call whose implementation shells out
|
|
eq(73, fn.eval('v:shell_error'))
|
|
end)
|
|
|
|
it('"patch[0-9]\\+"', function()
|
|
eq(1, fn.has('patch0'))
|
|
eq(1, fn.has('patch1'))
|
|
end)
|
|
|
|
it('"patch-x.y.z"', function()
|
|
-- versions older than current v:version always succeed
|
|
-- unless minor version has 2+ digits
|
|
eq(1, fn.has('patch-7.4.0'))
|
|
eq(0, fn.has('patch-7.40.0'))
|
|
eq(1, fn.has('patch-8.0.0'))
|
|
eq(0, fn.has('patch-8.00.0'))
|
|
|
|
eq(1, fn.has('patch-8.1.0'))
|
|
eq(1, fn.has('patch-8.1.1'))
|
|
eq(1, fn.has('patch-8.1.0001'))
|
|
eq(1, fn.has('patch-8.1.1939'))
|
|
eq(1, fn.has('patch-8.1.2424'))
|
|
|
|
eq(0, fn.has('patch-8.2.0'))
|
|
eq(1, fn.has('patch-8.2.1'))
|
|
eq(1, fn.has('patch-8.2.2999'))
|
|
eq(1, fn.has('patch-8.2.5171'))
|
|
|
|
eq(0, fn.has('patch-9.0.0'))
|
|
eq(1, fn.has('patch-9.0.1'))
|
|
eq(1, fn.has('patch-9.0.998'))
|
|
eq(1, fn.has('patch-9.0.2190'))
|
|
|
|
eq(0, fn.has('patch-9.1.0'))
|
|
eq(1, fn.has('patch-9.1.1'))
|
|
eq(1, fn.has('patch-9.1.690'))
|
|
eq(1, fn.has('patch-9.1.1934'))
|
|
end)
|
|
end)
|