aboutsummaryrefslogtreecommitdiffstats
path: root/tests/mason-core/managers/powershell_spec.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-12-21 11:51:36 +0100
committerGitHub <noreply@github.com>2022-12-21 10:51:36 +0000
commit8240d7da6b2800aaacb0bec71a268cba62130814 (patch)
tree7cf7d22524458f12ee31819ce6d1079a3209fe91 /tests/mason-core/managers/powershell_spec.lua
parentfix(spawn): always expand cmd if PATH is not modified (#773) (diff)
downloadmason-8240d7da6b2800aaacb0bec71a268cba62130814.tar
mason-8240d7da6b2800aaacb0bec71a268cba62130814.tar.gz
mason-8240d7da6b2800aaacb0bec71a268cba62130814.tar.bz2
mason-8240d7da6b2800aaacb0bec71a268cba62130814.tar.lz
mason-8240d7da6b2800aaacb0bec71a268cba62130814.tar.xz
mason-8240d7da6b2800aaacb0bec71a268cba62130814.tar.zst
mason-8240d7da6b2800aaacb0bec71a268cba62130814.zip
fix(powershell): use pwsh if available (#782)
Diffstat (limited to 'tests/mason-core/managers/powershell_spec.lua')
-rw-r--r--tests/mason-core/managers/powershell_spec.lua97
1 files changed, 97 insertions, 0 deletions
diff --git a/tests/mason-core/managers/powershell_spec.lua b/tests/mason-core/managers/powershell_spec.lua
new file mode 100644
index 00000000..3cc78e5e
--- /dev/null
+++ b/tests/mason-core/managers/powershell_spec.lua
@@ -0,0 +1,97 @@
+local stub = require "luassert.stub"
+local spy = require "luassert.spy"
+local match = require "luassert.match"
+local mock = require "luassert.mock"
+local spawn = require "mason-core.spawn"
+
+describe("powershell manager", function()
+ local function powershell()
+ package.loaded["mason-core.managers.powershell"] = nil
+ return require "mason-core.managers.powershell"
+ end
+
+ it("should use pwsh if available", function()
+ stub(spawn, "pwsh", function() end)
+ stub(spawn, "powershell", function() end)
+ stub(vim.fn, "executable")
+ vim.fn.executable.on_call_with("pwsh").returns(1)
+
+ powershell().command "echo 'Is this bash?'"
+
+ assert.spy(spawn.pwsh).was_called(1)
+ assert.spy(spawn.powershell).was_called(0)
+ end)
+
+ it(
+ "should use powershell if pwsh is not availble",
+ async_test(function()
+ stub(spawn, "pwsh", function() end)
+ stub(spawn, "powershell", function() end)
+ stub(vim.fn, "executable")
+ vim.fn.executable.on_call_with("pwsh").returns(0)
+
+ powershell().command "echo 'Is this bash?'"
+
+ assert.spy(spawn.pwsh).was_called(0)
+ assert.spy(spawn.powershell).was_called(1)
+ end)
+ )
+
+ it("should use the provided spawner for commands", function()
+ spy.on(spawn, "pwsh")
+ local custom_spawn = mock.new { pwsh = mockx.just_runs }
+ stub(vim.fn, "executable")
+ vim.fn.executable.on_call_with("pwsh").returns(1)
+ powershell().command("echo 'Is this bash?'", {}, custom_spawn)
+
+ assert.spy(spawn.pwsh).was_called(0)
+ assert.spy(custom_spawn.pwsh).was_called(1)
+ end)
+
+ it("should use the provided spawner scripts", function()
+ spy.on(spawn, "pwsh")
+ local custom_spawn = mock.new { pwsh = mockx.just_runs }
+ stub(vim.fn, "executable")
+ vim.fn.executable.on_call_with("pwsh").returns(1)
+ powershell().script("echo 'Is this bash?'", {}, custom_spawn)
+
+ assert.spy(spawn.pwsh).was_called(0)
+ assert.spy(custom_spawn.pwsh).was_called(1)
+ end)
+
+ it("should provide default powershell options via script stdin", function()
+ local stdin = mock.new { write = mockx.just_runs, close = mockx.just_runs }
+ stub(spawn, "pwsh", function(args)
+ args.on_spawn(nil, { stdin })
+ end)
+ stub(vim.fn, "executable")
+ vim.fn.executable.on_call_with("pwsh").returns(1)
+
+ powershell().script "echo 'Is this bash?'"
+
+ assert.spy(spawn.pwsh).was_called(1)
+ assert.spy(stdin.write).was_called(3)
+ assert.spy(stdin.write).was_called_with(match.is_ref(stdin), " $ProgressPreference = 'SilentlyContinue'; ")
+ assert
+ .spy(stdin.write)
+ .was_called_with(match.is_ref(stdin), " [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; ")
+ assert.spy(stdin.write).was_called_with(match.is_ref(stdin), "echo 'Is this bash?'")
+ assert.spy(stdin.close).was_called(1)
+ end)
+
+ it("should provide default powershell options via command interface", function()
+ stub(spawn, "pwsh", function() end)
+ stub(vim.fn, "executable")
+ vim.fn.executable.on_call_with("pwsh").returns(1)
+
+ powershell().command "echo 'Is this bash?'"
+
+ assert.spy(spawn.pwsh).was_called(1)
+ vim.pretty_print(spawn.pwsh)
+ assert.spy(spawn.pwsh).was_called_with(match.tbl_containing {
+ "-NoProfile",
+ "-Command",
+ " $ProgressPreference = 'SilentlyContinue'; [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; echo 'Is this bash?'",
+ })
+ end)
+end)