summaryrefslogtreecommitdiff
path: root/tests/config_loader_spec.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-21 07:48:10 +0200
committerkylo252 <[email protected]>2021-10-21 07:48:10 +0200
commit30de3736baec9a72134205de91f3388e3ea68bcf (patch)
treec0079f51d68c61316726f104bae963c5f0371571 /tests/config_loader_spec.lua
parentb98264042f558751483e2c993ebed11a5bcbb1de (diff)
parent25747cfff457d5375b6141588d81017ca515ffcb (diff)
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'tests/config_loader_spec.lua')
-rw-r--r--tests/config_loader_spec.lua37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/config_loader_spec.lua b/tests/config_loader_spec.lua
new file mode 100644
index 00000000..8e7ab339
--- /dev/null
+++ b/tests/config_loader_spec.lua
@@ -0,0 +1,37 @@
+local a = require "plenary.async_lib.tests"
+local config = require "lvim.config"
+
+a.describe("config-loader", function()
+ local user_config_path = config:get_user_config_path()
+
+ a.it("should be able to find user-config", function()
+ assert.equal(user_config_path, get_config_dir() .. "/config.lua")
+ end)
+
+ a.it("should be able to load user-config without errors", function()
+ config:load(user_config_path)
+ local errmsg = vim.fn.eval "v:errmsg"
+ local exception = vim.fn.eval "v:exception"
+ assert.equal("", errmsg) -- v:errmsg was not updated.
+ assert.equal("", exception)
+ end)
+
+ a.it("should be able to reload user-config without errors", function()
+ vim.opt.undodir = "/tmp"
+ assert.equal(vim.opt.undodir:get()[1], "/tmp")
+ config:reload()
+ assert.equal(vim.opt.undodir:get()[1], get_cache_dir() .. "/undo")
+ end)
+
+ a.it("should not get interrupted by errors in user-config", function()
+ vim.opt.undodir = "/tmp"
+ assert.equal(vim.opt.undodir:get()[1], "/tmp")
+ os.execute("echo bad_string_test >> " .. user_config_path)
+ local error_handler = function(msg)
+ return msg
+ end
+ local err = xpcall(config:reload(), error_handler)
+ assert.falsy(err)
+ assert.equal(vim.opt.undodir:get()[1], get_cache_dir() .. "/undo")
+ end)
+end)