mirror of
https://github.com/kubernetes/client-go.git
synced 2026-01-24 14:04:38 +00:00
reflect latest struct changes use correct discovery openapi test data layout make the OpenAPIv3 interface less blue field grouping add copyrights implement cached discovery client add cached discovery tests address review feedback Kubernetes-commit: 075866b3e3ea029c243d82d8d6eb99e96d9c49d3
455 lines
12 KiB
Go
455 lines
12 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package memory
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
"reflect"
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
errorsutil "k8s.io/apimachinery/pkg/api/errors"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/client-go/discovery"
|
|
"k8s.io/client-go/discovery/fake"
|
|
"k8s.io/client-go/rest"
|
|
testutil "k8s.io/client-go/util/testing"
|
|
)
|
|
|
|
type resourceMapEntry struct {
|
|
list *metav1.APIResourceList
|
|
err error
|
|
}
|
|
|
|
type fakeDiscovery struct {
|
|
*fake.FakeDiscovery
|
|
|
|
lock sync.Mutex
|
|
groupList *metav1.APIGroupList
|
|
groupListErr error
|
|
resourceMap map[string]*resourceMapEntry
|
|
}
|
|
|
|
func (c *fakeDiscovery) ServerResourcesForGroupVersion(groupVersion string) (*metav1.APIResourceList, error) {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
if rl, ok := c.resourceMap[groupVersion]; ok {
|
|
return rl.list, rl.err
|
|
}
|
|
return nil, errors.New("doesn't exist")
|
|
}
|
|
|
|
func (c *fakeDiscovery) ServerGroups() (*metav1.APIGroupList, error) {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
if c.groupList == nil {
|
|
return nil, errors.New("doesn't exist")
|
|
}
|
|
return c.groupList, c.groupListErr
|
|
}
|
|
|
|
func TestClient(t *testing.T) {
|
|
fake := &fakeDiscovery{
|
|
groupList: &metav1.APIGroupList{
|
|
Groups: []metav1.APIGroup{{
|
|
Name: "astronomy",
|
|
Versions: []metav1.GroupVersionForDiscovery{{
|
|
GroupVersion: "astronomy/v8beta1",
|
|
Version: "v8beta1",
|
|
}},
|
|
}},
|
|
},
|
|
resourceMap: map[string]*resourceMapEntry{
|
|
"astronomy/v8beta1": {
|
|
list: &metav1.APIResourceList{
|
|
GroupVersion: "astronomy/v8beta1",
|
|
APIResources: []metav1.APIResource{{
|
|
Name: "dwarfplanets",
|
|
SingularName: "dwarfplanet",
|
|
Namespaced: true,
|
|
Kind: "DwarfPlanet",
|
|
ShortNames: []string{"dp"},
|
|
}},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
c := NewMemCacheClient(fake)
|
|
if c.Fresh() {
|
|
t.Errorf("Expected not fresh.")
|
|
}
|
|
g, err := c.ServerGroups()
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
if e, a := fake.groupList, g; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
if !c.Fresh() {
|
|
t.Errorf("Expected fresh.")
|
|
}
|
|
c.Invalidate()
|
|
if c.Fresh() {
|
|
t.Errorf("Expected not fresh.")
|
|
}
|
|
|
|
g, err = c.ServerGroups()
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
if e, a := fake.groupList, g; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
if !c.Fresh() {
|
|
t.Errorf("Expected fresh.")
|
|
}
|
|
r, err := c.ServerResourcesForGroupVersion("astronomy/v8beta1")
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
if e, a := fake.resourceMap["astronomy/v8beta1"].list, r; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
|
|
fake.lock.Lock()
|
|
fake.resourceMap = map[string]*resourceMapEntry{
|
|
"astronomy/v8beta1": {
|
|
list: &metav1.APIResourceList{
|
|
GroupVersion: "astronomy/v8beta1",
|
|
APIResources: []metav1.APIResource{{
|
|
Name: "stars",
|
|
SingularName: "star",
|
|
Namespaced: true,
|
|
Kind: "Star",
|
|
ShortNames: []string{"s"},
|
|
}},
|
|
},
|
|
},
|
|
}
|
|
fake.lock.Unlock()
|
|
|
|
c.Invalidate()
|
|
r, err = c.ServerResourcesForGroupVersion("astronomy/v8beta1")
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
if e, a := fake.resourceMap["astronomy/v8beta1"].list, r; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
}
|
|
|
|
func TestServerGroupsFails(t *testing.T) {
|
|
fake := &fakeDiscovery{
|
|
groupList: &metav1.APIGroupList{
|
|
Groups: []metav1.APIGroup{{
|
|
Name: "astronomy",
|
|
Versions: []metav1.GroupVersionForDiscovery{{
|
|
GroupVersion: "astronomy/v8beta1",
|
|
Version: "v8beta1",
|
|
}},
|
|
}},
|
|
},
|
|
groupListErr: errors.New("some error"),
|
|
resourceMap: map[string]*resourceMapEntry{
|
|
"astronomy/v8beta1": {
|
|
list: &metav1.APIResourceList{
|
|
GroupVersion: "astronomy/v8beta1",
|
|
APIResources: []metav1.APIResource{{
|
|
Name: "dwarfplanets",
|
|
SingularName: "dwarfplanet",
|
|
Namespaced: true,
|
|
Kind: "DwarfPlanet",
|
|
ShortNames: []string{"dp"},
|
|
}},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
c := NewMemCacheClient(fake)
|
|
if c.Fresh() {
|
|
t.Errorf("Expected not fresh.")
|
|
}
|
|
_, err := c.ServerGroups()
|
|
if err == nil {
|
|
t.Errorf("Expected error")
|
|
}
|
|
if c.Fresh() {
|
|
t.Errorf("Expected not fresh.")
|
|
}
|
|
fake.lock.Lock()
|
|
fake.groupListErr = nil
|
|
fake.lock.Unlock()
|
|
r, err := c.ServerResourcesForGroupVersion("astronomy/v8beta1")
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
if e, a := fake.resourceMap["astronomy/v8beta1"].list, r; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
if !c.Fresh() {
|
|
t.Errorf("Expected not fresh.")
|
|
}
|
|
}
|
|
|
|
func TestPartialPermanentFailure(t *testing.T) {
|
|
fake := &fakeDiscovery{
|
|
groupList: &metav1.APIGroupList{
|
|
Groups: []metav1.APIGroup{
|
|
{
|
|
Name: "astronomy",
|
|
Versions: []metav1.GroupVersionForDiscovery{{
|
|
GroupVersion: "astronomy/v8beta1",
|
|
Version: "v8beta1",
|
|
}},
|
|
},
|
|
{
|
|
Name: "astronomy2",
|
|
Versions: []metav1.GroupVersionForDiscovery{{
|
|
GroupVersion: "astronomy2/v8beta1",
|
|
Version: "v8beta1",
|
|
}},
|
|
},
|
|
},
|
|
},
|
|
resourceMap: map[string]*resourceMapEntry{
|
|
"astronomy/v8beta1": {
|
|
err: errors.New("some permanent error"),
|
|
},
|
|
"astronomy2/v8beta1": {
|
|
list: &metav1.APIResourceList{
|
|
GroupVersion: "astronomy2/v8beta1",
|
|
APIResources: []metav1.APIResource{{
|
|
Name: "dwarfplanets",
|
|
SingularName: "dwarfplanet",
|
|
Namespaced: true,
|
|
Kind: "DwarfPlanet",
|
|
ShortNames: []string{"dp"},
|
|
}},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
c := NewMemCacheClient(fake)
|
|
if c.Fresh() {
|
|
t.Errorf("Expected not fresh.")
|
|
}
|
|
r, err := c.ServerResourcesForGroupVersion("astronomy2/v8beta1")
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
if e, a := fake.resourceMap["astronomy2/v8beta1"].list, r; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
_, err = c.ServerResourcesForGroupVersion("astronomy/v8beta1")
|
|
if err == nil {
|
|
t.Errorf("Expected error, got nil")
|
|
}
|
|
|
|
fake.lock.Lock()
|
|
fake.resourceMap["astronomy/v8beta1"] = &resourceMapEntry{
|
|
list: &metav1.APIResourceList{
|
|
GroupVersion: "astronomy/v8beta1",
|
|
APIResources: []metav1.APIResource{{
|
|
Name: "dwarfplanets",
|
|
SingularName: "dwarfplanet",
|
|
Namespaced: true,
|
|
Kind: "DwarfPlanet",
|
|
ShortNames: []string{"dp"},
|
|
}},
|
|
},
|
|
err: nil,
|
|
}
|
|
fake.lock.Unlock()
|
|
// We don't retry permanent errors, so it should fail.
|
|
_, err = c.ServerResourcesForGroupVersion("astronomy/v8beta1")
|
|
if err == nil {
|
|
t.Errorf("Expected error, got nil")
|
|
}
|
|
c.Invalidate()
|
|
|
|
// After Invalidate, we should retry.
|
|
r, err = c.ServerResourcesForGroupVersion("astronomy/v8beta1")
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
if e, a := fake.resourceMap["astronomy/v8beta1"].list, r; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
}
|
|
|
|
func TestPartialRetryableFailure(t *testing.T) {
|
|
fake := &fakeDiscovery{
|
|
groupList: &metav1.APIGroupList{
|
|
Groups: []metav1.APIGroup{
|
|
{
|
|
Name: "astronomy",
|
|
Versions: []metav1.GroupVersionForDiscovery{{
|
|
GroupVersion: "astronomy/v8beta1",
|
|
Version: "v8beta1",
|
|
}},
|
|
},
|
|
{
|
|
Name: "astronomy2",
|
|
Versions: []metav1.GroupVersionForDiscovery{{
|
|
GroupVersion: "astronomy2/v8beta1",
|
|
Version: "v8beta1",
|
|
}},
|
|
},
|
|
},
|
|
},
|
|
resourceMap: map[string]*resourceMapEntry{
|
|
"astronomy/v8beta1": {
|
|
err: &errorsutil.StatusError{
|
|
ErrStatus: metav1.Status{
|
|
Message: "Some retryable error",
|
|
Code: int32(http.StatusServiceUnavailable),
|
|
Reason: metav1.StatusReasonServiceUnavailable,
|
|
},
|
|
},
|
|
},
|
|
"astronomy2/v8beta1": {
|
|
list: &metav1.APIResourceList{
|
|
GroupVersion: "astronomy2/v8beta1",
|
|
APIResources: []metav1.APIResource{{
|
|
Name: "dwarfplanets",
|
|
SingularName: "dwarfplanet",
|
|
Namespaced: true,
|
|
Kind: "DwarfPlanet",
|
|
ShortNames: []string{"dp"},
|
|
}},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
c := NewMemCacheClient(fake)
|
|
if c.Fresh() {
|
|
t.Errorf("Expected not fresh.")
|
|
}
|
|
r, err := c.ServerResourcesForGroupVersion("astronomy2/v8beta1")
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
if e, a := fake.resourceMap["astronomy2/v8beta1"].list, r; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
_, err = c.ServerResourcesForGroupVersion("astronomy/v8beta1")
|
|
if err == nil {
|
|
t.Errorf("Expected error, got nil")
|
|
}
|
|
|
|
fake.lock.Lock()
|
|
fake.resourceMap["astronomy/v8beta1"] = &resourceMapEntry{
|
|
list: &metav1.APIResourceList{
|
|
GroupVersion: "astronomy/v8beta1",
|
|
APIResources: []metav1.APIResource{{
|
|
Name: "dwarfplanets",
|
|
SingularName: "dwarfplanet",
|
|
Namespaced: true,
|
|
Kind: "DwarfPlanet",
|
|
ShortNames: []string{"dp"},
|
|
}},
|
|
},
|
|
err: nil,
|
|
}
|
|
fake.lock.Unlock()
|
|
// We should retry retryable error even without Invalidate() being called,
|
|
// so no error is expected.
|
|
r, err = c.ServerResourcesForGroupVersion("astronomy/v8beta1")
|
|
if err != nil {
|
|
t.Errorf("Expected no error, got %v", err)
|
|
}
|
|
if e, a := fake.resourceMap["astronomy/v8beta1"].list, r; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
|
|
// Check that the last result was cached and we don't retry further.
|
|
fake.lock.Lock()
|
|
fake.resourceMap["astronomy/v8beta1"].err = errors.New("some permanent error")
|
|
fake.lock.Unlock()
|
|
r, err = c.ServerResourcesForGroupVersion("astronomy/v8beta1")
|
|
if err != nil {
|
|
t.Errorf("Expected no error, got %v", err)
|
|
}
|
|
if e, a := fake.resourceMap["astronomy/v8beta1"].list, r; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("Expected %#v, got %#v", e, a)
|
|
}
|
|
}
|
|
|
|
// Tests that schema instances returned by openapi cached and returned after
|
|
// successive calls
|
|
func TestOpenAPIMemCache(t *testing.T) {
|
|
fakeServer, err := testutil.NewFakeOpenAPIV3Server("../../testdata")
|
|
require.NoError(t, err)
|
|
defer fakeServer.HttpServer.Close()
|
|
|
|
require.Greater(t, len(fakeServer.ServedDocuments), 0)
|
|
|
|
client := NewMemCacheClient(
|
|
discovery.NewDiscoveryClientForConfigOrDie(
|
|
&rest.Config{Host: fakeServer.HttpServer.URL},
|
|
),
|
|
)
|
|
openapiClient := client.OpenAPIV3()
|
|
|
|
paths, err := openapiClient.Paths()
|
|
require.NoError(t, err)
|
|
|
|
for k, v := range paths {
|
|
original, err := v.Schema()
|
|
if !assert.NoError(t, err) {
|
|
continue
|
|
}
|
|
|
|
pathsAgain, err := openapiClient.Paths()
|
|
if !assert.NoError(t, err) {
|
|
continue
|
|
}
|
|
|
|
schemaAgain, err := pathsAgain[k].Schema()
|
|
if !assert.NoError(t, err) {
|
|
continue
|
|
}
|
|
|
|
assert.True(t, reflect.ValueOf(paths).Pointer() == reflect.ValueOf(pathsAgain).Pointer())
|
|
assert.True(t, reflect.ValueOf(original).Pointer() == reflect.ValueOf(schemaAgain).Pointer())
|
|
|
|
// Invalidate and try again. This time pointers should not be equal
|
|
client.Invalidate()
|
|
|
|
pathsAgain, err = client.OpenAPIV3().Paths()
|
|
if !assert.NoError(t, err) {
|
|
continue
|
|
}
|
|
|
|
schemaAgain, err = pathsAgain[k].Schema()
|
|
if !assert.NoError(t, err) {
|
|
continue
|
|
}
|
|
|
|
assert.True(t, reflect.ValueOf(paths).Pointer() != reflect.ValueOf(pathsAgain).Pointer())
|
|
assert.True(t, reflect.ValueOf(original).Pointer() != reflect.ValueOf(schemaAgain).Pointer())
|
|
assert.Equal(t, original, schemaAgain)
|
|
}
|
|
}
|