feat: simplify path construction logic

Simplies logic to just use nearest parent as the base instead of
traversing downwards. This reduces some redundancy, however fixes a bug
with repeated components in the constructed path and also improves
performance by skipping a loop altogether.

Also fixes recursive extraction tests failing `pandoc_soft_links.zip`.
This commit is contained in:
Erica Marigold 2025-02-13 16:53:00 +00:00
parent 54d46ff9cc
commit 6182e65756
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw
2 changed files with 11 additions and 7 deletions

View file

@ -163,14 +163,19 @@ function ZipEntry.isSymlink(self: ZipEntry): boolean
end
function ZipEntry.getPath(self: ZipEntry): string
local path = self.name
local current = self.parent
while current and current.name ~= "/" do
path = current.name .. path
current = current.parent
if self.name == "/" then
return "/"
end
-- Get just the entry name without the path
local name = string.match(self.name, "([^/]+)/?$") or self.name
if not self.parent or self.parent.name == "/" then
return self.name
end
-- Combine parent path with entry name
local path = string.gsub(self.parent:getPath() .. name, "//+", "/")
return path
end

View file

@ -15,7 +15,6 @@ local FALLIBLES = {
"invalid_offset2.zip",
"chinese.zip", -- Contains non local specific encoding which can't be parsed without OS APIs
"non_utf8.zip", -- FIXME: Lune breaks for non utf8 data in process stdout
"pandoc_soft_links.zip", -- Soft links are tested separately in edge_cases
}
return function(test: typeof(frktest.test))