forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testenv.go
49 lines (41 loc) · 1.65 KB
/
testenv.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. 2017 All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package chainmgmt
// chainInitOp is a type that an experiment uses to specify how the chains
// should be initialized at the beginning of the experiment. See below the
// enum values for this type
type chainInitOp uint8
const (
// ChainInitOpCreate indicates that the chains should be creates afresh
ChainInitOpCreate chainInitOp = iota + 1
// ChainInitOpOpen indicates that the existing chains should be opened
ChainInitOpOpen
)
// TestEnv is a high level struct that the experiments are expeted to use as a starting point.
// See one of the Benchmark tests for the intended usage
type TestEnv struct {
mgr *chainsMgr
}
// InitTestEnv initialize TestEnv with given configurations. The initialization cuases
// creation (or openning of existing) chains and the block creation and commit go routines
// for each of the chains. For configurations options, see comments on specific configuration type
func InitTestEnv(mgrConf *ChainMgrConf, batchConf *BatchConf, initOperation chainInitOp) *TestEnv {
mgr := newChainsMgr(mgrConf, batchConf, initOperation)
chains := mgr.createOrOpenChains()
for _, chain := range chains {
chain.startBlockPollingAndCommit()
}
return &TestEnv{mgr}
}
// Chains returns handle to all the chains
func (env TestEnv) Chains() []*Chain {
return env.mgr.chains()
}
// WaitForTestCompletion waits till all the transactions are committed
// An experiment after launching all the goroutine should call this
// so that the process is alive till all the goroutines complete
func (env TestEnv) WaitForTestCompletion() {
env.mgr.waitForChainsToExhaustAllBlocks()
}