mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Add unit test
Signed-off-by: Joshua Snider <jsnider@mtu.edu>
This commit is contained in:
parent
23149738df
commit
b0fd2403e8
1 changed files with 23 additions and 0 deletions
|
@ -26,3 +26,26 @@ func Test_Paths(t *testing.T) {
|
|||
f("/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams/ ", "/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams")
|
||||
f(" /apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams", "/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams")
|
||||
}
|
||||
|
||||
func Test_GroupVersions(t *testing.T) {
|
||||
f := func(path, expected string) {
|
||||
p, err := NewAPIPath(path)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
|
||||
if p.Root == "api" {
|
||||
if p.Group != expected {
|
||||
t.Errorf("expected %s got %s", expected, p.Group)
|
||||
}
|
||||
} else {
|
||||
if p.Version != expected {
|
||||
t.Errorf("expected %s got %s", expected, p.Version)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
f("/api/v1/namespace/{{ request.namespace }}", "v1")
|
||||
f("/apis/extensions/v1beta1/namespaces/example/ingresses", "extensions/v1beta1")
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue