diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2021-09-21 16:27:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 15:27:12 -0700 |
commit | 17b7968f02bca309bb2e7b00752667baa6b4d765 (patch) | |
tree | f100835b7844cc49a0f09ad80df02578b846b639 /test/functional/plugin/lsp/diagnostic_spec.lua | |
parent | 8164adc1441b2150737bb7e30c59de73176d6447 (diff) | |
download | rneovim-17b7968f02bca309bb2e7b00752667baa6b4d765.tar.gz rneovim-17b7968f02bca309bb2e7b00752667baa6b4d765.tar.bz2 rneovim-17b7968f02bca309bb2e7b00752667baa6b4d765.zip |
fix(diagnostic): preserve fields from LSP diagnostics via user_data (#15735)master
* preserve fields from LSP diagnostics via adding a user_data table to the diagnostic, which can hold arbitrary data in addition to the lsp diagnostic information.
Diffstat (limited to 'test/functional/plugin/lsp/diagnostic_spec.lua')
-rw-r--r-- | test/functional/plugin/lsp/diagnostic_spec.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/functional/plugin/lsp/diagnostic_spec.lua b/test/functional/plugin/lsp/diagnostic_spec.lua index 353de667ea..243ad6bdb8 100644 --- a/test/functional/plugin/lsp/diagnostic_spec.lua +++ b/test/functional/plugin/lsp/diagnostic_spec.lua @@ -428,6 +428,32 @@ describe('vim.lsp.diagnostic', function() end) end) end) + + it('maintains LSP information when translating diagnostics', function() + local result = exec_lua [[ + local diagnostics = { + make_error("Error 1", 1, 1, 1, 5), + } + + diagnostics[1].code = 42 + diagnostics[1].tags = {"foo", "bar"} + diagnostics[1].data = "Hello world" + + vim.lsp.diagnostic.on_publish_diagnostics(nil, { + uri = fake_uri, + diagnostics = diagnostics, + }, {client_id=1}) + + return { + vim.diagnostic.get(diagnostic_bufnr, {lnum=1})[1], + vim.lsp.diagnostic.get_line_diagnostics(diagnostic_bufnr, 1)[1], + } + ]] + eq({code = 42, tags = {"foo", "bar"}, data = "Hello world"}, result[1].user_data.lsp) + eq(42, result[2].code) + eq({"foo", "bar"}, result[2].tags) + eq("Hello world", result[2].data) + end) end) describe("vim.lsp.diagnostic.get_line_diagnostics", function() |