-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.go
99 lines (78 loc) · 2.35 KB
/
application.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
/*
Copyright IBM Corp. 2017 All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package config
import (
"github.com/hyperledger/fabric/common/channelconfig"
)
type MockApplication struct {
CapabilitiesRv channelconfig.ApplicationCapabilities
Acls map[string]string
}
func (m *MockApplication) Organizations() map[string]channelconfig.ApplicationOrg {
return nil
}
func (m *MockApplication) Capabilities() channelconfig.ApplicationCapabilities {
return m.CapabilitiesRv
}
func (m *MockApplication) PolicyRefForAPI(apiName string) string {
if m.Acls == nil {
return ""
}
return m.Acls[apiName]
}
// Returns the mock which itself is a provider
func (m *MockApplication) APIPolicyMapper() channelconfig.PolicyMapper {
return m
}
type MockApplicationCapabilities struct {
SupportedRv error
ForbidDuplicateTXIdInBlockRv bool
ACLsRv bool
PrivateChannelDataRv bool
CollectionUpgradeRv bool
V1_1ValidationRv bool
V1_2ValidationRv bool
MetadataLifecycleRv bool
KeyLevelEndorsementRv bool
V1_3ValidationRv bool
FabTokenRv bool
StorePvtDataOfInvalidTxRv bool
}
func (mac *MockApplicationCapabilities) Supported() error {
return mac.SupportedRv
}
func (mac *MockApplicationCapabilities) ForbidDuplicateTXIdInBlock() bool {
return mac.ForbidDuplicateTXIdInBlockRv
}
func (mac *MockApplicationCapabilities) ACLs() bool {
return mac.ACLsRv
}
func (mac *MockApplicationCapabilities) PrivateChannelData() bool {
return mac.PrivateChannelDataRv
}
func (mac *MockApplicationCapabilities) CollectionUpgrade() bool {
return mac.CollectionUpgradeRv
}
func (mac *MockApplicationCapabilities) V1_1Validation() bool {
return mac.V1_1ValidationRv
}
func (mac *MockApplicationCapabilities) V1_2Validation() bool {
return mac.V1_2ValidationRv
}
func (mac *MockApplicationCapabilities) MetadataLifecycle() bool {
return mac.MetadataLifecycleRv
}
func (mac *MockApplicationCapabilities) KeyLevelEndorsement() bool {
return mac.KeyLevelEndorsementRv
}
func (mac *MockApplicationCapabilities) V1_3Validation() bool {
return mac.V1_3ValidationRv
}
func (mac *MockApplicationCapabilities) FabToken() bool {
return mac.FabTokenRv
}
func (mac *MockApplicationCapabilities) StorePvtDataOfInvalidTx() bool {
return mac.StorePvtDataOfInvalidTxRv
}