blob: 04cab34f0c459ee660e725970189a3940ecb6511 [file] [log] [blame]
// Code generated by mockery v0.0.0-dev. DO NOT EDIT.
package mocks
import (
context "context"
autoroll "go.skia.org/infra/go/autoroll"
mock "github.com/stretchr/testify/mock"
)
// DB is an autogenerated mock type for the DB type
type DB struct {
mock.Mock
}
// Get provides a mock function with given fields: ctx, roller, issue
func (_m *DB) Get(ctx context.Context, roller string, issue int64) (*autoroll.AutoRollIssue, error) {
ret := _m.Called(ctx, roller, issue)
if len(ret) == 0 {
panic("no return value specified for Get")
}
var r0 *autoroll.AutoRollIssue
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, string, int64) (*autoroll.AutoRollIssue, error)); ok {
return rf(ctx, roller, issue)
}
if rf, ok := ret.Get(0).(func(context.Context, string, int64) *autoroll.AutoRollIssue); ok {
r0 = rf(ctx, roller, issue)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*autoroll.AutoRollIssue)
}
}
if rf, ok := ret.Get(1).(func(context.Context, string, int64) error); ok {
r1 = rf(ctx, roller, issue)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetRolls provides a mock function with given fields: ctx, roller, cursor
func (_m *DB) GetRolls(ctx context.Context, roller string, cursor string) ([]*autoroll.AutoRollIssue, string, error) {
ret := _m.Called(ctx, roller, cursor)
if len(ret) == 0 {
panic("no return value specified for GetRolls")
}
var r0 []*autoroll.AutoRollIssue
var r1 string
var r2 error
if rf, ok := ret.Get(0).(func(context.Context, string, string) ([]*autoroll.AutoRollIssue, string, error)); ok {
return rf(ctx, roller, cursor)
}
if rf, ok := ret.Get(0).(func(context.Context, string, string) []*autoroll.AutoRollIssue); ok {
r0 = rf(ctx, roller, cursor)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*autoroll.AutoRollIssue)
}
}
if rf, ok := ret.Get(1).(func(context.Context, string, string) string); ok {
r1 = rf(ctx, roller, cursor)
} else {
r1 = ret.Get(1).(string)
}
if rf, ok := ret.Get(2).(func(context.Context, string, string) error); ok {
r2 = rf(ctx, roller, cursor)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}
// Put provides a mock function with given fields: ctx, roller, roll
func (_m *DB) Put(ctx context.Context, roller string, roll *autoroll.AutoRollIssue) error {
ret := _m.Called(ctx, roller, roll)
if len(ret) == 0 {
panic("no return value specified for Put")
}
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, *autoroll.AutoRollIssue) error); ok {
r0 = rf(ctx, roller, roll)
} else {
r0 = ret.Error(0)
}
return r0
}
// NewDB creates a new instance of DB. 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 NewDB(t interface {
mock.TestingT
Cleanup(func())
}) *DB {
mock := &DB{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}