Skip to content

Commit

Permalink
fix(util): made Util.lsmod more robust. See #298
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jan 3, 2023
1 parent f36c7cb commit 953c279
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 15 deletions.
8 changes: 4 additions & 4 deletions lua/lazy/core/cache.lua
Original file line number Diff line number Diff line change
Expand Up @@ -257,14 +257,14 @@ function M.get_topmods(path)
end

---@param modname string
---@return string?, string?
function M.find_dir(modname)
---@return string?
function M.find_root(modname)
if M.cache[modname] then
-- check if modname is in cache
local modpath = M.cache[modname].modpath
if M.check_path(modname, modpath) then
local root = modpath:gsub("/init%.lua$", ""):gsub("%.lua$", "")
return root, modpath
return root
end
else
-- in case modname is just a directory and not a real mod,
Expand All @@ -286,7 +286,7 @@ function M.find_dir(modname)
local modpath = M.find(modname, { patterns = { "" } })
if modpath then
local root = modpath:gsub("/init%.lua$", ""):gsub("%.lua$", "")
return root, (modpath ~= root and modpath or nil)
return root
end
end

Expand Down
6 changes: 3 additions & 3 deletions lua/lazy/core/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,13 @@ end
---@param fn fun(modname:string, modpath:string)
function M.lsmod(modname, fn)
local Cache = require("lazy.core.cache")
local root, modpath = Cache.find_dir(modname)
local root = Cache.find_root(modname)
if not root then
return
end

if modpath and not modpath:find("/init%.lua$") and vim.loop.fs_stat(modpath) then
fn(modname, modpath)
if vim.loop.fs_stat(root .. ".lua") then
fn(modname, root .. ".lua")
end

M.ls(root, function(path, name, type)
Expand Down
53 changes: 45 additions & 8 deletions tests/core/util_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,68 @@ describe("util", function()
it("lsmod lists all mods in dir", function()
local tests = {
{
root = "lua/foo",
mod = "foo",
files = { "lua/foo/one.lua", "lua/foo/two.lua", "lua/foo/init.lua" },
mods = { "foo", "foo.one", "foo.two" },
mods = { "foo.one", "foo.two", "foo" },
},
{
root = "lua/foo",
mod = "foo",
files = { "lua/foo/one.lua", "lua/foo/two.lua", "lua/foo.lua" },
mods = { "foo", "foo.one", "foo.two" },
mods = { "foo.one", "foo.two", "foo" },
},
{
root = "lua/foo",
mod = "foo",
files = { "lua/foo/one.lua", "lua/foo/two.lua" },
mods = { "foo.one", "foo.two" },
},
{
root = "lua/load-plugins",
mod = "load-plugins",
files = { "lua/load-plugins.lua" },
mods = { "load-plugins" },
},
}

vim.opt.rtp:append(Helpers.path(""))
for _, test in ipairs(tests) do
Cache.cache = {}
table.sort(test.mods)
for t, test in ipairs(tests) do
local expected = vim.deepcopy(test.mods)
table.sort(expected)
Helpers.fs_rm("")
Helpers.fs_create(test.files)
local files = Helpers.fs_create(test.files)

-- test with empty cache
Cache.cache = {}
Cache.indexed = {}
Cache.indexed_rtp = false
local root = Cache.find_root(test.mod)
assert(root, "no root found for " .. test.mod .. " (test " .. t .. ")")
assert.same(Helpers.path(test.root), root)
local mods = {}
Util.lsmod("foo", function(modname, modpath)
Util.lsmod(test.mod, function(modname, modpath)
mods[#mods + 1] = modname
end)
table.sort(mods)
assert.same(expected, mods)

-- fill the cache
Cache.cache = {}
for i, file in ipairs(files) do
Cache.cache[test.mods[i]] = { modpath = file }
end
Cache.indexed = {}
Cache.indexed_rtp = false
root = Cache.find_root(test.mod)
assert(root, "no root found for " .. test.mod .. " (test " .. t .. ")")
assert.same(Helpers.path(test.root), root)
mods = {}
Util.lsmod(test.mod, function(modname, modpath)
mods[#mods + 1] = modname
end)
table.sort(mods)
assert.same(test.mods, mods)
assert.same(expected, mods)
end
end)
end)

0 comments on commit 953c279

Please sign in to comment.