github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/domain/bundle/automock/event_service.go (about) 1 // Code generated by mockery. DO NOT EDIT. 2 3 package automock 4 5 import ( 6 context "context" 7 8 model "github.com/kyma-incubator/compass/components/director/internal/model" 9 mock "github.com/stretchr/testify/mock" 10 11 resource "github.com/kyma-incubator/compass/components/director/pkg/resource" 12 ) 13 14 // EventService is an autogenerated mock type for the EventService type 15 type EventService struct { 16 mock.Mock 17 } 18 19 // CreateInBundle provides a mock function with given fields: ctx, resourceType, resourceID, bundleID, in, spec 20 func (_m *EventService) CreateInBundle(ctx context.Context, resourceType resource.Type, resourceID string, bundleID string, in model.EventDefinitionInput, spec *model.SpecInput) (string, error) { 21 ret := _m.Called(ctx, resourceType, resourceID, bundleID, in, spec) 22 23 var r0 string 24 if rf, ok := ret.Get(0).(func(context.Context, resource.Type, string, string, model.EventDefinitionInput, *model.SpecInput) string); ok { 25 r0 = rf(ctx, resourceType, resourceID, bundleID, in, spec) 26 } else { 27 r0 = ret.Get(0).(string) 28 } 29 30 var r1 error 31 if rf, ok := ret.Get(1).(func(context.Context, resource.Type, string, string, model.EventDefinitionInput, *model.SpecInput) error); ok { 32 r1 = rf(ctx, resourceType, resourceID, bundleID, in, spec) 33 } else { 34 r1 = ret.Error(1) 35 } 36 37 return r0, r1 38 } 39 40 // DeleteAllByBundleID provides a mock function with given fields: ctx, bundleID 41 func (_m *EventService) DeleteAllByBundleID(ctx context.Context, bundleID string) error { 42 ret := _m.Called(ctx, bundleID) 43 44 var r0 error 45 if rf, ok := ret.Get(0).(func(context.Context, string) error); ok { 46 r0 = rf(ctx, bundleID) 47 } else { 48 r0 = ret.Error(0) 49 } 50 51 return r0 52 } 53 54 // GetForBundle provides a mock function with given fields: ctx, id, bundleID 55 func (_m *EventService) GetForBundle(ctx context.Context, id string, bundleID string) (*model.EventDefinition, error) { 56 ret := _m.Called(ctx, id, bundleID) 57 58 var r0 *model.EventDefinition 59 if rf, ok := ret.Get(0).(func(context.Context, string, string) *model.EventDefinition); ok { 60 r0 = rf(ctx, id, bundleID) 61 } else { 62 if ret.Get(0) != nil { 63 r0 = ret.Get(0).(*model.EventDefinition) 64 } 65 } 66 67 var r1 error 68 if rf, ok := ret.Get(1).(func(context.Context, string, string) error); ok { 69 r1 = rf(ctx, id, bundleID) 70 } else { 71 r1 = ret.Error(1) 72 } 73 74 return r0, r1 75 } 76 77 // ListByBundleIDs provides a mock function with given fields: ctx, bundleIDs, pageSize, cursor 78 func (_m *EventService) ListByBundleIDs(ctx context.Context, bundleIDs []string, pageSize int, cursor string) ([]*model.EventDefinitionPage, error) { 79 ret := _m.Called(ctx, bundleIDs, pageSize, cursor) 80 81 var r0 []*model.EventDefinitionPage 82 if rf, ok := ret.Get(0).(func(context.Context, []string, int, string) []*model.EventDefinitionPage); ok { 83 r0 = rf(ctx, bundleIDs, pageSize, cursor) 84 } else { 85 if ret.Get(0) != nil { 86 r0 = ret.Get(0).([]*model.EventDefinitionPage) 87 } 88 } 89 90 var r1 error 91 if rf, ok := ret.Get(1).(func(context.Context, []string, int, string) error); ok { 92 r1 = rf(ctx, bundleIDs, pageSize, cursor) 93 } else { 94 r1 = ret.Error(1) 95 } 96 97 return r0, r1 98 } 99 100 type mockConstructorTestingTNewEventService interface { 101 mock.TestingT 102 Cleanup(func()) 103 } 104 105 // NewEventService creates a new instance of EventService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 106 func NewEventService(t mockConstructorTestingTNewEventService) *EventService { 107 mock := &EventService{} 108 mock.Mock.Test(t) 109 110 t.Cleanup(func() { mock.AssertExpectations(t) }) 111 112 return mock 113 }