1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
local cargo = require "mason-core.installer.managers.cargo"
local match = require "luassert.match"
local spy = require "luassert.spy"
local test_helpers = require "mason-test.helpers"
describe("cargo manager", function()
it("should install", function()
local ctx = test_helpers.create_context()
ctx:execute(function()
cargo.install("my-crate", "1.0.0")
end)
assert.spy(ctx.spawn.cargo).was_called(1)
assert.spy(ctx.spawn.cargo).was_called_with {
"install",
"--root",
".",
{ "--version", "1.0.0" },
vim.NIL, -- features
vim.NIL, -- locked
"my-crate",
}
end)
it("should write output", function()
local ctx = test_helpers.create_context()
spy.on(ctx.stdio_sink, "stdout")
ctx:execute(function()
cargo.install("my-crate", "1.0.0")
end)
assert
.spy(ctx.stdio_sink.stdout)
.was_called_with(match.is_ref(ctx.stdio_sink), "Installing crate my-crate@1.0.0…\n")
end)
it("should install locked", function()
local ctx = test_helpers.create_context()
ctx:execute(function()
cargo.install("my-crate", "1.0.0", {
locked = true,
})
end)
assert.spy(ctx.spawn.cargo).was_called(1)
assert.spy(ctx.spawn.cargo).was_called_with {
"install",
"--root",
".",
{ "--version", "1.0.0" },
vim.NIL, -- features
"--locked", -- locked
"my-crate",
}
end)
it("should install provided features", function()
local ctx = test_helpers.create_context()
ctx:execute(function()
cargo.install("my-crate", "1.0.0", {
features = "lsp,cli",
})
end)
assert.spy(ctx.spawn.cargo).was_called(1)
assert.spy(ctx.spawn.cargo).was_called_with {
"install",
"--root",
".",
{ "--version", "1.0.0" },
{ "--features", "lsp,cli" }, -- features
vim.NIL, -- locked
"my-crate",
}
end)
it("should install git tag source", function()
local ctx = test_helpers.create_context()
ctx:execute(function()
cargo.install("my-crate", "1.0.0", {
git = {
url = "https://github.com/neovim/neovim",
},
})
end)
assert.spy(ctx.spawn.cargo).was_called(1)
assert.spy(ctx.spawn.cargo).was_called_with {
"install",
"--root",
".",
{ "--git", "https://github.com/neovim/neovim", "--tag", "1.0.0" },
vim.NIL, -- features
vim.NIL, -- locked
"my-crate",
}
end)
it("should install git rev source", function()
local ctx = test_helpers.create_context()
ctx:execute(function()
cargo.install("my-crate", "16dfc89abd413c391e5b63ae5d132c22843ce9a7", {
git = {
url = "https://github.com/neovim/neovim",
rev = true,
},
})
end)
assert.spy(ctx.spawn.cargo).was_called(1)
assert.spy(ctx.spawn.cargo).was_called_with {
"install",
"--root",
".",
{ "--git", "https://github.com/neovim/neovim", "--rev", "16dfc89abd413c391e5b63ae5d132c22843ce9a7" },
vim.NIL, -- features
vim.NIL, -- locked
"my-crate",
}
end)
end)
|