forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
42 lines (34 loc) · 1009 Bytes
/
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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package msptesttools
import (
"github.com/hyperledger/fabric/bccsp/factory"
"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 := configtest.GetDevMspDir()
conf, err := msp.GetLocalMspConfig(dir, nil, "SampleOrg")
if err != nil {
return err
}
err = mgmt.GetLocalMSP(factory.GetDefault()).Setup(conf)
if err != nil {
return err
}
err = mgmt.GetManagerForChain("testchannelid").Setup([]msp.MSP{mgmt.GetLocalMSP(factory.GetDefault())})
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 := configtest.GetDevMspDir()
return mgmt.LoadLocalMsp(mspDir, nil, "SampleOrg")
}