mirror of
https://github.com/kubernetes/client-go.git
synced 2025-09-19 09:41:20 +00:00
Fixes the argument order used when calling testing.NewUpdateSubresourceAction within the fake scale client. This was causing the generated action to swap the values of the Namespace and Subresource in the Action. Kubernetes-commit: 34a446d812c423da7a306963f250f4002dac9be8
82 lines
2.5 KiB
Go
82 lines
2.5 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 fake provides a fake client interface to arbitrary Kubernetes
|
|
// APIs that exposes common high level operations and exposes common
|
|
// metadata.
|
|
package fake
|
|
|
|
import (
|
|
"context"
|
|
|
|
autoscalingapi "k8s.io/api/autoscaling/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"k8s.io/client-go/scale"
|
|
"k8s.io/client-go/testing"
|
|
)
|
|
|
|
// FakeScaleClient provides a fake implementation of scale.ScalesGetter.
|
|
type FakeScaleClient struct {
|
|
testing.Fake
|
|
}
|
|
|
|
func (f *FakeScaleClient) Scales(namespace string) scale.ScaleInterface {
|
|
return &fakeNamespacedScaleClient{
|
|
namespace: namespace,
|
|
fake: &f.Fake,
|
|
}
|
|
}
|
|
|
|
type fakeNamespacedScaleClient struct {
|
|
namespace string
|
|
fake *testing.Fake
|
|
}
|
|
|
|
func (f *fakeNamespacedScaleClient) Get(ctx context.Context, resource schema.GroupResource, name string, opts metav1.GetOptions) (*autoscalingapi.Scale, error) {
|
|
obj, err := f.fake.
|
|
Invokes(testing.NewGetSubresourceAction(resource.WithVersion(""), f.namespace, "scale", name), &autoscalingapi.Scale{})
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return obj.(*autoscalingapi.Scale), err
|
|
}
|
|
|
|
func (f *fakeNamespacedScaleClient) Update(ctx context.Context, resource schema.GroupResource, scale *autoscalingapi.Scale, opts metav1.UpdateOptions) (*autoscalingapi.Scale, error) {
|
|
obj, err := f.fake.
|
|
Invokes(testing.NewUpdateSubresourceAction(resource.WithVersion(""), "scale", f.namespace, scale), &autoscalingapi.Scale{})
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return obj.(*autoscalingapi.Scale), err
|
|
}
|
|
|
|
func (f *fakeNamespacedScaleClient) Patch(ctx context.Context, gvr schema.GroupVersionResource, name string, pt types.PatchType, patch []byte, opts metav1.PatchOptions) (*autoscalingapi.Scale, error) {
|
|
obj, err := f.fake.
|
|
Invokes(testing.NewPatchSubresourceAction(gvr, f.namespace, name, pt, patch, "scale"), &autoscalingapi.Scale{})
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return obj.(*autoscalingapi.Scale), err
|
|
}
|