aboutsummaryrefslogtreecommitdiffstats
path: root/tests/core/spawn_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/spawn_spec.lua')
-rw-r--r--tests/core/spawn_spec.lua37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/core/spawn_spec.lua b/tests/core/spawn_spec.lua
index 3bfafbc3..176135ee 100644
--- a/tests/core/spawn_spec.lua
+++ b/tests/core/spawn_spec.lua
@@ -1,3 +1,5 @@
+local spy = require "luassert.spy"
+local match = require "luassert.match"
local spawn = require "nvim-lsp-installer.core.spawn"
local process = require "nvim-lsp-installer.process"
@@ -76,4 +78,39 @@ describe("async spawn", function()
assert.equals("", result:get_or_nil().stderr)
end)
)
+
+ it(
+ "should call on_spawn",
+ async_test(function()
+ local on_spawn = spy.new(function(_, stdio)
+ local stdin = stdio[1]
+ stdin:write "im so piped rn"
+ stdin:close()
+ end)
+
+ local result = spawn.cat {
+ { "-" },
+ on_spawn = on_spawn,
+ }
+
+ assert.spy(on_spawn).was_called(1)
+ assert.spy(on_spawn).was_called_with(match.is_not.is_nil(), match.is_not.is_nil())
+ assert.is_true(result:is_success())
+ assert.equals("im so piped rn", result:get_or_nil().stdout)
+ end)
+ )
+
+ it(
+ "should not call on_spawn if spawning fails",
+ async_test(function()
+ local on_spawn = spy.new()
+
+ local result = spawn.this_cmd_doesnt_exist {
+ on_spawn = on_spawn,
+ }
+
+ assert.spy(on_spawn).was_called(0)
+ assert.is_true(result:is_failure())
+ end)
+ )
end)