-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathvalidator-demo.sh
executable file
·141 lines (111 loc) · 4.63 KB
/
validator-demo.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
#!/bin/bash
# Copyright 2020 DSR Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -euo pipefail
source integration_tests/cli/common.sh
LOCALNET_DIR=".localnet"
random_string account
container="validator-demo"
node="node-demo"
chain_id="dclchain"
ip="192.167.10.6"
node0="tcp://192.167.10.2:26657"
passphrase="test1234"
docker_network="distributed-compliance-ledger_localnet"
if docker container ls -a | grep -q $container; then
if docker container inspect $container | grep -q '"Status": "running"'; then
echo "Stopping container"
docker container kill $container
fi
echo "Removing container"
docker container rm "$container"
fi
docker run -d --name $container --ip $ip -p "26664-26665:26656-26657" --network $docker_network -i dcledger
echo "Generate keys for $account"
docker exec $container /bin/sh -c "echo $passphrase | dclcli keys add $account"
test_divider
address=$(docker exec $container dclcli keys show $account -a)
pubkey=$(docker exec $container dclcli keys show $account -p)
echo "Create account for $account and Assign NodeAdmin role"
echo $passphrase | dclcli tx auth propose-add-account --address="$address" --pubkey="$pubkey" --roles="NodeAdmin" --from jack --yes
echo $passphrase | dclcli tx auth approve-add-account --address="$address" --from alice --yes
test_divider
echo "$account Prepare Node configuration files"
docker exec $container dcld init $node --chain-id $chain_id
docker cp "$LOCALNET_DIR/node0/config/genesis.json" $container:/root/.dcld/config
peers="$(cat "$LOCALNET_DIR/node0/config/config.toml" | grep -o -E "persistent_peers = \".*\"")"
docker exec $container sed -i "s/persistent_peers = \"\"/$peers/g" /root/.dcld/config/config.toml
docker exec $container sed -i 's/laddr = "tcp:\/\/127.0.0.1:26657"/laddr = "tcp:\/\/0.0.0.0:26657"/g' /root/.dcld/config/config.toml
test_divider
echo "$account Configure CLI"
docker exec $container /bin/sh -c "
dclcli config chain-id dclchain &&
dclcli config output json &&
dclcli config indent true &&
dclcli config trust-node false &&
dclcli config node $node0"
test_divider
echo "$account Add Node \"$node\" to validator set"
vaddress=$(docker exec $container dcld tendermint show-address)
vpubkey=$(docker exec $container dcld tendermint show-validator)
result=$(docker exec $container /bin/sh -c "echo test1234 | dclcli tx validator add-node --validator-address=$vaddress --validator-pubkey=$vpubkey --name=$node --from=$account --yes")
check_response "$result" "\"success\": true"
echo "$result"
test_divider
echo "$account Start Node \"$node\""
docker exec -d $container dcld start
sleep 10
test_divider
echo "Check node \"$node\" is in the validator set"
result=$(dclcli query validator all-nodes)
check_response "$result" "\"name\": \"$node\""
check_response "$result" "\"validator_address\": \"$vaddress\""
check_response "$result" "\"validator_pubkey\": \"$vpubkey\""
echo "$result"
test_divider
echo "Connect CLI to node \"$node\" and check status"
dclcli config node "tcp://localhost:26665"
result=$(dclcli status)
check_response "$result" "\"moniker\": \"$node\""
echo "$result"
test_divider
echo "Sent transactions using node \"$node\""
vid=$RANDOM
pid=$RANDOM
vendor_account=vendor_account_$vid
create_new_vendor_account $vendor_account $vid
test_divider
echo "Publish Model"
pid=$RANDOM
productName="TestingProductLabel"
echo "Add Model with VID: $vid PID: $pid"
result=$(echo 'test1234' | dclcli tx model add-model --vid=$vid --pid=$pid --deviceTypeID=1 --productName=TestProduct --productLabel=TestingProductLabel --partNumber=1 --commissioningCustomFlow=0 --from=$vendor_account --yes)
check_response "$result" "\"success\": true"
echo "$result"
test_divider
sleep 5
echo "Connect CLI to node \"node0\""
dclcli config node "tcp://localhost:26657"
result=$(dclcli status)
check_response "$result" "\"moniker\": \"node0\""
echo "$result"
test_divider
echo "Query Model using node0 node"
echo "Get Model with VID: $vid PID: $pid"
result=$(dclcli query model get-model --vid=$vid --pid=$pid)
check_response "$result" "\"vid\": $vid"
check_response "$result" "\"pid\": $pid"
check_response "$result" "\"productLabel\": \"$productName\""
echo "$result"
docker rm -f $container