add new keypmap for quick selecting first entry
This commit is contained in:
@@ -244,8 +244,16 @@ describe("test-samurai core (no bundled runners)", function()
|
||||
local joined = table.concat(lines, "\n")
|
||||
assert.is_true(joined:find("TSamNearest", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("TSamShowOutput", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("TSam commands:", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("Listing navigation:", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("Listing filters:", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("Listing actions:", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("<leader>tn", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("<leader>to", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("<leader>fn", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("<leader>fp", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("[F]ind [N]ext failed test in listing", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("[F]ind [P]revious failed test in listing", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("<leader>cb", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("<leader>cj", 1, true) ~= nil)
|
||||
assert.is_true(joined:find("breaks test-command onto multiple lines", 1, true) ~= nil)
|
||||
@@ -254,6 +262,92 @@ describe("test-samurai core (no bundled runners)", function()
|
||||
vim.fn.jobstart = orig_jobstart
|
||||
end)
|
||||
|
||||
it("keeps failed-navigation keymaps buffer-local to the output listing", function()
|
||||
local runner = {
|
||||
name = "test-runner-keymaps",
|
||||
}
|
||||
|
||||
function runner.is_test_file(_bufnr)
|
||||
return true
|
||||
end
|
||||
|
||||
function runner.find_nearest(bufnr, _row, _col)
|
||||
return { file = vim.api.nvim_buf_get_name(bufnr), cwd = vim.loop.cwd(), test_name = "TestA" }
|
||||
end
|
||||
|
||||
function runner.build_command(spec)
|
||||
return { cmd = { "echo", "nearest" }, cwd = spec.cwd }
|
||||
end
|
||||
|
||||
function runner.parse_results(_output)
|
||||
return { passes = {}, failures = {}, skips = {} }
|
||||
end
|
||||
|
||||
function runner.output_parser()
|
||||
return {
|
||||
on_line = function(_line, _state)
|
||||
return nil
|
||||
end,
|
||||
on_complete = function(output, _state)
|
||||
return runner.parse_results(output)
|
||||
end,
|
||||
}
|
||||
end
|
||||
|
||||
function runner.parse_test_output(_output)
|
||||
return {}
|
||||
end
|
||||
|
||||
package.loaded["test-samurai-keymap-runner"] = runner
|
||||
test_samurai.setup({ runner_modules = { "test-samurai-keymap-runner" } })
|
||||
|
||||
local normal_buf = vim.api.nvim_create_buf(false, true)
|
||||
vim.api.nvim_buf_set_name(normal_buf, "/tmp/test_samurai_keymaps.go")
|
||||
vim.bo[normal_buf].filetype = "go"
|
||||
vim.api.nvim_set_current_buf(normal_buf)
|
||||
|
||||
local orig_jobstart = vim.fn.jobstart
|
||||
vim.fn.jobstart = function(_cmd, opts)
|
||||
if opts.on_exit then
|
||||
opts.on_exit(nil, 0, nil)
|
||||
end
|
||||
return 1
|
||||
end
|
||||
|
||||
core.run_nearest()
|
||||
|
||||
local listing_buf = vim.api.nvim_get_current_buf()
|
||||
local listing_maps = vim.api.nvim_buf_get_keymap(listing_buf, "n")
|
||||
local has_fn = false
|
||||
local has_fp = false
|
||||
for _, map in ipairs(listing_maps) do
|
||||
if map.lhs and map.lhs:sub(-2) == "fn" then
|
||||
has_fn = true
|
||||
elseif map.lhs and map.lhs:sub(-2) == "fp" then
|
||||
has_fp = true
|
||||
end
|
||||
end
|
||||
assert.is_true(has_fn)
|
||||
assert.is_true(has_fp)
|
||||
|
||||
core.close_output_and_restore()
|
||||
|
||||
local normal_maps = vim.api.nvim_buf_get_keymap(normal_buf, "n")
|
||||
local normal_fn = false
|
||||
local normal_fp = false
|
||||
for _, map in ipairs(normal_maps) do
|
||||
if map.lhs and map.lhs:sub(-2) == "fn" then
|
||||
normal_fn = true
|
||||
elseif map.lhs and map.lhs:sub(-2) == "fp" then
|
||||
normal_fp = true
|
||||
end
|
||||
end
|
||||
assert.is_false(normal_fn)
|
||||
assert.is_false(normal_fp)
|
||||
|
||||
vim.fn.jobstart = orig_jobstart
|
||||
end)
|
||||
|
||||
it("restores cursor location after closing output with <esc><esc>", function()
|
||||
local runner = {
|
||||
name = "test-runner-restore",
|
||||
@@ -915,4 +1009,125 @@ describe("test-samurai core (no bundled runners)", function()
|
||||
|
||||
vim.fn.jobstart = orig_jobstart
|
||||
end)
|
||||
|
||||
it("maps <leader>ff to jump to the first listing entry", function()
|
||||
local runner = {
|
||||
name = "test-runner",
|
||||
}
|
||||
|
||||
function runner.is_test_file(_bufnr)
|
||||
return true
|
||||
end
|
||||
|
||||
function runner.find_nearest(bufnr, _row, _col)
|
||||
return { file = vim.api.nvim_buf_get_name(bufnr), cwd = vim.loop.cwd(), test_name = "TestA" }
|
||||
end
|
||||
|
||||
function runner.build_command(spec)
|
||||
return { cmd = { "echo", "nearest" }, cwd = spec.cwd }
|
||||
end
|
||||
|
||||
function runner.build_file_command(_bufnr)
|
||||
return { cmd = { "echo", "file" } }
|
||||
end
|
||||
|
||||
function runner.build_all_command(_bufnr)
|
||||
return { cmd = { "echo", "all" } }
|
||||
end
|
||||
|
||||
function runner.build_failed_command(last_command, _failures, _scope_kind)
|
||||
return { cmd = { "echo", "failed" }, cwd = last_command and last_command.cwd or nil }
|
||||
end
|
||||
|
||||
function runner.parse_results(output)
|
||||
local passes = {}
|
||||
if type(output) == "string" and output:find("PASS TestA", 1, true) then
|
||||
passes = { "TestA" }
|
||||
end
|
||||
return { passes = passes, failures = {}, skips = {} }
|
||||
end
|
||||
|
||||
function runner.output_parser()
|
||||
return {
|
||||
on_line = function(line, _state)
|
||||
if line == "PASS TestA" then
|
||||
return { passes = { "TestA" }, failures = {}, skips = {} }
|
||||
end
|
||||
return nil
|
||||
end,
|
||||
on_complete = function(output, _state)
|
||||
return runner.parse_results(output)
|
||||
end,
|
||||
}
|
||||
end
|
||||
|
||||
function runner.parse_test_output(_output)
|
||||
return {}
|
||||
end
|
||||
|
||||
function runner.collect_failed_locations(_failures, _command, _scope_kind)
|
||||
return {}
|
||||
end
|
||||
|
||||
package.loaded["test-samurai-test-runner"] = runner
|
||||
test_samurai.setup({ runner_modules = { "test-samurai-test-runner" } })
|
||||
|
||||
local bufnr = vim.api.nvim_create_buf(false, true)
|
||||
vim.api.nvim_buf_set_name(bufnr, "/tmp/test_runner_listing_ff.go")
|
||||
vim.bo[bufnr].filetype = "go"
|
||||
vim.api.nvim_set_current_buf(bufnr)
|
||||
|
||||
local orig_jobstart = vim.fn.jobstart
|
||||
vim.fn.jobstart = function(_cmd, opts)
|
||||
if opts.on_stdout then
|
||||
opts.on_stdout(nil, { "PASS TestA" }, nil)
|
||||
end
|
||||
if opts.on_exit then
|
||||
opts.on_exit(nil, 0, nil)
|
||||
end
|
||||
return 1
|
||||
end
|
||||
|
||||
core.run_nearest()
|
||||
|
||||
vim.fn.jobstart = orig_jobstart
|
||||
|
||||
local listing_buf = nil
|
||||
for _, buf in ipairs(vim.api.nvim_list_bufs()) do
|
||||
if vim.api.nvim_buf_is_valid(buf) and vim.bo[buf].filetype == "test-samurai-output" then
|
||||
listing_buf = buf
|
||||
break
|
||||
end
|
||||
end
|
||||
assert.is_true(listing_buf ~= nil)
|
||||
|
||||
local maps = vim.api.nvim_buf_get_keymap(listing_buf, "n")
|
||||
local found = nil
|
||||
for _, map in ipairs(maps) do
|
||||
if type(map.lhs) == "string" and map.lhs:sub(-2) == "ff" then
|
||||
found = map
|
||||
break
|
||||
end
|
||||
end
|
||||
assert.is_true(found ~= nil)
|
||||
assert.equals("[F]ind [F]irst list entry", found.desc)
|
||||
|
||||
vim.api.nvim_set_current_buf(listing_buf)
|
||||
local total = vim.api.nvim_buf_line_count(listing_buf)
|
||||
vim.api.nvim_win_set_cursor(0, { total, 0 })
|
||||
assert.is_true(type(found.callback) == "function")
|
||||
found.callback()
|
||||
|
||||
local lines = vim.api.nvim_buf_get_lines(listing_buf, 0, -1, false)
|
||||
local first_entry = nil
|
||||
for i, line in ipairs(lines) do
|
||||
if line:match("^%[ %u+ %] %- ") then
|
||||
first_entry = i
|
||||
break
|
||||
end
|
||||
end
|
||||
assert.is_true(first_entry ~= nil)
|
||||
local cursor = vim.api.nvim_win_get_cursor(0)
|
||||
assert.equals(first_entry, cursor[1])
|
||||
end)
|
||||
end)
|
||||
|
||||
Reference in New Issue
Block a user