mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 13:02:29 +08:00

Create DualWriterMetrics once, and pass them around. Don't use prometheus.DefaultRegisterer.
116 lines
3.8 KiB
Go
116 lines
3.8 KiB
Go
package rest
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/mock"
|
|
metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apiserver/pkg/apis/example"
|
|
"k8s.io/apiserver/pkg/registry/rest"
|
|
)
|
|
|
|
var now = time.Now()
|
|
|
|
var exampleObj = &example.Pod{TypeMeta: metav1.TypeMeta{Kind: "foo"}, ObjectMeta: metav1.ObjectMeta{Name: "foo", ResourceVersion: "1", CreationTimestamp: metav1.Time{}, GenerateName: "foo"}, Spec: example.PodSpec{}, Status: example.PodStatus{StartTime: &metav1.Time{Time: now}}}
|
|
var anotherObj = &example.Pod{TypeMeta: metav1.TypeMeta{Kind: "foo"}, ObjectMeta: metav1.ObjectMeta{Name: "bar", ResourceVersion: "2", GenerateName: "foo"}, Spec: example.PodSpec{}, Status: example.PodStatus{StartTime: &metav1.Time{Time: now}}}
|
|
var exampleList = &example.PodList{TypeMeta: metav1.TypeMeta{Kind: "foo"}, ListMeta: metav1.ListMeta{}, Items: []example.Pod{*exampleObj}}
|
|
var anotherList = &example.PodList{Items: []example.Pod{*anotherObj}}
|
|
|
|
type storageMock struct {
|
|
*mock.Mock
|
|
Storage
|
|
}
|
|
|
|
// Unified Store
|
|
func (m storageMock) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil, errors.New("context canceled")
|
|
default:
|
|
}
|
|
|
|
args := m.Called(ctx, name, options)
|
|
if err := args.Get(1); err != nil {
|
|
return nil, err.(error)
|
|
}
|
|
return args.Get(0).(runtime.Object), args.Error(1)
|
|
}
|
|
|
|
func (m storageMock) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil, errors.New("context canceled")
|
|
default:
|
|
}
|
|
|
|
args := m.Called(ctx, obj, createValidation, options)
|
|
if err := args.Get(1); err != nil {
|
|
return nil, err.(error)
|
|
}
|
|
return args.Get(0).(runtime.Object), args.Error(1)
|
|
}
|
|
|
|
func (m storageMock) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil, errors.New("context canceled")
|
|
default:
|
|
}
|
|
|
|
args := m.Called(ctx, options)
|
|
if err := args.Get(1); err != nil {
|
|
return nil, err.(error)
|
|
}
|
|
return args.Get(0).(runtime.Object), args.Error(1)
|
|
}
|
|
|
|
func (m storageMock) NewList() runtime.Object {
|
|
return nil
|
|
}
|
|
|
|
func (m storageMock) Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error) {
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil, false, errors.New("context canceled")
|
|
default:
|
|
}
|
|
|
|
args := m.Called(ctx, name, objInfo, createValidation, updateValidation, forceAllowCreate, options)
|
|
if err := args.Get(2); err != nil {
|
|
return nil, false, err.(error)
|
|
}
|
|
return args.Get(0).(runtime.Object), args.Bool(1), args.Error(2)
|
|
}
|
|
|
|
func (m storageMock) Delete(ctx context.Context, name string, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil, false, errors.New("context canceled")
|
|
default:
|
|
}
|
|
|
|
args := m.Called(ctx, name, deleteValidation, options)
|
|
if err := args.Get(2); err != nil {
|
|
return nil, false, err.(error)
|
|
}
|
|
return args.Get(0).(runtime.Object), args.Bool(1), args.Error(2)
|
|
}
|
|
|
|
func (m storageMock) DeleteCollection(ctx context.Context, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions, listOptions *metainternalversion.ListOptions) (runtime.Object, error) {
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil, errors.New("context canceled")
|
|
default:
|
|
}
|
|
|
|
args := m.Called(ctx, deleteValidation, options, listOptions)
|
|
if err := args.Get(1); err != nil {
|
|
return nil, err.(error)
|
|
}
|
|
return args.Get(0).(runtime.Object), args.Error(1)
|
|
}
|