
This PS makes sure we have linter and unit tests processed. The code has been reformatted to adhere to Go's code formatting conventions. Change-Id: I31f15d6d6c4b9bda7e3837941b6c9c3c3735aea7
118 lines
2.3 KiB
Go
118 lines
2.3 KiB
Go
package mocks
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
types "k8s.io/apimachinery/pkg/types"
|
|
watch "k8s.io/apimachinery/pkg/watch"
|
|
corev1applyconfigurations "k8s.io/client-go/applyconfigurations/core/v1"
|
|
corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
|
|
)
|
|
|
|
type eClient struct{}
|
|
|
|
const (
|
|
MockEndpointError = "mock endpoint didnt work"
|
|
)
|
|
|
|
func (e eClient) Create(
|
|
ctx context.Context,
|
|
endpoints *v1.Endpoints,
|
|
opts metav1.CreateOptions,
|
|
) (*v1.Endpoints, error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (e eClient) Update(
|
|
ctx context.Context,
|
|
endpoints *v1.Endpoints,
|
|
opts metav1.UpdateOptions,
|
|
) (*v1.Endpoints, error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (e eClient) Delete(
|
|
ctx context.Context,
|
|
name string,
|
|
opts metav1.DeleteOptions,
|
|
) error {
|
|
return fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (e eClient) DeleteCollection(
|
|
ctx context.Context,
|
|
opts metav1.DeleteOptions,
|
|
listOpts metav1.ListOptions,
|
|
) error {
|
|
return fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (e eClient) Get(
|
|
ctx context.Context,
|
|
name string,
|
|
opts metav1.GetOptions,
|
|
) (*v1.Endpoints, error) {
|
|
if name == FailingServiceName {
|
|
return nil, fmt.Errorf(MockEndpointError)
|
|
}
|
|
|
|
subsets := []v1.EndpointSubset{}
|
|
|
|
if name != EmptySubsetsServiceName {
|
|
subsets = []v1.EndpointSubset{
|
|
{
|
|
Addresses: []v1.EndpointAddress{
|
|
{IP: "127.0.0.1"},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
endpoint := &v1.Endpoints{
|
|
ObjectMeta: metav1.ObjectMeta{Name: name},
|
|
Subsets: subsets,
|
|
}
|
|
|
|
return endpoint, nil
|
|
}
|
|
|
|
func (e eClient) List(
|
|
ctx context.Context,
|
|
opts metav1.ListOptions,
|
|
) (*v1.EndpointsList, error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (e eClient) Watch(
|
|
ctx context.Context,
|
|
opts metav1.ListOptions,
|
|
) (watch.Interface, error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (e eClient) Patch(
|
|
ctx context.Context,
|
|
name string,
|
|
pt types.PatchType,
|
|
data []byte,
|
|
opts metav1.PatchOptions,
|
|
subresources ...string,
|
|
) (result *v1.Endpoints, err error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (e eClient) Apply(
|
|
ctx context.Context,
|
|
endpoints *corev1applyconfigurations.EndpointsApplyConfiguration,
|
|
opts metav1.ApplyOptions,
|
|
) (result *v1.Endpoints, err error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func NewEClient() corev1.EndpointsInterface {
|
|
return eClient{}
|
|
}
|