-
Notifications
You must be signed in to change notification settings - Fork 287
/
oauth_mock.go
81 lines (68 loc) · 2.33 KB
/
oauth_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
// Code generated by MockGen. DO NOT EDIT.
// Source: oauth.go
// Package mocks is a generated GoMock package.
package mocks
import (
reflect "reflect"
oauth "d7y.io/dragonfly/v2/manager/auth/oauth"
gomock "github.com/golang/mock/gomock"
oauth2 "golang.org/x/oauth2"
)
// MockOauth is a mock of Oauth interface.
type MockOauth struct {
ctrl *gomock.Controller
recorder *MockOauthMockRecorder
}
// MockOauthMockRecorder is the mock recorder for MockOauth.
type MockOauthMockRecorder struct {
mock *MockOauth
}
// NewMockOauth creates a new mock instance.
func NewMockOauth(ctrl *gomock.Controller) *MockOauth {
mock := &MockOauth{ctrl: ctrl}
mock.recorder = &MockOauthMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockOauth) EXPECT() *MockOauthMockRecorder {
return m.recorder
}
// AuthCodeURL mocks base method.
func (m *MockOauth) AuthCodeURL() (string, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AuthCodeURL")
ret0, _ := ret[0].(string)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AuthCodeURL indicates an expected call of AuthCodeURL.
func (mr *MockOauthMockRecorder) AuthCodeURL() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AuthCodeURL", reflect.TypeOf((*MockOauth)(nil).AuthCodeURL))
}
// Exchange mocks base method.
func (m *MockOauth) Exchange(arg0 string) (*oauth2.Token, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Exchange", arg0)
ret0, _ := ret[0].(*oauth2.Token)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Exchange indicates an expected call of Exchange.
func (mr *MockOauthMockRecorder) Exchange(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Exchange", reflect.TypeOf((*MockOauth)(nil).Exchange), arg0)
}
// GetUser mocks base method.
func (m *MockOauth) GetUser(arg0 *oauth2.Token) (*oauth.User, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetUser", arg0)
ret0, _ := ret[0].(*oauth.User)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetUser indicates an expected call of GetUser.
func (mr *MockOauthMockRecorder) GetUser(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetUser", reflect.TypeOf((*MockOauth)(nil).GetUser), arg0)
}