mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 16:14:05 -08:00
98 lines
2.7 KiB
Go
98 lines
2.7 KiB
Go
|
/*
|
||
|
Copyright 2016 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
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/emicklei/go-restful/swagger"
|
||
|
|
||
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
||
|
"k8s.io/apimachinery/pkg/version"
|
||
|
"k8s.io/client-go/pkg/api/v1"
|
||
|
kubeversion "k8s.io/client-go/pkg/version"
|
||
|
restclient "k8s.io/client-go/rest"
|
||
|
"k8s.io/client-go/testing"
|
||
|
)
|
||
|
|
||
|
type FakeDiscovery struct {
|
||
|
*testing.Fake
|
||
|
}
|
||
|
|
||
|
func (c *FakeDiscovery) ServerResourcesForGroupVersion(groupVersion string) (*metav1.APIResourceList, error) {
|
||
|
action := testing.ActionImpl{
|
||
|
Verb: "get",
|
||
|
Resource: schema.GroupVersionResource{Resource: "resource"},
|
||
|
}
|
||
|
c.Invokes(action, nil)
|
||
|
for _, resourceList := range c.Resources {
|
||
|
if resourceList.GroupVersion == groupVersion {
|
||
|
return resourceList, nil
|
||
|
}
|
||
|
}
|
||
|
return nil, fmt.Errorf("GroupVersion %q not found", groupVersion)
|
||
|
}
|
||
|
|
||
|
func (c *FakeDiscovery) ServerResources() ([]*metav1.APIResourceList, error) {
|
||
|
action := testing.ActionImpl{
|
||
|
Verb: "get",
|
||
|
Resource: schema.GroupVersionResource{Resource: "resource"},
|
||
|
}
|
||
|
c.Invokes(action, nil)
|
||
|
return c.Resources, nil
|
||
|
}
|
||
|
|
||
|
func (c *FakeDiscovery) ServerPreferredResources() ([]*metav1.APIResourceList, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
func (c *FakeDiscovery) ServerPreferredNamespacedResources() ([]*metav1.APIResourceList, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
func (c *FakeDiscovery) ServerGroups() (*metav1.APIGroupList, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
func (c *FakeDiscovery) ServerVersion() (*version.Info, error) {
|
||
|
action := testing.ActionImpl{}
|
||
|
action.Verb = "get"
|
||
|
action.Resource = schema.GroupVersionResource{Resource: "version"}
|
||
|
|
||
|
c.Invokes(action, nil)
|
||
|
versionInfo := kubeversion.Get()
|
||
|
return &versionInfo, nil
|
||
|
}
|
||
|
|
||
|
func (c *FakeDiscovery) SwaggerSchema(version schema.GroupVersion) (*swagger.ApiDeclaration, error) {
|
||
|
action := testing.ActionImpl{}
|
||
|
action.Verb = "get"
|
||
|
if version == v1.SchemeGroupVersion {
|
||
|
action.Resource = schema.GroupVersionResource{Resource: "/swaggerapi/api/" + version.Version}
|
||
|
} else {
|
||
|
action.Resource = schema.GroupVersionResource{Resource: "/swaggerapi/apis/" + version.Group + "/" + version.Version}
|
||
|
}
|
||
|
|
||
|
c.Invokes(action, nil)
|
||
|
return &swagger.ApiDeclaration{}, nil
|
||
|
}
|
||
|
|
||
|
func (c *FakeDiscovery) RESTClient() restclient.Interface {
|
||
|
return nil
|
||
|
}
|