forked from grafana/grafana
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmock_service.go
175 lines (143 loc) · 4.65 KB
/
mock_service.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// Code generated by mockery v2.37.1. DO NOT EDIT.
package fakes
import (
context "context"
secrets "github.com/grafana/grafana/pkg/services/secrets"
mock "github.com/stretchr/testify/mock"
)
// MockService is an autogenerated mock type for the Service type
type MockService struct {
mock.Mock
}
// Decrypt provides a mock function with given fields: ctx, payload
func (_m *MockService) Decrypt(ctx context.Context, payload []byte) ([]byte, error) {
ret := _m.Called(ctx, payload)
var r0 []byte
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, []byte) ([]byte, error)); ok {
return rf(ctx, payload)
}
if rf, ok := ret.Get(0).(func(context.Context, []byte) []byte); ok {
r0 = rf(ctx, payload)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]byte)
}
}
if rf, ok := ret.Get(1).(func(context.Context, []byte) error); ok {
r1 = rf(ctx, payload)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DecryptJsonData provides a mock function with given fields: ctx, sjd
func (_m *MockService) DecryptJsonData(ctx context.Context, sjd map[string][]byte) (map[string]string, error) {
ret := _m.Called(ctx, sjd)
var r0 map[string]string
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, map[string][]byte) (map[string]string, error)); ok {
return rf(ctx, sjd)
}
if rf, ok := ret.Get(0).(func(context.Context, map[string][]byte) map[string]string); ok {
r0 = rf(ctx, sjd)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]string)
}
}
if rf, ok := ret.Get(1).(func(context.Context, map[string][]byte) error); ok {
r1 = rf(ctx, sjd)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Encrypt provides a mock function with given fields: ctx, payload, opt
func (_m *MockService) Encrypt(ctx context.Context, payload []byte, opt secrets.EncryptionOptions) ([]byte, error) {
ret := _m.Called(ctx, payload, opt)
var r0 []byte
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, []byte, secrets.EncryptionOptions) ([]byte, error)); ok {
return rf(ctx, payload, opt)
}
if rf, ok := ret.Get(0).(func(context.Context, []byte, secrets.EncryptionOptions) []byte); ok {
r0 = rf(ctx, payload, opt)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]byte)
}
}
if rf, ok := ret.Get(1).(func(context.Context, []byte, secrets.EncryptionOptions) error); ok {
r1 = rf(ctx, payload, opt)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// EncryptJsonData provides a mock function with given fields: ctx, kv, opt
func (_m *MockService) EncryptJsonData(ctx context.Context, kv map[string]string, opt secrets.EncryptionOptions) (map[string][]byte, error) {
ret := _m.Called(ctx, kv, opt)
var r0 map[string][]byte
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, map[string]string, secrets.EncryptionOptions) (map[string][]byte, error)); ok {
return rf(ctx, kv, opt)
}
if rf, ok := ret.Get(0).(func(context.Context, map[string]string, secrets.EncryptionOptions) map[string][]byte); ok {
r0 = rf(ctx, kv, opt)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string][]byte)
}
}
if rf, ok := ret.Get(1).(func(context.Context, map[string]string, secrets.EncryptionOptions) error); ok {
r1 = rf(ctx, kv, opt)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetDecryptedValue provides a mock function with given fields: ctx, sjd, key, fallback
func (_m *MockService) GetDecryptedValue(ctx context.Context, sjd map[string][]byte, key string, fallback string) string {
ret := _m.Called(ctx, sjd, key, fallback)
var r0 string
if rf, ok := ret.Get(0).(func(context.Context, map[string][]byte, string, string) string); ok {
r0 = rf(ctx, sjd, key, fallback)
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// ReEncryptDataKeys provides a mock function with given fields: ctx
func (_m *MockService) ReEncryptDataKeys(ctx context.Context) error {
ret := _m.Called(ctx)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context) error); ok {
r0 = rf(ctx)
} else {
r0 = ret.Error(0)
}
return r0
}
// RotateDataKeys provides a mock function with given fields: ctx
func (_m *MockService) RotateDataKeys(ctx context.Context) error {
ret := _m.Called(ctx)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context) error); ok {
r0 = rf(ctx)
} else {
r0 = ret.Error(0)
}
return r0
}
// NewMockService creates a new instance of MockService. 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 NewMockService(t interface {
mock.TestingT
Cleanup(func())
}) *MockService {
mock := &MockService{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}