mirror of https://github.com/k3s-io/k3s
120 lines
4.1 KiB
Go
120 lines
4.1 KiB
Go
/*
|
|
Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
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 client
|
|
|
|
import (
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/version"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/watch"
|
|
)
|
|
|
|
type FakeAction struct {
|
|
Action string
|
|
Value interface{}
|
|
}
|
|
|
|
// Fake implements Interface. Meant to be embedded into a struct to get a default
|
|
// implementation. This makes faking out just the method you want to test easier.
|
|
type Fake struct {
|
|
// Fake by default keeps a simple list of the methods that have been called.
|
|
Actions []FakeAction
|
|
Pods api.PodList
|
|
Ctrl api.ReplicationController
|
|
}
|
|
|
|
func (c *Fake) ListPods(selector labels.Selector) (api.PodList, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "list-pods"})
|
|
return c.Pods, nil
|
|
}
|
|
|
|
func (c *Fake) GetPod(name string) (api.Pod, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "get-pod", Value: name})
|
|
return api.Pod{}, nil
|
|
}
|
|
|
|
func (c *Fake) DeletePod(name string) error {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "delete-pod", Value: name})
|
|
return nil
|
|
}
|
|
|
|
func (c *Fake) CreatePod(pod api.Pod) (api.Pod, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "create-pod"})
|
|
return api.Pod{}, nil
|
|
}
|
|
|
|
func (c *Fake) UpdatePod(pod api.Pod) (api.Pod, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "update-pod", Value: pod.ID})
|
|
return api.Pod{}, nil
|
|
}
|
|
|
|
func (c *Fake) ListReplicationControllers(selector labels.Selector) (api.ReplicationControllerList, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "list-controllers"})
|
|
return api.ReplicationControllerList{}, nil
|
|
}
|
|
|
|
func (c *Fake) GetReplicationController(name string) (api.ReplicationController, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "get-controller", Value: name})
|
|
return c.Ctrl, nil
|
|
}
|
|
|
|
func (c *Fake) CreateReplicationController(controller api.ReplicationController) (api.ReplicationController, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "create-controller", Value: controller})
|
|
return api.ReplicationController{}, nil
|
|
}
|
|
|
|
func (c *Fake) UpdateReplicationController(controller api.ReplicationController) (api.ReplicationController, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "update-controller", Value: controller})
|
|
return api.ReplicationController{}, nil
|
|
}
|
|
|
|
func (c *Fake) DeleteReplicationController(controller string) error {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "delete-controller", Value: controller})
|
|
return nil
|
|
}
|
|
|
|
func (c *Fake) WatchReplicationControllers(label, field labels.Selector, resourceVersion uint64) (watch.Interface, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "watch-controllers"})
|
|
return watch.NewFake(), nil
|
|
}
|
|
|
|
func (c *Fake) GetService(name string) (api.Service, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "get-service", Value: name})
|
|
return api.Service{}, nil
|
|
}
|
|
|
|
func (c *Fake) CreateService(service api.Service) (api.Service, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "create-service", Value: service})
|
|
return api.Service{}, nil
|
|
}
|
|
|
|
func (c *Fake) UpdateService(service api.Service) (api.Service, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "update-service", Value: service})
|
|
return api.Service{}, nil
|
|
}
|
|
|
|
func (c *Fake) DeleteService(service string) error {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "delete-service", Value: service})
|
|
return nil
|
|
}
|
|
|
|
func (c *Fake) ServerVersion() (*version.Info, error) {
|
|
c.Actions = append(c.Actions, FakeAction{Action: "get-version", Value: nil})
|
|
versionInfo := version.Get()
|
|
return &versionInfo, nil
|
|
}
|