mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 14:12:15 +08:00

* WIP: Separate signature package * Add some unit tests * Test factory * Finish unit test coverage signature package * Fix register * Add FIXME * Add more coverage * Add more coverage * Fix migrate tests * Fix unit tests
97 lines
2.6 KiB
Go
97 lines
2.6 KiB
Go
// Code generated by mockery v2.52.4. DO NOT EDIT.
|
|
|
|
package signature
|
|
|
|
import (
|
|
context "context"
|
|
|
|
utils "github.com/grafana/grafana/pkg/apimachinery/utils"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// MockSigner is an autogenerated mock type for the Signer type
|
|
type MockSigner struct {
|
|
mock.Mock
|
|
}
|
|
|
|
type MockSigner_Expecter struct {
|
|
mock *mock.Mock
|
|
}
|
|
|
|
func (_m *MockSigner) EXPECT() *MockSigner_Expecter {
|
|
return &MockSigner_Expecter{mock: &_m.Mock}
|
|
}
|
|
|
|
// Sign provides a mock function with given fields: ctx, item
|
|
func (_m *MockSigner) Sign(ctx context.Context, item utils.GrafanaMetaAccessor) (context.Context, error) {
|
|
ret := _m.Called(ctx, item)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Sign")
|
|
}
|
|
|
|
var r0 context.Context
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(context.Context, utils.GrafanaMetaAccessor) (context.Context, error)); ok {
|
|
return rf(ctx, item)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(context.Context, utils.GrafanaMetaAccessor) context.Context); ok {
|
|
r0 = rf(ctx, item)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(context.Context)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(context.Context, utils.GrafanaMetaAccessor) error); ok {
|
|
r1 = rf(ctx, item)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// MockSigner_Sign_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Sign'
|
|
type MockSigner_Sign_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Sign is a helper method to define mock.On call
|
|
// - ctx context.Context
|
|
// - item utils.GrafanaMetaAccessor
|
|
func (_e *MockSigner_Expecter) Sign(ctx interface{}, item interface{}) *MockSigner_Sign_Call {
|
|
return &MockSigner_Sign_Call{Call: _e.mock.On("Sign", ctx, item)}
|
|
}
|
|
|
|
func (_c *MockSigner_Sign_Call) Run(run func(ctx context.Context, item utils.GrafanaMetaAccessor)) *MockSigner_Sign_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(context.Context), args[1].(utils.GrafanaMetaAccessor))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSigner_Sign_Call) Return(_a0 context.Context, _a1 error) *MockSigner_Sign_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSigner_Sign_Call) RunAndReturn(run func(context.Context, utils.GrafanaMetaAccessor) (context.Context, error)) *MockSigner_Sign_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// NewMockSigner creates a new instance of MockSigner. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
|
|
// The first argument is typically a *testing.T value.
|
|
func NewMockSigner(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *MockSigner {
|
|
mock := &MockSigner{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|