1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

fix: add Windows testcases for path_canonicalize (#2803)

Signed-off-by: weiwei.danny <weiwei.danny@bytedance.com>

Co-authored-by: weiwei.danny <weiwei.danny@bytedance.com>
Co-authored-by: Bricktop <marcel.mueller1@rwth-aachen.de>
This commit is contained in:
Danny__Wei 2021-12-08 23:14:49 +08:00 committed by GitHub
parent 80664d339f
commit 8da64cb5cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)