diff --git a/pkg/engine/jmespath/functions_test.go b/pkg/engine/jmespath/functions_test.go index f984c22288..11fc7b9b3d 100644 --- a/pkg/engine/jmespath/functions_test.go +++ b/pkg/engine/jmespath/functions_test.go @@ -3,6 +3,7 @@ package jmespath import ( "encoding/json" "fmt" + "runtime" "testing" "gotest.tools/assert" @@ -931,6 +932,32 @@ func Test_PathCanonicalize(t *testing.T) { }, } + testCasesForWindows := []struct { + jmesPath string + expectedResult string + }{ + { + jmesPath: "path_canonicalize('C:\\Windows\\\\..')", + expectedResult: "C:\\", + }, + { + jmesPath: "path_canonicalize('C:\\Windows\\\\...')", + expectedResult: "C:\\Windows\\...", + }, + { + jmesPath: "path_canonicalize('C:\\Users\\USERNAME\\\\\\Downloads')", + expectedResult: "C:\\Users\\USERNAME\\Downloads", + }, + { + jmesPath: "path_canonicalize('C:\\Users\\\\USERNAME\\..\\Downloads')", + expectedResult: "C:\\Users\\Downloads", + }, + } + + if runtime.GOOS == "windows" { + testCases = testCasesForWindows + } + for _, tc := range testCases { t.Run(tc.jmesPath, func(t *testing.T) { jp, err := New(tc.jmesPath)