From 8da64cb5cf1ce625e60fa92004db3e10fe85fb4b Mon Sep 17 00:00:00 2001 From: Danny__Wei <11975786+Danny-Wei@users.noreply.github.com> Date: Wed, 8 Dec 2021 23:14:49 +0800 Subject: [PATCH] fix: add Windows testcases for path_canonicalize (#2803) Signed-off-by: weiwei.danny Co-authored-by: weiwei.danny Co-authored-by: Bricktop --- pkg/engine/jmespath/functions_test.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) 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)