
Instead of saying "Google Inc." (which is not always correct) say "The Kubernetes Authors", which is generic.
48 lines
1.7 KiB
Go
48 lines
1.7 KiB
Go
/*
|
|
Copyright 2015 The Kubernetes Authors 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 testclient
|
|
|
|
import (
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/fields"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
|
)
|
|
|
|
// Fake implements ComponentStatusInterface.
|
|
type FakeComponentStatuses struct {
|
|
Fake *Fake
|
|
}
|
|
|
|
func (c *FakeComponentStatuses) List(label labels.Selector, field fields.Selector) (result *api.ComponentStatusList, err error) {
|
|
obj, err := c.Fake.Invokes(FakeAction{Action: "list-componentstatuses"}, &api.ComponentStatusList{})
|
|
return obj.(*api.ComponentStatusList), err
|
|
}
|
|
|
|
func (c *FakeComponentStatuses) Get(name string) (*api.ComponentStatus, error) {
|
|
obj, err := c.Fake.Invokes(FakeAction{Action: "get-componentstatus", Value: name}, &api.ComponentStatus{})
|
|
// c.Actions = append(c.Actions, FakeAction{Action: "get-componentstatuses", Value: nil})
|
|
// testStatus := &api.ComponentStatus{
|
|
// Name: "test",
|
|
// Health: "ok",
|
|
// HealthCode: int(probe.Success),
|
|
// Message: "ok",
|
|
// Error: "",
|
|
// }
|
|
// return &api.ComponentStatusList{Items: []api.ComponentStatus{*testStatus}}, nil
|
|
return obj.(*api.ComponentStatus), err
|
|
}
|