mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-25 09:44:41 +00:00

# Which Problems Are Solved The recently introduced notification queue have potential race conditions. # How the Problems Are Solved Current code is refactored to use the queue package, which is safe in regards of concurrency. # Additional Changes - the queue is included in startup - improved code quality of queue # Additional Context - closes https://github.com/zitadel/zitadel/issues/9278
62 lines
1.7 KiB
Go
62 lines
1.7 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/zitadel/zitadel/internal/notification/handlers (interfaces: Queue)
|
|
//
|
|
// Generated by this command:
|
|
//
|
|
// mockgen -package mock -destination ./mock/queue.mock.go github.com/zitadel/zitadel/internal/notification/handlers Queue
|
|
//
|
|
|
|
// Package mock is a generated GoMock package.
|
|
package mock
|
|
|
|
import (
|
|
context "context"
|
|
reflect "reflect"
|
|
|
|
river "github.com/riverqueue/river"
|
|
queue "github.com/zitadel/zitadel/internal/queue"
|
|
gomock "go.uber.org/mock/gomock"
|
|
)
|
|
|
|
// MockQueue is a mock of Queue interface.
|
|
type MockQueue struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockQueueMockRecorder
|
|
}
|
|
|
|
// MockQueueMockRecorder is the mock recorder for MockQueue.
|
|
type MockQueueMockRecorder struct {
|
|
mock *MockQueue
|
|
}
|
|
|
|
// NewMockQueue creates a new mock instance.
|
|
func NewMockQueue(ctrl *gomock.Controller) *MockQueue {
|
|
mock := &MockQueue{ctrl: ctrl}
|
|
mock.recorder = &MockQueueMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockQueue) EXPECT() *MockQueueMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// Insert mocks base method.
|
|
func (m *MockQueue) Insert(arg0 context.Context, arg1 river.JobArgs, arg2 ...queue.InsertOpt) error {
|
|
m.ctrl.T.Helper()
|
|
varargs := []any{arg0, arg1}
|
|
for _, a := range arg2 {
|
|
varargs = append(varargs, a)
|
|
}
|
|
ret := m.ctrl.Call(m, "Insert", varargs...)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// Insert indicates an expected call of Insert.
|
|
func (mr *MockQueueMockRecorder) Insert(arg0, arg1 any, arg2 ...any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
varargs := append([]any{arg0, arg1}, arg2...)
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Insert", reflect.TypeOf((*MockQueue)(nil).Insert), varargs...)
|
|
}
|