-
Notifications
You must be signed in to change notification settings - Fork 371
/
Copy pathclient.go
156 lines (132 loc) · 4.66 KB
/
client.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
// Copyright © 2025 Ory Corp
// SPDX-License-Identifier: Apache-2.0
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/ory/fosite (interfaces: Client)
//
// Generated by this command:
//
// mockgen -package internal -destination internal/client.go github.com/ory/fosite Client
//
// Package internal is a generated GoMock package.
package internal
import (
reflect "reflect"
fosite "github.com/ory/fosite"
gomock "go.uber.org/mock/gomock"
)
// MockClient is a mock of Client interface.
type MockClient struct {
ctrl *gomock.Controller
recorder *MockClientMockRecorder
isgomock struct{}
}
// MockClientMockRecorder is the mock recorder for MockClient.
type MockClientMockRecorder struct {
mock *MockClient
}
// NewMockClient creates a new mock instance.
func NewMockClient(ctrl *gomock.Controller) *MockClient {
mock := &MockClient{ctrl: ctrl}
mock.recorder = &MockClientMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockClient) EXPECT() *MockClientMockRecorder {
return m.recorder
}
// GetAudience mocks base method.
func (m *MockClient) GetAudience() fosite.Arguments {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetAudience")
ret0, _ := ret[0].(fosite.Arguments)
return ret0
}
// GetAudience indicates an expected call of GetAudience.
func (mr *MockClientMockRecorder) GetAudience() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAudience", reflect.TypeOf((*MockClient)(nil).GetAudience))
}
// GetGrantTypes mocks base method.
func (m *MockClient) GetGrantTypes() fosite.Arguments {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetGrantTypes")
ret0, _ := ret[0].(fosite.Arguments)
return ret0
}
// GetGrantTypes indicates an expected call of GetGrantTypes.
func (mr *MockClientMockRecorder) GetGrantTypes() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetGrantTypes", reflect.TypeOf((*MockClient)(nil).GetGrantTypes))
}
// GetHashedSecret mocks base method.
func (m *MockClient) GetHashedSecret() []byte {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetHashedSecret")
ret0, _ := ret[0].([]byte)
return ret0
}
// GetHashedSecret indicates an expected call of GetHashedSecret.
func (mr *MockClientMockRecorder) GetHashedSecret() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetHashedSecret", reflect.TypeOf((*MockClient)(nil).GetHashedSecret))
}
// GetID mocks base method.
func (m *MockClient) GetID() string {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetID")
ret0, _ := ret[0].(string)
return ret0
}
// GetID indicates an expected call of GetID.
func (mr *MockClientMockRecorder) GetID() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetID", reflect.TypeOf((*MockClient)(nil).GetID))
}
// GetRedirectURIs mocks base method.
func (m *MockClient) GetRedirectURIs() []string {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetRedirectURIs")
ret0, _ := ret[0].([]string)
return ret0
}
// GetRedirectURIs indicates an expected call of GetRedirectURIs.
func (mr *MockClientMockRecorder) GetRedirectURIs() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetRedirectURIs", reflect.TypeOf((*MockClient)(nil).GetRedirectURIs))
}
// GetResponseTypes mocks base method.
func (m *MockClient) GetResponseTypes() fosite.Arguments {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetResponseTypes")
ret0, _ := ret[0].(fosite.Arguments)
return ret0
}
// GetResponseTypes indicates an expected call of GetResponseTypes.
func (mr *MockClientMockRecorder) GetResponseTypes() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetResponseTypes", reflect.TypeOf((*MockClient)(nil).GetResponseTypes))
}
// GetScopes mocks base method.
func (m *MockClient) GetScopes() fosite.Arguments {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetScopes")
ret0, _ := ret[0].(fosite.Arguments)
return ret0
}
// GetScopes indicates an expected call of GetScopes.
func (mr *MockClientMockRecorder) GetScopes() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetScopes", reflect.TypeOf((*MockClient)(nil).GetScopes))
}
// IsPublic mocks base method.
func (m *MockClient) IsPublic() bool {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "IsPublic")
ret0, _ := ret[0].(bool)
return ret0
}
// IsPublic indicates an expected call of IsPublic.
func (mr *MockClientMockRecorder) IsPublic() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsPublic", reflect.TypeOf((*MockClient)(nil).IsPublic))
}