Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(path): find_upwards() failure case is an infinite loop #506

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions lua/plenary/path.lua
Original file line number Diff line number Diff line change
Expand Up @@ -917,14 +917,20 @@ end

function Path:find_upwards(filename)
local folder = Path:new(self)
while self:absolute() ~= path.root do
local root = path.root(folder:absolute())

while true do
local p = folder:joinpath(filename)
if p:exists() then
return p
end
if folder:absolute() == root then
break
end
folder = folder:parent()
end
return ""

return nil
shreve marked this conversation as resolved.
Show resolved Hide resolved
end

return Path
14 changes: 14 additions & 0 deletions tests/plenary/path_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,20 @@ SOFTWARE.]]
assert.are.same(should, data)
end)
end)

describe(":find_upwards", function()
it("finds files that exist", function()
local p = Path:new(debug.getinfo(1, "S").source:sub(2))
local found = p:find_upwards "README.md"
assert.are.same(found:absolute(), Path:new("README.md"):absolute())
end)

it("returns nil if no file is found", function()
local p = Path:new(debug.getinfo(1, "S").source:sub(2))
local found = p:find_upwards "asdf"
assert.are.same(found, nil)
end)
end)
end)

-- function TestPath:testIsDir()
Expand Down