diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-01-16 18:38:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 18:38:20 -0500 |
commit | 7ebb1cf28f41d073062a4d454b5613d31e5d7518 (patch) | |
tree | 417e251a93a9715324d00cd30a5d75db834a1130 /test/functional/options/defaults_spec.lua | |
parent | da3460562e84dcf608248cc9a5b0eb2341531a0d (diff) | |
parent | 665a7dafaf892b31285f35a43a90fc6e968fd7da (diff) | |
download | rneovim-7ebb1cf28f41d073062a4d454b5613d31e5d7518.tar.gz rneovim-7ebb1cf28f41d073062a4d454b5613d31e5d7518.tar.bz2 rneovim-7ebb1cf28f41d073062a4d454b5613d31e5d7518.zip |
Merge #21844 test: avoid noise in test logs
Diffstat (limited to 'test/functional/options/defaults_spec.lua')
-rw-r--r-- | test/functional/options/defaults_spec.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/functional/options/defaults_spec.lua b/test/functional/options/defaults_spec.lua index c0d820f40e..6a28885bf0 100644 --- a/test/functional/options/defaults_spec.lua +++ b/test/functional/options/defaults_spec.lua @@ -3,6 +3,7 @@ local helpers = require('test.functional.helpers')(after_each) local Screen = require('test.functional.ui.screen') local assert_alive = helpers.assert_alive +local assert_log = helpers.assert_log local meths = helpers.meths local command = helpers.command local clear = helpers.clear @@ -20,6 +21,8 @@ local tbl_contains = helpers.tbl_contains local expect_exit = helpers.expect_exit local is_os = helpers.is_os +local testlog = 'Xtest-defaults-log' + describe('startup defaults', function() describe(':filetype', function() local function expect_filetype(expected) @@ -275,6 +278,10 @@ describe('XDG defaults', function() -- Need separate describe() blocks to not run clear() twice. -- Do not put before_each() here for the same reasons. + after_each(function() + os.remove(testlog) + end) + it("&runtimepath data-dir matches stdpath('data') #9910", function() clear() local rtp = eval('split(&runtimepath, ",")') @@ -337,6 +344,7 @@ describe('XDG defaults', function() clear({ args_rm={'runtimepath'}, env={ + NVIM_LOG_FILE=testlog, XDG_CONFIG_HOME=(root_path .. ('/x'):rep(4096)), XDG_CONFIG_DIRS=(root_path .. ('/a'):rep(2048) .. env_sep.. root_path .. ('/b'):rep(2048) @@ -351,6 +359,8 @@ describe('XDG defaults', function() end) it('are correctly set', function() + assert_log('Failed to start server: no such file or directory: /X/X/X', testlog, 10) + local vimruntime, libdir = vimruntime_and_libdir() eq(((root_path .. ('/x'):rep(4096) .. '/nvim' @@ -412,6 +422,7 @@ describe('XDG defaults', function() clear({ args_rm={'runtimepath'}, env={ + NVIM_LOG_FILE=testlog, XDG_CONFIG_HOME='$XDG_DATA_HOME', XDG_CONFIG_DIRS='$XDG_DATA_DIRS', XDG_DATA_HOME='$XDG_CONFIG_HOME', @@ -422,6 +433,8 @@ describe('XDG defaults', function() end) it('are not expanded', function() + assert_log('Failed to start server: no such file or directory: %$XDG_RUNTIME_DIR%/', testlog, 10) + local vimruntime, libdir = vimruntime_and_libdir() eq((('$XDG_DATA_HOME/nvim' .. ',$XDG_DATA_DIRS/nvim' |