forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mocks.go
178 lines (140 loc) · 4.77 KB
/
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
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
176
177
178
/*
Copyright IBM Corp. 2017 All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package mocks
import (
"bytes"
"errors"
"fmt"
"time"
mockpolicies "github.com/hyperledger/fabric/common/mocks/policies"
"github.com/hyperledger/fabric/common/policies"
"github.com/hyperledger/fabric/msp"
"github.com/hyperledger/fabric/protos/common"
mspproto "github.com/hyperledger/fabric/protos/msp"
"github.com/stretchr/testify/mock"
)
type ChannelPolicyManagerGetter struct{}
func (c *ChannelPolicyManagerGetter) Manager(channelID string) (policies.Manager, bool) {
return &mockpolicies.Manager{Policy: &mockpolicies.Policy{Err: nil}}, false
}
type ChannelPolicyManagerGetterWithManager struct {
Managers map[string]policies.Manager
}
func (c *ChannelPolicyManagerGetterWithManager) Manager(channelID string) (policies.Manager, bool) {
return c.Managers[channelID], true
}
type ChannelPolicyManager struct {
Policy policies.Policy
}
func (m *ChannelPolicyManager) GetPolicy(id string) (policies.Policy, bool) {
return m.Policy, true
}
func (m *ChannelPolicyManager) Manager(path []string) (policies.Manager, bool) {
panic("Not implemented")
}
type Policy struct {
Deserializer msp.IdentityDeserializer
}
// Evaluate takes a set of SignedData and evaluates whether this set of signatures satisfies the policy
func (m *Policy) Evaluate(signatureSet []*common.SignedData) error {
fmt.Printf("Evaluate [%s], [% x], [% x]\n", string(signatureSet[0].Identity), string(signatureSet[0].Data), string(signatureSet[0].Signature))
identity, err := m.Deserializer.DeserializeIdentity(signatureSet[0].Identity)
if err != nil {
return err
}
return identity.Verify(signatureSet[0].Data, signatureSet[0].Signature)
}
type DeserializersManager struct {
LocalDeserializer msp.IdentityDeserializer
ChannelDeserializers map[string]msp.IdentityDeserializer
}
func (m *DeserializersManager) Deserialize(raw []byte) (*mspproto.SerializedIdentity, error) {
return &mspproto.SerializedIdentity{Mspid: "mock", IdBytes: raw}, nil
}
func (m *DeserializersManager) GetLocalMSPIdentifier() string {
return "mock"
}
func (m *DeserializersManager) GetLocalDeserializer() msp.IdentityDeserializer {
return m.LocalDeserializer
}
func (m *DeserializersManager) GetChannelDeserializers() map[string]msp.IdentityDeserializer {
return m.ChannelDeserializers
}
type IdentityDeserializerWithExpiration struct {
*IdentityDeserializer
Expiration time.Time
}
func (d *IdentityDeserializerWithExpiration) DeserializeIdentity(serializedIdentity []byte) (msp.Identity, error) {
id, err := d.IdentityDeserializer.DeserializeIdentity(serializedIdentity)
if err != nil {
return nil, err
}
id.(*Identity).expirationDate = d.Expiration
return id, nil
}
type IdentityDeserializer struct {
Identity []byte
Msg []byte
mock.Mock
}
func (d *IdentityDeserializer) DeserializeIdentity(serializedIdentity []byte) (msp.Identity, error) {
fmt.Printf("id : [%s], [%s]\n", string(serializedIdentity), string(d.Identity))
if bytes.Equal(d.Identity, serializedIdentity) {
fmt.Printf("GOT : [%s], [%s]\n", string(serializedIdentity), string(d.Identity))
return &Identity{Msg: d.Msg}, nil
}
return nil, errors.New("Invalid Identity")
}
func (d *IdentityDeserializer) IsWellFormed(identity *mspproto.SerializedIdentity) error {
if len(d.ExpectedCalls) == 0 {
return nil
}
return d.Called(identity).Error(0)
}
type Identity struct {
expirationDate time.Time
Msg []byte
}
func (id *Identity) Anonymous() bool {
panic("implement me")
}
func (id *Identity) ExpiresAt() time.Time {
return id.expirationDate
}
func (id *Identity) SatisfiesPrincipal(*mspproto.MSPPrincipal) error {
return nil
}
func (id *Identity) GetIdentifier() *msp.IdentityIdentifier {
return &msp.IdentityIdentifier{Mspid: "mock", Id: "mock"}
}
func (id *Identity) GetMSPIdentifier() string {
return "mock"
}
func (id *Identity) Validate() error {
return nil
}
func (id *Identity) GetOrganizationalUnits() []*msp.OUIdentifier {
return nil
}
func (id *Identity) Verify(msg []byte, sig []byte) error {
fmt.Printf("VERIFY [% x], [% x], [% x]\n", string(id.Msg), string(msg), string(sig))
if bytes.Equal(id.Msg, msg) {
if bytes.Equal(msg, sig) {
return nil
}
}
return errors.New("Invalid Signature")
}
func (id *Identity) Serialize() ([]byte, error) {
return []byte("cert"), nil
}