diff options
author | bfredl <bjorn.linse@gmail.com> | 2025-03-05 13:30:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-05 13:30:06 +0100 |
commit | 84487036624df8243f6dedc9f36dfc10789c5f47 (patch) | |
tree | 0e7f7b3027a9755e6c1a019981b13a652494472f /test/functional/lua/loop_spec.lua | |
parent | e4c094a84da8f417687d2730a4793dd4b408739d (diff) | |
parent | ebb963a4a08283227233c417fed7d822c86a8807 (diff) | |
download | rneovim-84487036624df8243f6dedc9f36dfc10789c5f47.tar.gz rneovim-84487036624df8243f6dedc9f36dfc10789c5f47.tar.bz2 rneovim-84487036624df8243f6dedc9f36dfc10789c5f47.zip |
Merge pull request #12049 from bfredl/luverr
convert non-string errors using tostring()
Diffstat (limited to 'test/functional/lua/loop_spec.lua')
-rw-r--r-- | test/functional/lua/loop_spec.lua | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/test/functional/lua/loop_spec.lua b/test/functional/lua/loop_spec.lua index 8df2900368..fbf70d7be7 100644 --- a/test/functional/lua/loop_spec.lua +++ b/test/functional/lua/loop_spec.lua @@ -194,4 +194,52 @@ describe('vim.uv', function() feed('<cr>') n.assert_alive() end) + + it("doesn't crash on async callbacks throwing nil error", function() + local screen = Screen.new(50, 4) + + exec_lua(function() + _G.idle = vim.uv.new_idle() + _G.idle:start(function() + _G.idle:stop() + error() + end) + end) + + screen:expect([[ + {3: }| + {9:Error executing callback:} | + {9:[NULL]} | + {6:Press ENTER or type command to continue}^ | + ]]) + feed('<cr>') + + exec_lua(function() + _G.idle:close() + end) + end) + + it("doesn't crash on async callbacks throwing object as an error", function() + local screen = Screen.new(50, 4) + + exec_lua(function() + _G.idle = vim.uv.new_idle() + _G.idle:start(function() + _G.idle:stop() + error(_G.idle) -- userdata with __tostring method + end) + end) + + screen:expect([[ + {3: }| + {9:Error executing callback:} | + {9:uv_idle_t: 0x{MATCH:%w+}} | + {6:Press ENTER or type command to continue}^ | + ]]) + feed('<cr>') + + exec_lua(function() + _G.idle:close() + end) + end) end) |