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
|
local stub = require "luassert.stub"
local mock = require "luassert.mock"
local Result = require "mason-core.result"
local installer = require "mason-core.installer"
local github = require "mason-core.managers.github"
local Optional = require "mason-core.optional"
local client = require "mason-core.managers.github.client"
describe("github release file", function()
it(
"should use provided version",
async_test(function()
stub(client, "fetch_latest_release")
local handle = InstallHandleGenerator "dummy"
local ctx = InstallContextGenerator(handle)
local source = installer.run_installer(ctx, function()
return github.release_file {
repo = "williamboman/mason.nvim",
asset_file = "program.exe",
version = Optional.of "13.37",
}
end)
assert.spy(client.fetch_latest_release).was_not_called()
assert.equals("13.37", source.release)
end)
)
it(
"should use use dynamic asset_file",
async_test(function()
stub(client, "fetch_latest_release")
client.fetch_latest_release.returns(Result.success(mock.new {
tag_name = "im_the_tag",
}))
local handle = InstallHandleGenerator "dummy"
local ctx = InstallContextGenerator(handle)
local source = installer.run_installer(ctx, function()
return github.release_file {
repo = "williamboman/mason.nvim",
asset_file = function(version)
return version .. "_for_reals"
end,
}
end)
assert.spy(client.fetch_latest_release).was_called(1)
assert.spy(client.fetch_latest_release).was_called_with "williamboman/mason.nvim"
assert.equals("im_the_tag", source.release)
assert.equals("im_the_tag_for_reals", source.asset_file)
end)
)
end)
|