-
Notifications
You must be signed in to change notification settings - Fork 0
/
testAPIs.sh
executable file
·288 lines (259 loc) · 7 KB
/
testAPIs.sh
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#!/bin/bash
#
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
jq --version > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Please Install 'jq' https://stedolan.github.io/jq/ to execute this script"
echo
exit 1
fi
starttime=$(date +%s)
# Print the usage message
function printHelp () {
echo "Usage: "
echo " ./testAPIs.sh -l golang|node"
echo " -l <language> - chaincode language (defaults to \"golang\")"
}
# Language defaults to "golang"
LANGUAGE="golang"
# Parse commandline args
while getopts "h?l:" opt; do
case "$opt" in
h|\?)
printHelp
exit 0
;;
l) LANGUAGE=$OPTARG
;;
esac
done
##set chaincode path
function setChaincodePath(){
LANGUAGE=`echo "$LANGUAGE" | tr '[:upper:]' '[:lower:]'`
case "$LANGUAGE" in
"golang")
CC_SRC_PATH="chaincode"
;;
"node")
CC_SRC_PATH="$PWD/chaincode"
;;
*) printf "\n ------ Language $LANGUAGE is not supported yet ------\n"$
exit 1
esac
}
setChaincodePath
# #---------Enroll Users----------------
# #---------Start-----------------------
echo "POST request Enroll on Police ..."
echo
POLICE_TOKEN=$(curl -s -X POST \
http://localhost:4000/users \
-H "content-type: application/x-www-form-urlencoded" \
-d 'username=Jim&orgName=Police')
echo $POLICE_TOKEN
POLICE_TOKEN=$(echo $POLICE_TOKEN | jq ".token" | sed "s/\"//g")
echo
echo "Police token is $POLICE_TOKEN"
echo
echo "POST request Enroll on Forensics ..."
echo
FORENSICS_TOKEN=$(curl -s -X POST \
http://localhost:4000/users \
-H "content-type: application/x-www-form-urlencoded" \
-d 'username=Jim&orgName=Forensics')
echo $FORENSICS_TOKEN
FORENSICS_TOKEN=$(echo $FORENSICS_TOKEN | jq ".token" | sed "s/\"//g")
echo
echo "Forensics token is $FORENSICS_TOKEN"
echo
echo
echo "POST request Enroll on Lawyers ..."
echo
LAWYERS_TOKEN=$(curl -s -X POST \
http://localhost:4000/users \
-H "content-type: application/x-www-form-urlencoded" \
-d 'username=Jim&orgName=Lawyers')
echo $LAWYERS_TOKEN
LAWYERS_TOKEN=$(echo $LAWYERS_TOKEN | jq ".token" | sed "s/\"//g")
echo
echo "Lawyers token is $LAWYERS_TOKEN"
echo
echo
echo "POST request Enroll on Court ..."
echo
COURT_TOKEN=$(curl -s -X POST \
http://localhost:4000/users \
-H "content-type: application/x-www-form-urlencoded" \
-d 'username=Jim&orgName=Court')
echo $COURT_TOKEN
COURT_TOKEN=$(echo $COURT_TOKEN | jq ".token" | sed "s/\"//g")
echo
echo "Court token is $COURT_TOKEN"
echo
echo
#---------Enroll Users----------------
#---------End-------------------------
#---------Create Channel--------------
#---------Start-----------------------
echo "POST request Create channel ..."
echo
curl -s -X POST \
http://localhost:4000/channels \
-H "authorization: Bearer $POLICE_TOKEN" \
-H "content-type: application/json" \
-d '{
"channelName":"mychannel",
"channelConfigPath":"../channel-artifacts/mychannel.tx"
}'
echo
echo
#---------Create Channel--------------
#---------End-------------------------
#---------Join Channel----------------
#---------Start-----------------------
sleep 5
echo "POST request Join channel on Police"
echo
curl -s -X POST \
http://localhost:4000/channels/mychannel/peers \
-H "authorization: Bearer $POLICE_TOKEN" \
-H "content-type: application/json" \
-d '{
"peers": ["peer0.police.example.com","peer1.police.example.com"]
}'
echo
echo
echo "POST request Join channel on Forensics"
echo
curl -s -X POST \
http://localhost:4000/channels/mychannel/peers \
-H "authorization: Bearer $FORENSICS_TOKEN" \
-H "content-type: application/json" \
-d '{
"peers": ["peer0.forensics.example.com","peer1.forensics.example.com"]
}'
echo
echo
echo "POST request Join channel on Lawyers"
echo
curl -s -X POST \
http://localhost:4000/channels/mychannel/peers \
-H "authorization: Bearer $LAWYERS_TOKEN" \
-H "content-type: application/json" \
-d '{
"peers": ["peer0.lawyers.example.com","peer1.lawyers.example.com"]
}'
echo
echo
echo "POST request Join channel on Court"
echo
curl -s -X POST \
http://localhost:4000/channels/mychannel/peers \
-H "authorization: Bearer $COURT_TOKEN" \
-H "content-type: application/json" \
-d '{
"peers": ["peer0.court.example.com","peer1.court.example.com"]
}'
echo
echo
#---------Join Channel----------------
#---------End-------------------------
#---------Install Channel-------------
#---------Start-----------------------
echo "POST Install chaincode on Police"
echo
curl -s -X POST \
http://localhost:4000/chaincodes \
-H "authorization: Bearer $POLICE_TOKEN" \
-H "content-type: application/json" \
-d "{
\"peers\": [\"peer0.police.example.com\",\"peer1.police.example.com\"],
\"chaincodeName\":\"mycc\",
\"chaincodePath\":\"$CC_SRC_PATH\",
\"chaincodeType\": \"$LANGUAGE\",
\"chaincodeVersion\":\"v2\"
}"
echo
echo
echo "POST Install chaincode on Forensics"
echo
curl -s -X POST \
http://localhost:4000/chaincodes \
-H "authorization: Bearer $FORENSICS_TOKEN" \
-H "content-type: application/json" \
-d "{
\"peers\": [\"peer0.forensics.example.com\",\"peer1.forensics.example.com\"],
\"chaincodeName\":\"mycc\",
\"chaincodePath\":\"$CC_SRC_PATH\",
\"chaincodeType\": \"$LANGUAGE\",
\"chaincodeVersion\":\"v2\"
}"
echo
echo
echo "POST Install chaincode on Lawyers"
echo
curl -s -X POST \
http://localhost:4000/chaincodes \
-H "authorization: Bearer $LAWYERS_TOKEN" \
-H "content-type: application/json" \
-d "{
\"peers\": [\"peer0.lawyers.example.com\",\"peer1.lawyers.example.com\"],
\"chaincodeName\":\"mycc\",
\"chaincodePath\":\"$CC_SRC_PATH\",
\"chaincodeType\": \"$LANGUAGE\",
\"chaincodeVersion\":\"v2\"
}"
echo
echo
echo "POST Install chaincode on Court"
echo
curl -s -X POST \
http://localhost:4000/chaincodes \
-H "authorization: Bearer $COURT_TOKEN" \
-H "content-type: application/json" \
-d "{
\"peers\": [\"peer0.court.example.com\",\"peer1.court.example.com\"],
\"chaincodeName\":\"mycc\",
\"chaincodePath\":\"$CC_SRC_PATH\",
\"chaincodeType\": \"$LANGUAGE\",
\"chaincodeVersion\":\"v2\"
}"
echo
echo
#---------Install Channel-------------
#---------End-------------------------
#---------Instantiate Channel---------
#---------Start-----------------------
echo "POST instantiate chaincode on POLICE"
echo
curl -s -X POST \
http://localhost:4000/channels/mychannel/chaincodes \
-H "authorization: Bearer $POLICE_TOKEN" \
-H "content-type: application/json" \
-d '{
"peers": ["peer0.police.example.com"],
"chaincodeName":"mycc",
"chaincodeVersion":"v2",
"chaincodeType": "$LANGUAGE",
"args":["a","100","b","200"]
}'
echo
echo
echo "POST invoke chaincode on peers of Forensics, Police, Court and Lawyers"
echo
curl -s -X POST \
http://localhost:4000/channels/mychannel/chaincodes/mycc \
-H "authorization: Bearer $POLICE_TOKEN" \
-H "content-type: application/json" \
-d '{
"peers": ["peer0.police.example.com"],
"fcn":"invoke",
"operation":"createCase",
"args": ["createCase","Case-Name", "Case - Description", "CREATED", "/Users/harishgunjalli/Desktop/2018-19/Screenshot 2019-08-27 at 1.06.57 PM.png"]
}'
echo
echo
echo "Total execution time : $(($(date +%s)-starttime)) secs ..."