You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changed the AnchorPeer port to 7051 as it shares
the peer channel.
Now set CORE_PEER_TSL_ROOTCERT_FILE to signing orgs
cert for the signer for the peer.
Use RSA based keys for TLS certs to enable python to
golang TLS connections without handshake failures.
Change-Id: I94d653e9d9e666f90665a62bb5bbbfd376bc9b23
Signed-off-by: jeffgarratt <[email protected]>
Copy file name to clipboardexpand all lines: bddtests/features/bootstrap.feature
+6-6
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Feature: Bootstrap
11
11
As a blockchain entrepreneur
12
12
I want to bootstrap a new blockchain network
13
13
14
-
#@doNotDecompose
14
+
@doNotDecompose
15
15
@generateDocs
16
16
Scenario Outline: Bootstrap a development network with 4 peers (2 orgs) and 1 orderer (1 org), each having a single independent root of trust (No fabric-ca, just openssl)
17
17
#creates 1 self-signed key/cert pair per orderer organization
@@ -118,7 +118,7 @@ Feature: Bootstrap
118
118
119
119
And the user "dev0Org0" creates a ConfigUpdate Tx "configUpdateTx1" using cert alias "dev0Org0App1" using signed ConfigUpdateEnvelope "createChannelConfigUpdate1"
120
120
121
-
And the user "dev0Org0" broadcasts ConfigUpdate Tx "configUpdateTx1" to orderer "orderer0" to create channel "com.acme.blockchain.jdoe.Channel1"
121
+
And the user "dev0Org0"using cert alias "dev0Org0App1"broadcasts ConfigUpdate Tx "configUpdateTx1" to orderer "orderer0" to create channel "com.acme.blockchain.jdoe.Channel1"
122
122
123
123
# Sleep as the deliver takes a bit to have the first block ready
124
124
And I wait "2" seconds
@@ -161,7 +161,7 @@ Feature: Bootstrap
161
161
# Under the covers, create a deployment spec, etc.
162
162
And user "dev0Org0" using cert alias "dev0Org0App1" creates a install proposal "installProposal1" for channel "com.acme.blockchain.jdoe.Channel1" using chaincode spec "cc_spec"
163
163
164
-
And user "dev0Org0" sends proposal "installProposal1" to endorsers with timeout of "30" seconds with proposal responses "installProposalResponses":
164
+
And user "dev0Org0"using cert alias "dev0Org0App1"sends proposal "installProposal1" to endorsers with timeout of "30" seconds with proposal responses "installProposalResponses":
165
165
| Endorser |
166
166
| peer0 |
167
167
| peer2 |
@@ -174,7 +174,7 @@ Feature: Bootstrap
174
174
# Under the covers, create a deployment spec, etc.
175
175
When user "dev0Org0" using cert alias "dev0Org0App1" creates a instantiate proposal "instantiateProposal1" for channel "com.acme.blockchain.jdoe.Channel1" using chaincode spec "cc_spec"
176
176
177
-
And user "dev0Org0" sends proposal "instantiateProposal1" to endorsers with timeout of "90" seconds with proposal responses "instantiateProposalResponses":
177
+
And user "dev0Org0"using cert alias "dev0Org0App1"sends proposal "instantiateProposal1" to endorsers with timeout of "30" seconds with proposal responses "instantiateProposalResponses":
178
178
| Endorser |
179
179
| peer0 |
180
180
| peer2 |
@@ -215,7 +215,7 @@ Feature: Bootstrap
215
215
# Under the covers, create a deployment spec, etc.
216
216
And user "dev0Org0" using cert alias "dev0Org0App1" creates a proposal "queryProposal1" for channel "com.acme.blockchain.jdoe.Channel1" using chaincode spec "querySpec1"
217
217
218
-
And user "dev0Org0" sends proposal "queryProposal1" to endorsers with timeout of "30" seconds with proposal responses "queryProposal1Responses":
218
+
And user "dev0Org0"using cert alias "dev0Org0App1"sends proposal "queryProposal1" to endorsers with timeout of "30" seconds with proposal responses "queryProposal1Responses":
219
219
| Endorser |
220
220
| peer0 |
221
221
| peer2 |
@@ -239,7 +239,7 @@ Feature: Bootstrap
239
239
# Under the covers, create a deployment spec, etc.
240
240
And user "dev0Org0" using cert alias "dev0Org0App1" creates a proposal "invokeProposal1" for channel "com.acme.blockchain.jdoe.Channel1" using chaincode spec "invocationSpec1"
241
241
242
-
And user "dev0Org0" sends proposal "invokeProposal1" to endorsers with timeout of "30" seconds with proposal responses "invokeProposal1Responses":
242
+
And user "dev0Org0"using cert alias "dev0Org0App1"sends proposal "invokeProposal1" to endorsers with timeout of "30" seconds with proposal responses "invokeProposal1Responses":
@given(u'the user "{userName}" using cert alias "{certAlias}" broadcasts ConfigUpdate Tx "{configTxName}" to orderer "{orderer}" to create channel "{channelId}"')
0 commit comments