lazy.nvim/lua/lazy/minit.lua

215 lines
5.0 KiB
Lua
Raw Normal View History

2024-06-29 13:15:22 +08:00
---@diagnostic disable: inject-field
local islist = vim.islist or vim.tbl_islist
local M = {}
2024-06-29 14:03:37 +08:00
---@param opts LazyConfig
2024-06-29 13:15:22 +08:00
---@return LazySpec[]
local function get_spec(opts)
local ret = opts.spec or {}
return ret and type(ret) == "table" and islist(ret) and ret or { ret }
end
2024-06-29 14:03:37 +08:00
---@param defaults LazyConfig
---@param opts LazyConfig
2024-06-29 13:15:22 +08:00
function M.extend(defaults, opts)
local spec = {}
vim.list_extend(spec, get_spec(defaults))
vim.list_extend(spec, get_spec(opts))
return vim.tbl_deep_extend("force", defaults, opts, { spec = spec })
end
2024-07-04 23:53:45 +08:00
---@param opts LazyConfig
2024-06-29 13:15:22 +08:00
function M.setup(opts)
2024-06-29 13:46:41 +08:00
opts = M.extend({
2024-07-05 00:00:59 +08:00
local_spec = false,
2024-06-29 13:46:41 +08:00
change_detection = { enabled = false },
2024-07-13 15:44:59 +08:00
dev = {
patterns = vim.env.LAZY_DEV and vim.split(vim.env.LAZY_DEV, ",") or nil,
},
2024-06-29 13:46:41 +08:00
}, opts)
2024-06-29 13:15:22 +08:00
2024-07-04 23:53:45 +08:00
local args = {}
local is_busted = false
2024-07-12 04:32:11 +08:00
local is_minitest = false
2024-07-04 23:53:45 +08:00
for _, a in ipairs(_G.arg) do
if a == "--busted" then
is_busted = true
2024-07-12 04:32:11 +08:00
elseif a == "--minitest" then
is_minitest = true
2024-07-04 23:53:45 +08:00
else
table.insert(args, a)
end
end
_G.arg = args
if is_busted then
opts = M.busted.setup(opts)
2024-07-12 04:32:11 +08:00
elseif is_minitest then
opts = M.minitest.setup(opts)
2024-07-04 23:53:45 +08:00
end
2024-06-29 13:15:22 +08:00
-- set stdpaths to use .tests
2024-06-29 14:03:37 +08:00
if vim.env.LAZY_STDPATH then
local root = vim.fn.fnamemodify(vim.env.LAZY_STDPATH, ":p")
for _, name in ipairs({ "config", "data", "state", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
2024-06-29 13:15:22 +08:00
end
vim.o.loadplugins = true
require("lazy").setup(opts)
if vim.g.colors_name == nil then
vim.cmd("colorscheme habamax")
end
2024-06-29 13:46:41 +08:00
require("lazy").update():wait()
if vim.bo.filetype == "lazy" then
local errors = false
for _, plugin in pairs(require("lazy.core.config").spec.plugins) do
errors = errors or require("lazy.core.plugin").has_errors(plugin)
end
if not errors then
vim.cmd.close()
end
end
2024-07-04 23:53:45 +08:00
if is_busted then
M.busted.run()
2024-07-12 04:32:11 +08:00
elseif is_minitest then
M.minitest.run()
2024-07-04 23:53:45 +08:00
end
2024-06-29 13:46:41 +08:00
end
function M.repro(opts)
opts = M.extend({
spec = {
{
"folke/tokyonight.nvim",
priority = 1000,
lazy = false,
config = function()
require("tokyonight").setup({ style = "moon" })
require("tokyonight").load()
end,
},
},
install = { colorscheme = { "tokyonight" } },
}, opts)
M.setup(opts)
2024-06-29 13:15:22 +08:00
end
2024-07-12 04:32:11 +08:00
M.minitest = {}
function M.minitest.run()
local Config = require("lazy.core.config")
-- disable termnial output for the tests
Config.options.headless = {}
if not require("lazy.core.config").headless() then
return vim.notify("busted can only run in headless mode. Please run with `nvim -l`", vim.log.levels.WARN)
end
package.path = package.path .. ";" .. vim.uv.cwd() .. "/tests/?.lua"
local Test = require("mini.test")
local expect = Test.expect
local _assert = assert
local Assert = {
__call = function(_, ...)
return _assert(...)
end,
same = expect.equality,
equal = expect.equality,
are = {
equal = expect.equality,
},
is_not = {
same = expect.no_equality,
},
2024-07-13 15:44:59 +08:00
is_not_nil = function(a)
return expect.no_equality(nil, a)
end,
is_true = function(a)
return expect.equality(true, a)
end,
is_false = function(a)
return expect.equality(false, a)
end,
2024-07-12 04:32:11 +08:00
}
Assert.__index = Assert
assert = setmetatable({}, Assert)
2024-07-13 15:44:59 +08:00
assert = require("luassert")
2024-07-12 04:32:11 +08:00
require("mini.test").run()
end
---@param opts LazyConfig
function M.minitest.setup(opts)
return M.extend({
spec = {
2024-07-13 15:44:59 +08:00
"lunarmodules/luassert",
2024-07-12 04:32:11 +08:00
{
"echasnovski/mini.test",
opts = {
collect = {
find_files = function()
return vim.fn.globpath("tests", "**/*_spec.lua", true, true)
end,
},
-- script_path = "tests/minit.lua",
},
},
{ dir = vim.uv.cwd() },
},
rocks = { hererocks = true },
}, opts)
end
2024-07-04 23:53:45 +08:00
M.busted = {}
2024-06-29 13:15:22 +08:00
2024-07-04 23:53:45 +08:00
function M.busted.run()
2024-06-29 13:15:22 +08:00
local Config = require("lazy.core.config")
-- disable termnial output for the tests
Config.options.headless = {}
if not require("lazy.core.config").headless() then
return vim.notify("busted can only run in headless mode. Please run with `nvim -l`", vim.log.levels.WARN)
end
package.path = package.path .. ";" .. vim.uv.cwd() .. "/tests/?.lua"
2024-06-29 13:15:22 +08:00
-- run busted
return pcall(require("busted.runner"), {
standalone = false,
}) or os.exit(1)
end
2024-07-04 23:53:45 +08:00
---@param opts LazyConfig
function M.busted.setup(opts)
local args = table.concat(_G.arg, " ")
local json = args:find("--output[ =]json")
return M.extend({
spec = {
"lunarmodules/busted",
{ dir = vim.uv.cwd() },
},
headless = {
process = not json,
log = not json,
task = not json,
},
rocks = { hererocks = true },
}, opts)
end
---@param opts LazyConfig
function M.busted.init(opts)
opts = M.busted.setup(opts)
M.setup(opts)
M.busted.run()
end
setmetatable(M.busted, {
__call = function(_, opts)
M.busted.init(opts)
end,
})
2024-06-29 13:15:22 +08:00
return M