summaryrefslogtreecommitdiff
path: root/mac/.config/LunarVim/tests/specs/lsp_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mac/.config/LunarVim/tests/specs/lsp_spec.lua')
-rw-r--r--mac/.config/LunarVim/tests/specs/lsp_spec.lua94
1 files changed, 94 insertions, 0 deletions
diff --git a/mac/.config/LunarVim/tests/specs/lsp_spec.lua b/mac/.config/LunarVim/tests/specs/lsp_spec.lua
new file mode 100644
index 0000000..3f81405
--- /dev/null
+++ b/mac/.config/LunarVim/tests/specs/lsp_spec.lua
@@ -0,0 +1,94 @@
+local utils = require "lvim.utils"
+local helpers = require "tests.lvim.helpers"
+local spy = require "luassert.spy"
+
+describe("lsp workflow", function()
+ before_each(function()
+ vim.cmd [[
+ let v:errmsg = ""
+ let v:errors = []
+ ]]
+ end)
+
+ after_each(function()
+ local errmsg = vim.fn.eval "v:errmsg"
+ local exception = vim.fn.eval "v:exception"
+ local errors = vim.fn.eval "v:errors"
+ assert.equal("", errmsg)
+ assert.equal("", exception)
+ assert.True(vim.tbl_isempty(errors))
+ end)
+
+ lvim.lsp.templates_dir = join_paths(get_cache_dir(), "artifacts")
+ vim.go.loadplugins = true
+ local plugins = require "lvim.plugins"
+ require("lvim.plugin-loader").load { plugins, lvim.plugins }
+
+ -- trigger loading event manually for mason
+ vim.api.nvim_exec_autocmds("User", { pattern = "FileOpened" })
+
+ it("should be able to delete ftplugin templates", function()
+ if utils.is_directory(lvim.lsp.templates_dir) then
+ vim.fn.delete(lvim.lsp.templates_dir, "rf")
+ vim.wait(100)
+ end
+ assert.False(utils.is_directory(lvim.lsp.templates_dir))
+ end)
+
+ it("should be able to generate ftplugin templates", function()
+ if utils.is_directory(lvim.lsp.templates_dir) then
+ vim.fn.delete(lvim.lsp.templates_dir, "rf")
+ vim.wait(100)
+ end
+
+ require("lvim.lsp").setup()
+ vim.wait(500)
+
+ local template_files = vim.fn.glob(lvim.lsp.templates_dir .. "/*.lua", 1, 1)
+ assert.False(vim.tbl_isempty(template_files))
+ end)
+
+ it("should not include blacklisted servers in the generated templates", function()
+ require("lvim.lsp").setup()
+
+ for _, server_name in ipairs(lvim.lsp.automatic_configuration.skipped_servers) do
+ local setup_cmd = string.format([[require("lvim.lsp.manager").setup(%q)]], server_name)
+ local _, stdout, _ = helpers.search_file(lvim.lsp.templates_dir, setup_cmd)
+ assert.True(vim.tbl_isempty(stdout))
+ end
+ end)
+
+ it("should only include one server per generated template", function()
+ require("lvim.lsp").setup()
+ vim.wait(500)
+
+ local allowed_dupes = { "tailwindcss", "ruff" }
+ local template_files = vim.fn.glob(lvim.lsp.templates_dir .. "/*.lua", 1, 1)
+ for _, file in ipairs(template_files) do
+ local content = {}
+ for entry in io.lines(file) do
+ local server_name = entry:match [[.*setup%("(.*)"%)]]
+ if not vim.tbl_contains(allowed_dupes, server_name) then
+ table.insert(content, server_name)
+ end
+ end
+ local err_msg = ""
+ if #content > 1 then
+ err_msg = string.format(
+ "found more than one server for [%q]: \n{\n %q \n}",
+ file:match "[^/]*.lua$",
+ table.concat(content, ", ")
+ )
+ end
+ assert.equal(err_msg, "")
+ end
+ end)
+
+ it("should not attempt to re-generate ftplugin templates", function()
+ local s = spy.on(require "lvim.lsp.templates", "generate_templates")
+
+ require("lvim.lsp").setup()
+ assert.spy(s):was_not_called()
+ s:revert()
+ end)
+end)