From 464d046b5a26cc6edfd8937041bc37bc0ef82328 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Tue, 17 Dec 2024 17:24:16 +0000 Subject: [PATCH] append-path spec behaviour for repeated / --- pkgs/anoia/init.fnl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/anoia/init.fnl b/pkgs/anoia/init.fnl index 8fc6585..05ddd71 100644 --- a/pkgs/anoia/init.fnl +++ b/pkgs/anoia/init.fnl @@ -84,6 +84,8 @@ (false err) (expect (string.match err "path traversal"))))] (expect= (append-path "/tmp" "hello") "/tmp/hello") (expect= (append-path "/tmp/" "hello") "/tmp/hello") + (expect= (append-path "/tmp/" "///hello") "/tmp/hello") + (expect= (append-path "/tmp/" "///hello/../fish") "/tmp/fish") (traps "/tmp/" "../hello") (expect= (append-path "/tmp/" "hello/../goodbye") "/tmp/goodbye") (traps "/tmp/" "hello/../../goodbye"))