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)