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:
parent
80664d339f
commit
8da64cb5cf
1 changed files with 27 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue