Skip to content

Commit 965ed1f

Browse files
authoredFeb 12, 2020
[FAB-17498] Beta Images removal, test test-network (#121)
Change 2.0.0-beta to 2.0.0 when CommercialPaper uses the test network Add test network to the azure pipelines Correct test network envvar script Signed-off-by: Matthew B White <whitemat@uk.ibm.com>
1 parent 403019e commit 965ed1f

File tree

8 files changed

+41
-11
lines changed

8 files changed

+41
-11
lines changed
 

‎ci/azure-pipelines.yml

+12
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ jobs:
2121
- template: install-fabric.yml
2222
- template: fabcar-go.yml
2323

24+
- job: test_network
25+
displayName: Start the test network
26+
pool:
27+
vmImage: ubuntu-18.04
28+
dependsOn: []
29+
timeoutInMinutes: 60
30+
steps:
31+
- template: install-deps.yml
32+
- template: install-fabric.yml
33+
- template: testnetwork.yml
34+
2435
- job: fabcar_java
2536
displayName: FabCar (Java)
2637
pool:
@@ -75,6 +86,7 @@ jobs:
7586
- template: install-deps.yml
7687
- template: install-fabric.yml
7788
- template: commercialpaper-java.yml
89+
7890
- job: commercialpaper_go
7991
displayName: CommercialPaper (Go)
8092
pool:

‎ci/commercialpaper-go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ steps:
2222
ls -l /usr/local/bin/peer
2323
sudo tar xzvf /tmp/hyperledger-fabric-linux-amd64-latest.tar.gz -C ..
2424
./network.sh down
25-
./network.sh up createChannel -s couchdb -i 2.0.0-beta
25+
./network.sh up createChannel -s couchdb -i 2.0.0
2626
2727
# Copy the connection profiles so they are in the correct organizations.
2828
cp "./organizations/peerOrganizations/org1.example.com/connection-org1.yaml" "../commercial-paper/organization/digibank/gateway/"

‎ci/commercialpaper-java.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ steps:
1717
ls -l /usr/local/bin/peer
1818
sudo tar xzvf /tmp/hyperledger-fabric-linux-amd64-latest.tar.gz -C ..
1919
./network.sh down
20-
./network.sh up createChannel -s couchdb -i 2.0.0-beta
20+
./network.sh up createChannel -s couchdb -i 2.0.0
2121
2222
# Copy the connection profiles so they are in the correct organizations.
2323
cp "./organizations/peerOrganizations/org1.example.com/connection-org1.yaml" "../commercial-paper/organization/digibank/gateway/"

‎ci/commercialpaper-javascript.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ steps:
88
ls -l /usr/local/bin/peer
99
sudo tar xzvf /tmp/hyperledger-fabric-linux-amd64-latest.tar.gz -C ..
1010
./network.sh down
11-
./network.sh up createChannel -s couchdb -i 2.0.0-beta
11+
./network.sh up createChannel -s couchdb -i 2.0.0
1212
1313
# Copy the connection profiles so they are in the correct organizations.
1414
cp "./organizations/peerOrganizations/org1.example.com/connection-org1.yaml" "../commercial-paper/organization/digibank/gateway/"

‎ci/testnetwork.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
4+
5+
steps:
6+
- script: |
7+
sudo tar xzvf /tmp/hyperledger-fabric-linux-amd64-latest.tar.gz -C ..
8+
./network.sh down
9+
./network.sh up createChannel -s couchdb -i 2.0.0
10+
./network.sh deployCC -l javascript
11+
12+
workingDirectory: test-network
13+
displayName: Start up test network
14+
env:
15+
FABRIC_CFG_PATH: /usr/local/config

‎commercial-paper/organization/digibank/digibank.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2121
cd "${DIR}/../../../test-network"
2222
env | sort > /tmp/env.orig
2323

24-
ORG="1"
24+
OVERRIDE_ORG="1"
2525
. ./scripts/envVar.sh
2626

2727
parsePeerConnectionParameters 1 2

‎commercial-paper/organization/magnetocorp/magnetocorp.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2121
cd "${DIR}/../../../test-network"
2222
env | sort > /tmp/env.orig
2323

24-
ORG="2"
24+
OVERRIDE_ORG="2"
2525
. ./scripts/envVar.sh
2626

2727

‎test-network/scripts/envVar.sh

+9-6
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,25 @@ setOrdererGlobals() {
2121

2222
# Set environment variables for the peer org
2323
setGlobals() {
24-
if [ -z "$ORG" ]; then
25-
ORG=$1
24+
local USING_ORG=""
25+
if [ -z "$OVERRIDE_ORG" ]; then
26+
USING_ORG=$1
27+
else
28+
USING_ORG="${OVERRIDE_ORG}"
2629
fi
27-
28-
if [ $ORG -eq 1 ]; then
30+
echo "Using organization ${USING_ORG}"
31+
if [ $USING_ORG -eq 1 ]; then
2932
export CORE_PEER_LOCALMSPID="Org1MSP"
3033
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG1_CA
3134
export CORE_PEER_MSPCONFIGPATH=${PWD}/organizations/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
3235
export CORE_PEER_ADDRESS=localhost:7051
33-
elif [ $ORG -eq 2 ]; then
36+
elif [ $USING_ORG -eq 2 ]; then
3437
export CORE_PEER_LOCALMSPID="Org2MSP"
3538
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG2_CA
3639
export CORE_PEER_MSPCONFIGPATH=${PWD}/organizations/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp
3740
export CORE_PEER_ADDRESS=localhost:9051
3841

39-
elif [ $ORG -eq 3 ]; then
42+
elif [ $USING_ORG -eq 3 ]; then
4043
export CORE_PEER_LOCALMSPID="Org3MSP"
4144
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG3_CA
4245
export CORE_PEER_MSPCONFIGPATH=${PWD}/organizations/peerOrganizations/org3.example.com/users/Admin@org3.example.com/msp

0 commit comments

Comments
 (0)
Please sign in to comment.