aboutsummaryrefslogtreecommitdiff
path: root/test/functional/plugin/lsp_spec.lua
diff options
context:
space:
mode:
authorRishikesh Vaishnav <rishhvaishnav@gmail.com>2021-10-08 11:19:33 -0700
committerGitHub <noreply@github.com>2021-10-08 11:19:33 -0700
commit3f097321955e32b0724e0f0d059ecef3d764aac8 (patch)
tree94cd9ed952679735ecde9d4021234ca6a55e6a65 /test/functional/plugin/lsp_spec.lua
parent5cbd0fba00ecc07099b6af919fed5f403a0ed1cb (diff)
downloadrneovim-3f097321955e32b0724e0f0d059ecef3d764aac8.tar.gz
rneovim-3f097321955e32b0724e0f0d059ecef3d764aac8.tar.bz2
rneovim-3f097321955e32b0724e0f0d059ecef3d764aac8.zip
fix(lsp): expose ContentModified error code to callbacks (#15262)
Diffstat (limited to 'test/functional/plugin/lsp_spec.lua')
-rw-r--r--test/functional/plugin/lsp_spec.lua48
1 files changed, 48 insertions, 0 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua
index 8f9b194690..f5c02afeaa 100644
--- a/test/functional/plugin/lsp_spec.lua
+++ b/test/functional/plugin/lsp_spec.lua
@@ -480,6 +480,54 @@ describe('LSP', function()
}
end)
+ it('should not forward RequestCancelled to callback', function()
+ local expected_handlers = {
+ {NIL, "finish", {}, 1};
+ }
+ local client
+ test_rpc_server {
+ test_name = "check_forward_request_cancelled";
+ on_init = function(_client)
+ _client.request("error_code_test")
+ client = _client
+ end;
+ on_exit = function(code, signal)
+ eq(0, code, "exit code", fake_lsp_logfile)
+ eq(0, signal, "exit signal", fake_lsp_logfile)
+ eq(0, #expected_handlers, "did not call expected handler")
+ end;
+ on_handler = function(err, method, ...)
+ eq(table.remove(expected_handlers), {err, method, ...}, "expected handler")
+ if method == 'finish' then client.stop() end
+ end;
+ }
+ end)
+
+ it('should forward ContentModified to callback', function()
+ local expected_handlers = {
+ {NIL, "finish", {}, 1};
+ {{code = -32801}, "error_code_test", NIL, 1, NIL};
+ }
+ local client
+ test_rpc_server {
+ test_name = "check_forward_content_modified";
+ on_init = function(_client)
+ _client.request("error_code_test")
+ client = _client
+ end;
+ on_exit = function(code, signal)
+ eq(0, code, "exit code", fake_lsp_logfile)
+ eq(0, signal, "exit signal", fake_lsp_logfile)
+ eq(0, #expected_handlers, "did not call expected handler")
+ end;
+ on_handler = function(err, method, ...)
+ eq(table.remove(expected_handlers), {err, method, ...}, "expected handler")
+ if method == 'error_code_test' then client.notify("finish") end
+ if method == 'finish' then client.stop() end
+ end;
+ }
+ end)
+
it('should not send didOpen if the buffer closes before init', function()
local expected_handlers = {
{NIL, {}, {method="shutdown", client_id=1}};