mirror of
https://github.com/neovim/neovim.git
synced 2026-03-31 04:42:03 +00:00
Problem:
failures in s390x CI.
Solution:
- runtime/lua/man.lua: parse_path() can return nil but 3 callers didn't handle it.
- skip some tests on s390x.
TODO:
- TODO: why "build/bin/xxd is not executable" on s390x?
- TODO: other failures, not addressed (see below).
OTHER FAILURES:
FAILED test/functional/treesitter/fold_spec.lua @ 87: treesitter foldexpr recomputes fold levels after lines are added/removed
test/functional/treesitter/fold_spec.lua:95: Expected objects to be the same.
Passed in:
(table: 0x4013c18940) {
[1] = '0'
[2] = '0'
[3] = '0'
*[4] = '0'
[5] = '0'
...
Expected:
(table: 0x4005acf900) {
[1] = '0'
[2] = '0'
[3] = '>1'
*[4] = '1'
[5] = '1'
...
stack traceback:
(tail call): ?
test/functional/treesitter/fold_spec.lua:95: in function <test/functional/treesitter/fold_spec.lua:87>
FAILED test/functional/treesitter/select_spec.lua @ 52: treesitter incremental-selection works
test/functional/treesitter/select_spec.lua:63: Expected objects to be the same.
Passed in:
(string) 'bar(2)'
Expected:
(string) 'foo(1)'
stack traceback:
(tail call): ?
test/functional/treesitter/select_spec.lua:63: in function <test/functional/treesitter/select_spec.lua:52>
FAILED test/functional/treesitter/select_spec.lua @ 69: treesitter incremental-selection repeat
test/functional/treesitter/select_spec.lua:82: Expected objects to be the same.
Passed in:
(string) '2'
Expected:
(string) '4'
stack traceback:
(tail call): ?
test/functional/treesitter/select_spec.lua:82: in function <test/functional/treesitter/select_spec.lua:69>
FAILED test/functional/treesitter/select_spec.lua @ 98: treesitter incremental-selection history
test/functional/treesitter/select_spec.lua:111: Expected objects to be the same.
Passed in:
(string) 'bar(2)'
Expected:
(string) 'foo(1)'
stack traceback:
(tail call): ?
test/functional/treesitter/select_spec.lua:111: in function <test/functional/treesitter/select_spec.lua:98>
FAILED test/functional/treesitter/select_spec.lua @ 186: treesitter incremental-selection with injections works
test/functional/treesitter/select_spec.lua:201: Expected objects to be the same.
Passed in:
(string) 'lua'
Expected:
(string) 'foo'
stack traceback:
(tail call): ?
test/functional/treesitter/select_spec.lua:201: in function <test/functional/treesitter/select_spec.lua:186>
FAILED test/functional/treesitter/select_spec.lua @ 216: treesitter incremental-selection with injections ignores overlapping nodes
test/functional/treesitter/select_spec.lua:231: Expected objects to be the same.
Passed in:
(string) ' )'
Expected:
(string) ' foo('
stack traceback:
(tail call): ?
test/functional/treesitter/select_spec.lua:231: in function <test/functional/treesitter/select_spec.lua:216>
FAILED test/functional/treesitter/select_spec.lua @ 307: treesitter incremental-selection with injections handles disjointed trees
test/functional/treesitter/select_spec.lua:337: Expected objects to be the same.
Passed in:
(string) 'int'
Expected:
(string) '1}'
stack traceback:
(tail call): ?
test/functional/treesitter/select_spec.lua:337: in function <test/functional/treesitter/select_spec.lua:307>
ERROR test/functional/treesitter/parser_spec.lua @ 562: treesitter parser API can run async parses with string parsers
test/functional/treesitter/parser_spec.lua:565: attempt to index a nil value
stack traceback:
test/functional/testnvim/exec_lua.lua:124: in function <test/functional/testnvim/exec_lua.lua:105>
(tail call): ?
(tail call): ?
test/functional/treesitter/parser_spec.lua:563: in function <test/functional/treesitter/parser_spec.lua:562>
FAILED test/functional/core/job_spec.lua @ 1157: jobs jobstop() kills entire process tree #6530
test/functional/core/job_spec.lua:1244: retry() attempts: 94
test/functional/core/job_spec.lua:1246: Expected objects to be the same.
Passed in:
(table: 0x401dd74b30) {
[name] = 'sleep <defunct>'
[pid] = 33579
[ppid] = 1 }
Expected:
(userdata) 'vim.NIL'
stack traceback:
test/testutil.lua:89: in function 'retry'
test/functional/core/job_spec.lua:1244: in function <test/functional/core/job_spec.lua:1157>
170 lines
5.0 KiB
Lua
170 lines
5.0 KiB
Lua
local t = require('test.testutil')
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
local eq = t.eq
|
|
local exec_lua = n.exec_lua
|
|
local clear = n.clear
|
|
local is_ci = t.is_ci
|
|
local is_os = t.is_os
|
|
local skip = t.skip
|
|
|
|
-- Create a file via a rename to avoid multiple
|
|
-- events which can happen with some backends on some platforms
|
|
local function touch(path)
|
|
local tmp = t.tmpname()
|
|
assert(vim.uv.fs_rename(tmp, path))
|
|
end
|
|
|
|
describe('vim._watch', function()
|
|
before_each(function()
|
|
clear()
|
|
end)
|
|
|
|
local function run(watchfunc)
|
|
-- Monkey-patches vim.notify_once so we can "spy" on it.
|
|
local function spy_notify_once()
|
|
exec_lua [[
|
|
_G.__notify_once_msgs = {}
|
|
vim.notify_once = (function(overridden)
|
|
return function(msg, level, opts)
|
|
table.insert(_G.__notify_once_msgs, msg)
|
|
return overridden(msg, level, opts)
|
|
end
|
|
end)(vim.notify_once)
|
|
]]
|
|
end
|
|
|
|
local function last_notify_once_msg()
|
|
return exec_lua 'return _G.__notify_once_msgs[#_G.__notify_once_msgs]'
|
|
end
|
|
|
|
local function do_watch(root_dir, watchfunc_)
|
|
exec_lua(
|
|
[[
|
|
local root_dir, watchfunc = ...
|
|
|
|
_G.events = {}
|
|
|
|
_G.stop_watch = vim._watch[watchfunc](root_dir, {
|
|
debounce = 100,
|
|
include_pattern = vim.lpeg.P(root_dir) * vim.lpeg.P("/file") ^ -1,
|
|
exclude_pattern = vim.lpeg.P(root_dir .. '/file.unwatched'),
|
|
}, function(path, change_type)
|
|
table.insert(_G.events, { path = path, change_type = change_type })
|
|
end)
|
|
]],
|
|
root_dir,
|
|
watchfunc_
|
|
)
|
|
end
|
|
|
|
it(watchfunc .. '() ignores nonexistent paths', function()
|
|
if watchfunc == 'inotify' then
|
|
skip(n.fn.executable('inotifywait') == 0, 'inotifywait not found')
|
|
skip(is_os('bsd'), 'inotifywait on bsd CI seems to expect path to exist?')
|
|
skip(t.is_arch('s390x'), 'inotifywait not available on s390x CI')
|
|
end
|
|
|
|
local msg = ('watch.%s: ENOENT: no such file or directory'):format(watchfunc)
|
|
|
|
spy_notify_once()
|
|
do_watch('/i am /very/funny.go', watchfunc)
|
|
|
|
if watchfunc ~= 'inotify' then -- watch.inotify() doesn't (currently) call vim.notify_once.
|
|
t.retry(nil, 2000, function()
|
|
t.eq(msg, last_notify_once_msg())
|
|
end)
|
|
end
|
|
eq(0, exec_lua [[return #_G.events]])
|
|
|
|
exec_lua [[_G.stop_watch()]]
|
|
end)
|
|
|
|
it(watchfunc .. '() detects file changes', function()
|
|
if watchfunc == 'inotify' then
|
|
skip(is_os('win'), 'not supported on windows')
|
|
skip(is_os('mac'), 'flaky test on mac')
|
|
skip(not is_ci() and n.fn.executable('inotifywait') == 0, 'inotifywait not found')
|
|
skip(t.is_arch('s390x'), 'inotifywait not available on s390x CI')
|
|
end
|
|
|
|
-- Note: because this is not `elseif`, BSD is skipped for *all* cases...?
|
|
if watchfunc == 'watch' then
|
|
skip(is_os('mac'), 'flaky test on mac')
|
|
skip(is_os('bsd'), 'Stopped working on bsd after 3ca967387c49c754561c3b11a574797504d40f38')
|
|
elseif watchfunc == 'watchdirs' and is_os('mac') then
|
|
skip(true, 'weird failure since macOS 14 CI, see bbf208784ca279178ba0075b60d3e9c80f11da7a')
|
|
else
|
|
skip(
|
|
is_os('bsd'),
|
|
'kqueue only reports events on watched folder itself, not contained files #26110'
|
|
)
|
|
end
|
|
|
|
local expected_events = 0
|
|
--- Waits for a new event, or fails if no events are triggered.
|
|
local function wait_for_event()
|
|
expected_events = expected_events + 1
|
|
exec_lua(
|
|
[[
|
|
local expected_events = ...
|
|
assert(
|
|
vim.wait(3000, function()
|
|
return #_G.events == expected_events
|
|
end),
|
|
string.format(
|
|
'Timed out waiting for expected event no. %d. Current events seen so far: %s',
|
|
expected_events,
|
|
vim.inspect(events)
|
|
)
|
|
)
|
|
]],
|
|
expected_events
|
|
)
|
|
end
|
|
|
|
local root_dir = vim.uv.fs_mkdtemp(vim.fs.dirname(t.tmpname(false)) .. '/nvim_XXXXXXXXXX')
|
|
local unwatched_path = root_dir .. '/file.unwatched'
|
|
local watched_path = root_dir .. '/file'
|
|
|
|
do_watch(root_dir, watchfunc)
|
|
|
|
if watchfunc ~= 'watch' then
|
|
vim.uv.sleep(200)
|
|
end
|
|
|
|
touch(watched_path)
|
|
touch(unwatched_path)
|
|
wait_for_event()
|
|
|
|
os.remove(watched_path)
|
|
os.remove(unwatched_path)
|
|
wait_for_event()
|
|
|
|
exec_lua [[_G.stop_watch()]]
|
|
-- No events should come through anymore
|
|
|
|
vim.uv.sleep(100)
|
|
touch(watched_path)
|
|
vim.uv.sleep(100)
|
|
os.remove(watched_path)
|
|
vim.uv.sleep(100)
|
|
|
|
eq({
|
|
{
|
|
change_type = exec_lua([[return vim._watch.FileChangeType.Created]]),
|
|
path = root_dir .. '/file',
|
|
},
|
|
{
|
|
change_type = exec_lua([[return vim._watch.FileChangeType.Deleted]]),
|
|
path = root_dir .. '/file',
|
|
},
|
|
}, exec_lua [[return _G.events]])
|
|
end)
|
|
end
|
|
|
|
run('watch')
|
|
run('watchdirs')
|
|
run('inotify')
|
|
end)
|