aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorZi How Poh <z@pzpz.dev>2021-09-08 23:00:15 +0800
committerGitHub <noreply@github.com>2021-09-08 17:00:15 +0200
commitc1f573fbc94aecd0f5841f7eb671be1a0a29758c (patch)
treef0873a8e127974cad8b703a06be27087666130d6 /test
parent11289ad733e7b3f72ee583ccbfe982a78e099c6c (diff)
downloadrneovim-c1f573fbc94aecd0f5841f7eb671be1a0a29758c.tar.gz
rneovim-c1f573fbc94aecd0f5841f7eb671be1a0a29758c.tar.bz2
rneovim-c1f573fbc94aecd0f5841f7eb671be1a0a29758c.zip
feat(lsp): support textDocument/prepareRename (#15514)
Diffstat (limited to 'test')
-rw-r--r--test/functional/fixtures/fake-lsp-server.lua83
-rw-r--r--test/functional/plugin/lsp_spec.lua86
2 files changed, 169 insertions, 0 deletions
diff --git a/test/functional/fixtures/fake-lsp-server.lua b/test/functional/fixtures/fake-lsp-server.lua
index b7fddc8f29..9579525502 100644
--- a/test/functional/fixtures/fake-lsp-server.lua
+++ b/test/functional/fixtures/fake-lsp-server.lua
@@ -126,6 +126,89 @@ function tests.check_workspace_configuration()
}
end
+function tests.prepare_rename_nil()
+ skeleton {
+ on_init = function()
+ return { capabilities = {
+ renameProvider = true,
+ } }
+ end;
+ body = function()
+ notify('start')
+ expect_request('textDocument/prepareRename', function()
+ return nil, nil
+ end)
+ notify('shutdown')
+ end;
+ }
+end
+
+function tests.prepare_rename_placeholder()
+ skeleton {
+ on_init = function()
+ return { capabilities = {
+ renameProvider = true,
+ } }
+ end;
+ body = function()
+ notify('start')
+ expect_request('textDocument/prepareRename', function()
+ return nil, {placeholder = 'placeholder'}
+ end)
+ expect_request('textDocument/rename', function(params)
+ assert_eq(params.newName, 'renameto')
+ return nil, nil
+ end)
+ notify('shutdown')
+ end;
+ }
+end
+
+function tests.prepare_rename_range()
+ skeleton {
+ on_init = function()
+ return { capabilities = {
+ renameProvider = true,
+ } }
+ end;
+ body = function()
+ notify('start')
+ expect_request('textDocument/prepareRename', function()
+ return nil, {
+ start = { line = 1, character = 8 },
+ ['end'] = { line = 1, character = 12 },
+ }
+ end)
+ expect_request('textDocument/rename', function(params)
+ assert_eq(params.newName, 'renameto')
+ return nil, nil
+ end)
+ notify('shutdown')
+ end;
+ }
+end
+
+function tests.prepare_rename_error()
+ skeleton {
+ on_init = function()
+ return { capabilities = {
+ renameProvider = true,
+ } }
+ end;
+ body = function()
+ notify('start')
+ expect_request('textDocument/prepareRename', function()
+ return {}, nil
+ end)
+ expect_request('textDocument/rename', function(params)
+ assert_eq(params.newName, 'renameto')
+ return nil, nil
+ end)
+ notify('shutdown')
+ end;
+ }
+end
+
function tests.basic_check_capabilities()
skeleton {
on_init = function(params)
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua
index 1d790cd470..a9ea26343d 100644
--- a/test/functional/plugin/lsp_spec.lua
+++ b/test/functional/plugin/lsp_spec.lua
@@ -2202,4 +2202,90 @@ describe('LSP', function()
eq(expected, qflist)
end)
end)
+
+ describe('vim.lsp.buf.rename', function()
+ for _, test in ipairs({
+ {
+ it = "does not attempt to rename on nil response",
+ name = "prepare_rename_nil",
+ expected_handlers = {
+ {NIL, {}, {method="shutdown", client_id=1}};
+ {NIL, {}, {method="start", client_id=1}};
+ },
+ },
+ {
+ it = "handles prepareRename placeholder response",
+ name = "prepare_rename_placeholder",
+ expected_handlers = {
+ {NIL, {}, {method="shutdown", client_id=1}};
+ {NIL, NIL, {method="textDocument/rename", client_id=1, bufnr=1}};
+ {NIL, {}, {method="start", client_id=1}};
+ },
+ expected_text = "placeholder", -- see fake lsp response
+ },
+ {
+ it = "handles range response",
+ name = "prepare_rename_range",
+ expected_handlers = {
+ {NIL, {}, {method="shutdown", client_id=1}};
+ {NIL, NIL, {method="textDocument/rename", client_id=1, bufnr=1}};
+ {NIL, {}, {method="start", client_id=1}};
+ },
+ expected_text = "line", -- see test case and fake lsp response
+ },
+ {
+ it = "handles error",
+ name = "prepare_rename_error",
+ expected_handlers = {
+ {NIL, {}, {method="shutdown", client_id=1}};
+ {NIL, NIL, {method="textDocument/rename", client_id=1, bufnr=1}};
+ {NIL, {}, {method="start", client_id=1}};
+ },
+ expected_text = "two", -- see test case
+ },
+ }) do
+ it(test.it, function()
+ local client
+ test_rpc_server {
+ test_name = test.name;
+ on_init = function(_client)
+ client = _client
+ eq(true, client.resolved_capabilities().rename)
+ end;
+ on_setup = function()
+ exec_lua([=[
+ local bufnr = vim.api.nvim_get_current_buf()
+ lsp.buf_attach_client(bufnr, TEST_RPC_CLIENT_ID)
+ vim.lsp._stubs = {}
+ vim.fn.input = function(prompt, text)
+ vim.lsp._stubs.input_prompt = prompt
+ vim.lsp._stubs.input_text = text
+ return 'renameto' -- expect this value in fake lsp
+ end
+ vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, {'', 'this is line two'})
+ vim.fn.cursor(2, 13) -- the space between "line" and "two"
+ ]=])
+ end;
+ on_exit = function(code, signal)
+ eq(0, code, "exit code", fake_lsp_logfile)
+ eq(0, signal, "exit signal", fake_lsp_logfile)
+ end;
+ on_handler = function(err, result, ctx)
+ eq(table.remove(test.expected_handlers), {err, result, ctx}, "expected handler")
+ if ctx.method == 'start' then
+ exec_lua("vim.lsp.buf.rename()")
+ end
+ if ctx.method == 'shutdown' then
+ if test.expected_text then
+ eq("New Name: ", exec_lua("return vim.lsp._stubs.input_prompt"))
+ eq(test.expected_text, exec_lua("return vim.lsp._stubs.input_text"))
+ end
+ client.stop()
+ end
+ end;
+ }
+ end)
+ end
+ end)
+
end)