forked from tw-bc-group/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
49 lines (40 loc) · 1.03 KB
/
config.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package msptesttools
import (
"github.com/hyperledger/fabric/common/util"
"github.com/hyperledger/fabric/core/config/configtest"
"github.com/hyperledger/fabric/msp"
"github.com/hyperledger/fabric/msp/mgmt"
)
// LoadTestMSPSetup sets up the local MSP
// and a chain MSP for the default chain
func LoadMSPSetupForTesting() error {
dir, err := configtest.GetDevMspDir()
if err != nil {
return err
}
conf, err := msp.GetLocalMspConfig(dir, nil, "SampleOrg")
if err != nil {
return err
}
err = mgmt.GetLocalMSP().Setup(conf)
if err != nil {
return err
}
err = mgmt.GetManagerForChain(util.GetTestChainID()).Setup([]msp.MSP{mgmt.GetLocalMSP()})
if err != nil {
return err
}
return nil
}
// Loads the development local MSP for use in testing. Not valid for production/runtime context
func LoadDevMsp() error {
mspDir, err := configtest.GetDevMspDir()
if err != nil {
return err
}
return mgmt.LoadLocalMsp(mspDir, nil, "SampleOrg")
}