forked from mysteriumnetwork/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validator_mocks.go
75 lines (65 loc) · 2.19 KB
/
validator_mocks.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
/*
* Copyright (C) 2018 The "MysteriumNetwork/node" Authors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package session
import (
"github.com/mysteriumnetwork/node/identity"
"github.com/mysteriumnetwork/node/session"
)
func mockValidator(identityToExtract identity.Identity) *Validator {
mockExtractor := &mockIdentityExtractor{
identityToExtract,
nil,
}
mockSessions := &mockSessions{
session.Session{},
false,
}
return NewValidator(mockSessions, mockExtractor)
}
func mockValidatorWithSession(identityToExtract identity.Identity, sessionInstance session.Session) *Validator {
mockExtractor := &mockIdentityExtractor{
identityToExtract,
nil,
}
mockSessions := &mockSessions{
sessionInstance,
true,
}
return NewValidator(mockSessions, mockExtractor)
}
// mockIdentityExtractor mocked identity extractor
type mockIdentityExtractor struct {
OnExtractReturnIdentity identity.Identity
OnExtractReturnError error
}
// Extract returns mocked identity
func (extractor *mockIdentityExtractor) Extract(message []byte, signature identity.Signature) (identity.Identity, error) {
return extractor.OnExtractReturnIdentity, extractor.OnExtractReturnError
}
type mockSessions struct {
OnFindReturnSession session.Session
OnFindReturnSuccess bool
}
func (sessions *mockSessions) Add(sessionInstance session.Session) {
}
func (sessions *mockSessions) Find(session.ID) (session.Session, bool) {
return sessions.OnFindReturnSession, sessions.OnFindReturnSuccess
}
func (sessions *mockSessions) Remove(session.ID) {
sessions.OnFindReturnSession = session.Session{}
sessions.OnFindReturnSuccess = false
}