-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathnotifier_mock.go
137 lines (108 loc) · 3.87 KB
/
notifier_mock.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// Code generated by mockery. DO NOT EDIT.
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2025 Datadog, Inc.
package eventnotifier
import (
mock "github.com/stretchr/testify/mock"
client "sigs.k8s.io/controller-runtime/pkg/client"
types "github.com/DataDog/chaos-controller/eventnotifier/types"
v1 "k8s.io/api/core/v1"
)
// NotifierMock is an autogenerated mock type for the Notifier type
type NotifierMock struct {
mock.Mock
}
type NotifierMock_Expecter struct {
mock *mock.Mock
}
func (_m *NotifierMock) EXPECT() *NotifierMock_Expecter {
return &NotifierMock_Expecter{mock: &_m.Mock}
}
// GetNotifierName provides a mock function with no fields
func (_m *NotifierMock) GetNotifierName() string {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for GetNotifierName")
}
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// NotifierMock_GetNotifierName_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetNotifierName'
type NotifierMock_GetNotifierName_Call struct {
*mock.Call
}
// GetNotifierName is a helper method to define mock.On call
func (_e *NotifierMock_Expecter) GetNotifierName() *NotifierMock_GetNotifierName_Call {
return &NotifierMock_GetNotifierName_Call{Call: _e.mock.On("GetNotifierName")}
}
func (_c *NotifierMock_GetNotifierName_Call) Run(run func()) *NotifierMock_GetNotifierName_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *NotifierMock_GetNotifierName_Call) Return(_a0 string) *NotifierMock_GetNotifierName_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *NotifierMock_GetNotifierName_Call) RunAndReturn(run func() string) *NotifierMock_GetNotifierName_Call {
_c.Call.Return(run)
return _c
}
// Notify provides a mock function with given fields: _a0, _a1, _a2
func (_m *NotifierMock) Notify(_a0 client.Object, _a1 v1.Event, _a2 types.NotificationType) error {
ret := _m.Called(_a0, _a1, _a2)
if len(ret) == 0 {
panic("no return value specified for Notify")
}
var r0 error
if rf, ok := ret.Get(0).(func(client.Object, v1.Event, types.NotificationType) error); ok {
r0 = rf(_a0, _a1, _a2)
} else {
r0 = ret.Error(0)
}
return r0
}
// NotifierMock_Notify_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Notify'
type NotifierMock_Notify_Call struct {
*mock.Call
}
// Notify is a helper method to define mock.On call
// - _a0 client.Object
// - _a1 v1.Event
// - _a2 types.NotificationType
func (_e *NotifierMock_Expecter) Notify(_a0 interface{}, _a1 interface{}, _a2 interface{}) *NotifierMock_Notify_Call {
return &NotifierMock_Notify_Call{Call: _e.mock.On("Notify", _a0, _a1, _a2)}
}
func (_c *NotifierMock_Notify_Call) Run(run func(_a0 client.Object, _a1 v1.Event, _a2 types.NotificationType)) *NotifierMock_Notify_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(client.Object), args[1].(v1.Event), args[2].(types.NotificationType))
})
return _c
}
func (_c *NotifierMock_Notify_Call) Return(_a0 error) *NotifierMock_Notify_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *NotifierMock_Notify_Call) RunAndReturn(run func(client.Object, v1.Event, types.NotificationType) error) *NotifierMock_Notify_Call {
_c.Call.Return(run)
return _c
}
// NewNotifierMock creates a new instance of NotifierMock. 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 NewNotifierMock(t interface {
mock.TestingT
Cleanup(func())
}) *NotifierMock {
mock := &NotifierMock{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}