Skip to content

Commit b2be895

Browse files
committed
fix event ref determination for apigroups
1 parent c2b4fc9 commit b2be895

File tree

3 files changed

+90
-2
lines changed

3 files changed

+90
-2
lines changed

staging/src/k8s.io/client-go/tools/reference/BUILD

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package(default_visibility = ["//visibility:public"])
33
load(
44
"@io_bazel_rules_go//go:def.bzl",
55
"go_library",
6+
"go_test",
67
)
78

89
go_library(
@@ -29,3 +30,14 @@ filegroup(
2930
srcs = [":package-srcs"],
3031
tags = ["automanaged"],
3132
)
33+
34+
go_test(
35+
name = "go_default_test",
36+
srcs = ["ref_test.go"],
37+
embed = [":go_default_library"],
38+
deps = [
39+
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
40+
"//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library",
41+
"//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library",
42+
],
43+
)

staging/src/k8s.io/client-go/tools/reference/ref.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,14 @@ func GetReference(scheme *runtime.Scheme, obj runtime.Object) (*v1.ObjectReferen
8686
}
8787
// example paths: /<prefix>/<version>/*
8888
parts := strings.Split(selfLinkUrl.Path, "/")
89-
if len(parts) < 3 {
89+
if len(parts) < 4 {
9090
return nil, fmt.Errorf("unexpected self link format: '%v'; got version '%v'", selfLink, version)
9191
}
92-
version = parts[2]
92+
if parts[1] == "api" {
93+
version = parts[2]
94+
} else {
95+
version = parts[2] + "/" + parts[3]
96+
}
9397
}
9498

9599
// only has list metadata
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
/*
2+
Copyright 2018 The Kubernetes Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package reference
18+
19+
import (
20+
"testing"
21+
22+
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
23+
"k8s.io/apimachinery/pkg/runtime"
24+
"k8s.io/apimachinery/pkg/runtime/schema"
25+
)
26+
27+
type TestRuntimeObj struct {
28+
metav1.TypeMeta
29+
metav1.ObjectMeta
30+
}
31+
32+
func (o *TestRuntimeObj) DeepCopyObject() runtime.Object {
33+
panic("die")
34+
}
35+
36+
func TestGetReferenceRefVersion(t *testing.T) {
37+
tests := []struct {
38+
name string
39+
input *TestRuntimeObj
40+
expectedRefVersion string
41+
}{
42+
{
43+
name: "api from selflink",
44+
input: &TestRuntimeObj{
45+
ObjectMeta: metav1.ObjectMeta{SelfLink: "/api/v1/namespaces"},
46+
},
47+
expectedRefVersion: "v1",
48+
},
49+
{
50+
name: "foo.group/v3 from selflink",
51+
input: &TestRuntimeObj{
52+
ObjectMeta: metav1.ObjectMeta{SelfLink: "/apis/foo.group/v3/namespaces"},
53+
},
54+
expectedRefVersion: "foo.group/v3",
55+
},
56+
}
57+
58+
scheme := runtime.NewScheme()
59+
scheme.AddKnownTypes(schema.GroupVersion{Group: "this", Version: "is ignored"}, &TestRuntimeObj{})
60+
61+
for _, test := range tests {
62+
t.Run(test.name, func(t *testing.T) {
63+
ref, err := GetReference(scheme, test.input)
64+
if err != nil {
65+
t.Fatal(err)
66+
}
67+
if test.expectedRefVersion != ref.APIVersion {
68+
t.Errorf("expected %q, got %q", test.expectedRefVersion, ref.APIVersion)
69+
}
70+
})
71+
}
72+
}

0 commit comments

Comments
 (0)