2021-03-15 11:51:15 +00:00
|
|
|
// Code generated by MockGen. DO NOT EDIT.
|
|
|
|
// Source: github.com/caos/zitadel/internal/eventstore/repository (interfaces: Repository)
|
|
|
|
|
|
|
|
// Package mock is a generated GoMock package.
|
|
|
|
package mock
|
|
|
|
|
|
|
|
import (
|
|
|
|
context "context"
|
|
|
|
repository "github.com/caos/zitadel/internal/eventstore/repository"
|
|
|
|
gomock "github.com/golang/mock/gomock"
|
|
|
|
reflect "reflect"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MockRepository is a mock of Repository interface
|
|
|
|
type MockRepository struct {
|
|
|
|
ctrl *gomock.Controller
|
|
|
|
recorder *MockRepositoryMockRecorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// MockRepositoryMockRecorder is the mock recorder for MockRepository
|
|
|
|
type MockRepositoryMockRecorder struct {
|
|
|
|
mock *MockRepository
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMockRepository creates a new mock instance
|
|
|
|
func NewMockRepository(ctrl *gomock.Controller) *MockRepository {
|
|
|
|
mock := &MockRepository{ctrl: ctrl}
|
|
|
|
mock.recorder = &MockRepositoryMockRecorder{mock}
|
|
|
|
return mock
|
|
|
|
}
|
|
|
|
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use
|
|
|
|
func (m *MockRepository) EXPECT() *MockRepositoryMockRecorder {
|
|
|
|
return m.recorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter mocks base method
|
|
|
|
func (m *MockRepository) Filter(arg0 context.Context, arg1 *repository.SearchQuery) ([]*repository.Event, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "Filter", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].([]*repository.Event)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter indicates an expected call of Filter
|
|
|
|
func (mr *MockRepositoryMockRecorder) Filter(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Filter", reflect.TypeOf((*MockRepository)(nil).Filter), arg0, arg1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Health mocks base method
|
|
|
|
func (m *MockRepository) Health(arg0 context.Context) error {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "Health", arg0)
|
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Health indicates an expected call of Health
|
|
|
|
func (mr *MockRepositoryMockRecorder) Health(arg0 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Health", reflect.TypeOf((*MockRepository)(nil).Health), arg0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// LatestSequence mocks base method
|
|
|
|
func (m *MockRepository) LatestSequence(arg0 context.Context, arg1 *repository.SearchQuery) (uint64, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "LatestSequence", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(uint64)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// LatestSequence indicates an expected call of LatestSequence
|
|
|
|
func (mr *MockRepositoryMockRecorder) LatestSequence(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LatestSequence", reflect.TypeOf((*MockRepository)(nil).LatestSequence), arg0, arg1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Push mocks base method
|
2021-05-03 08:15:50 +00:00
|
|
|
func (m *MockRepository) Push(arg0 context.Context, arg1 []*repository.Event, arg2 ...*repository.UniqueConstraint) error {
|
2021-03-15 11:51:15 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-05-03 08:15:50 +00:00
|
|
|
varargs := []interface{}{arg0, arg1}
|
|
|
|
for _, a := range arg2 {
|
2021-03-15 11:51:15 +00:00
|
|
|
varargs = append(varargs, a)
|
|
|
|
}
|
|
|
|
ret := m.ctrl.Call(m, "Push", varargs...)
|
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Push indicates an expected call of Push
|
2021-05-03 08:15:50 +00:00
|
|
|
func (mr *MockRepositoryMockRecorder) Push(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
|
2021-03-15 11:51:15 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-05-03 08:15:50 +00:00
|
|
|
varargs := append([]interface{}{arg0, arg1}, arg2...)
|
2021-03-15 11:51:15 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Push", reflect.TypeOf((*MockRepository)(nil).Push), varargs...)
|
|
|
|
}
|