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/api/server_notifications_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/api/server_notifications_spec.lua')
-rw-r--r-- | test/functional/api/server_notifications_spec.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/functional/api/server_notifications_spec.lua b/test/functional/api/server_notifications_spec.lua index 833d54396b..53642858b2 100644 --- a/test/functional/api/server_notifications_spec.lua +++ b/test/functional/api/server_notifications_spec.lua @@ -1,4 +1,5 @@ local helpers = require('test.functional.helpers')(after_each) +local assert_log = helpers.assert_log local eq, clear, eval, command, nvim, next_msg = helpers.eq, helpers.clear, helpers.eval, helpers.command, helpers.nvim, helpers.next_msg @@ -9,6 +10,8 @@ local is_ci = helpers.is_ci local assert_alive = helpers.assert_alive local skip = helpers.skip +local testlog = 'Xtest-server-notify-log' + describe('notify', function() local channel @@ -17,6 +20,10 @@ describe('notify', function() channel = nvim('get_api_info')[1] end) + after_each(function() + os.remove(testlog) + end) + describe('passing a valid channel id', function() it('sends the notification/args to the corresponding channel', function() eval('rpcnotify('..channel..', "test-event", 1, 2, 3)') @@ -72,8 +79,12 @@ describe('notify', function() end) it('unsubscribe non-existing event #8745', function() + clear{env={ + NVIM_LOG_FILE=testlog, + }} nvim('subscribe', 'event1') nvim('unsubscribe', 'doesnotexist') + assert_log("tried to unsubscribe unknown event 'doesnotexist'", testlog, 10) nvim('unsubscribe', 'event1') assert_alive() end) |