forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mocks.go
139 lines (109 loc) · 3.6 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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package mocks
import (
"bytes"
"errors"
"fmt"
"time"
mspproto "github.com/hyperledger/fabric-protos-go/msp"
"github.com/hyperledger/fabric/common/policies"
"github.com/hyperledger/fabric/msp"
"github.com/hyperledger/fabric/protoutil"
)
type MockChannelPolicyManagerGetter struct {
Managers map[string]policies.Manager
}
func (c *MockChannelPolicyManagerGetter) Manager(channelID string) policies.Manager {
return c.Managers[channelID]
}
type MockChannelPolicyManager struct {
MockPolicy policies.Policy
}
func (m *MockChannelPolicyManager) GetPolicy(id string) (policies.Policy, bool) {
return m.MockPolicy, true
}
func (m *MockChannelPolicyManager) Manager(path []string) (policies.Manager, bool) {
panic("Not implemented")
}
type MockPolicy struct {
Deserializer msp.IdentityDeserializer
}
// EvaluateSignedData takes a set of SignedData and evaluates whether this set of signatures satisfies the policy
func (m *MockPolicy) EvaluateSignedData(signatureSet []*protoutil.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)
}
// EvaluateIdentities takes an array of identities and evaluates whether
// they satisfy the policy
func (m *MockPolicy) EvaluateIdentities(identities []msp.Identity) error {
return nil
}
type MockIdentityDeserializer struct {
Identity []byte
Msg []byte
}
func (d *MockIdentityDeserializer) DeserializeIdentity(serializedIdentity []byte) (msp.Identity, error) {
fmt.Printf("[DeserializeIdentity] 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 &MockIdentity{identity: d.Identity, msg: d.Msg}, nil
}
return nil, errors.New("Invalid Identity")
}
func (d *MockIdentityDeserializer) IsWellFormed(_ *mspproto.SerializedIdentity) error {
return nil
}
type MockIdentity struct {
identity []byte
msg []byte
}
func (id *MockIdentity) Anonymous() bool {
panic("implement me")
}
func (id *MockIdentity) SatisfiesPrincipal(p *mspproto.MSPPrincipal) error {
fmt.Printf("[SatisfiesPrincipal] id : [%s], [%s]\n", string(id.identity), string(p.Principal))
if !bytes.Equal(id.identity, p.Principal) {
return fmt.Errorf("Different identities [% x]!=[% x]", id.identity, p.Principal)
}
return nil
}
func (id *MockIdentity) ExpiresAt() time.Time {
return time.Time{}
}
func (id *MockIdentity) GetIdentifier() *msp.IdentityIdentifier {
return &msp.IdentityIdentifier{Mspid: "mock", Id: "mock"}
}
func (id *MockIdentity) GetMSPIdentifier() string {
return "mock"
}
func (id *MockIdentity) Validate() error {
return nil
}
func (id *MockIdentity) GetOrganizationalUnits() []*msp.OUIdentifier {
return nil
}
func (id *MockIdentity) 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 *MockIdentity) Serialize() ([]byte, error) {
return []byte("cert"), nil
}
type MockMSPPrincipalGetter struct {
Principal []byte
}
func (m *MockMSPPrincipalGetter) Get(role string) (*mspproto.MSPPrincipal, error) {
return &mspproto.MSPPrincipal{Principal: m.Principal}, nil
}