-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinit.sh
executable file
·410 lines (368 loc) · 10.4 KB
/
init.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
#!/bin/sh
chain=$1
url=$2
tests=$3
forking=$4
nodePath=$5
adapterPath=$6
compilerPath=$7
total_tests=0
total_passed=0
total_failed=0
LOG_DIR="./test-logs"
mkdir -p $LOG_DIR
mkdir -p "./output-logs"
OS_NAME=$(uname)
case "$OS_NAME" in
"Darwin")
export NETWORK_DIR="macOS"
chmod +x ./networks/ethereum/build/bin/${NETWORK_DIR}/geth
;;
"Linux")
export NETWORK_DIR="linux"
chmod +x ./networks/ethereum/build/bin/${NETWORK_DIR}/geth
;;
*)
export NETWORK_DIR="linux"
chmod +x ./networks/ethereum/build/bin/${NETWORK_DIR}/geth
;;
esac
chmod +x ./networks/westend/${NETWORK_DIR}/eth-rpc
chmod +x ./networks/westend/${NETWORK_DIR}/substrate-node
run_matter_labs_tests() {
npm i &&
echo "Running Matter Labs EVM Tests" &&
cd ./matter-labs-tests &&
yarn install &&
git submodule update --init --recursive &&
TEST_LOG="../$LOG_DIR/matter-labs-tests.log" &&
case "$USE_REVIVE" in
true)
npx hardhat compile --config ./${HARDHAT_CONFIG_NAME}.ts
npx hardhat test --config ./${HARDHAT_CONFIG_NAME}.ts --network ${NETWORK_NAME} | tee ".$LOG_DIR/matter-labs-tests.log"
;;
*)
npx hardhat compile --config ./${HARDHAT_CONFIG_NAME}.ts
npx hardhat test --config ./${HARDHAT_CONFIG_NAME}.ts | tee ".$LOG_DIR/matter-labs-tests.log"
;;
esac
parse_hardhat_test_results "../test-logs/matter-labs-tests.log"
}
run_open_zeppelin_tests() {
npm i &&
echo "Running Open Zeppelin EVM Tests" &&
cd ./openzeppelin-contracts &&
npm i --force &&
git submodule update --init --recursive &&
TEST_LOG="../$LOG_DIR/open-zeppelin-tests.log" &&
case "$USE_REVIVE" in
true)
npx hardhat compile --config ./${HARDHAT_CONFIG_NAME}.js
npx hardhat test --config ./${HARDHAT_CONFIG_NAME}.js --network ${NETWORK_NAME} | tee ".$LOG_DIR/open-zeppelin-tests.log"
;;
*)
npx hardhat compile --config ./${HARDHAT_CONFIG_NAME}.js
npx hardhat test --config ./${HARDHAT_CONFIG_NAME}.js | tee ".$LOG_DIR/open-zeppelin-tests.log"
;;
esac
parse_hardhat_test_results "../test-logs/open-zeppelin-tests.log"
}
run_all_tests() {
npm i &&
echo "Running Matter Labs EVM Tests" &&
cd ./matter-labs-tests &&
yarn install --force &&
case "$USE_REVIVE" in
true)
npx hardhat compile --config ./${HARDHAT_CONFIG_NAME}.ts
npx hardhat test --config ./${HARDHAT_CONFIG_NAME}.ts --network ${NETWORK_NAME} | tee ".$LOG_DIR/matter-labs-tests.log"
;;
*)
npx hardhat compile --config ./${HARDHAT_CONFIG_NAME}.ts
npx hardhat test --config ./${HARDHAT_CONFIG_NAME}.ts | tee "../$LOG_DIR/matter-labs-tests.log"
;;
esac
parse_hardhat_test_results "../$LOG_DIR/matter-labs-tests.log"
cd ..
echo "Running Open Zeppelin Tests"
cd ./openzeppelin-contracts &&
npm i --force &&
case "$USE_REVIVE" in
true)
npx hardhat compile --config ./${HARDHAT_CONFIG_NAME}.js
npx hardhat test --config ./${HARDHAT_CONFIG_NAME}.js --network ${NETWORK_NAME} | tee ".$LOG_DIR/open-zeppelin-tests.log"
;;
*)
npx hardhat compile --config ./${HARDHAT_CONFIG_NAME}.js
npx hardhat test --config ./${HARDHAT_CONFIG_NAME}.js | tee ".$LOG_DIR/open-zeppelin-tests.log"
;;
esac
parse_hardhat_test_results ".$LOG_DIR/open-zeppelin-tests.log"
echo "Test Run Complete"
}
parse_hardhat_test_results() {
log_file=$1
passed=$(grep -o '[0-9]\+ passing' "$log_file" | awk '{print $1}')
failed=$(grep -o '[0-9]\+ failing' "$log_file" | awk '{print $1}')
if [ -z "$passed" ]; then
passed=0
fi
if [ -z "$failed" ]; then
failed=0
fi
total=$((passed + failed))
total_passed=$((total_passed + passed))
total_failed=$((total_failed + failed))
total_tests=$((total_tests + total))
echo "Hardhat Test Summary from $log_file:"
echo "Total: $total | Passed: $passed | Failed: $failed"
}
case "$chain" in
--acala)
export HARDHAT_CONFIG_NAME="hardhat.evm.config"
export USE_REVIVE="false"
export NETWORK_URL="http://localhost:8545"
export CHAIN_ID=787
export NETWORK_NAME="acala"
;;
--ethereum)
export HARDHAT_CONFIG_NAME="hardhat.evm.config"
export USE_REVIVE="false"
export NETWORK_URL="http://localhost:8545"
export CHAIN_ID=1
export NETWORK_NAME="ethereum"
;;
--moonbeam)
export HARDHAT_CONFIG_NAME="hardhat.evm.config"
export USE_REVIVE="false"
export NETWORK_URL="https://moonbeam.public.blastapi.io"
export CHAIN_ID=1284
export NETWORK_NAME="moonbeam"
;;
--astar)
export HARDHAT_CONFIG_NAME="hardhat.evm.config"
export USE_REVIVE="false"
export NETWORK_URL="http://localhost:8000"
export CHAIN_ID=592
export NETWORK_NAME="astar"
;;
--polygon)
export HARDHAT_CONFIG_NAME="hardhat.evm.config"
export USE_REVIVE="false"
export NETWORK_URL="https://polygon-mainnet.infura.io/v3/${PRIVATE_KEY}"
export CHAIN_ID=137
export NETWORK_NAME="polygon"
;;
--arbitrum)
export HARDHAT_CONFIG_NAME="hardhat.evm.config"
export USE_REVIVE="false"
export NETWORK_URL="https://arbitrum-mainnet.infura.io/v3/${PRIVATE_KEY}"
export CHAIN_ID=42161
export NETWORK_NAME="arbitrum"
;;
--kitchensink)
export HARDHAT_CONFIG_NAME="hardhat.config"
export USE_REVIVE="true"
export NETWORK_URL="http://localhost:8545"
export NODE_PATH=$nodePath
export ADAPTER_PATH=$adapterPath
export COMPILER_PATH=$compilerPath
export USE_FORKING="false"
export NETWORK_NAME="hardhat"
;;
--westend)
export HARDHAT_CONFIG_NAME="hardhat.config"
export USE_REVIVE="true"
export NETWORK_URL="http://localhost:8545"
export USE_FORKING="true"
export NODE_PATH=$nodePath
export ADAPTER_PATH=$adapterPath
export COMPILER_PATH=$compilerPath
export NETWORK_NAME="localhost"
;;
--endpoint | -e)
if [ "${USER_REVIVE}" = "true" ]; then
export HARDHAT_CONFIG_NAME="hardhat.config"
else
export HARDHAT_CONFIG_NAME="hardhat.evm.config"
fi
;;
*)
export HARDHAT_CONFIG_NAME="hardhat.evm.config"
export USE_REVIVE="false"
export NETWORK_URL="https://ethereum-rpc.publicnode.com"
export CHAIN_ID=1
;;
esac
echo $chain
case "$chain" in
--ethereum)
echo "Cleaning up"
rm -rf ./output-logs/geth-output.log
echo "Starting Geth Ethereum Node"
./networks/ethereum/build/bin/${NETWORK_DIR}/geth --datadir ./networks/ethereum/node1 init ./networks/ethereum/genesis.json &&
./networks/ethereum/build/bin/${NETWORK_DIR}/geth --datadir ./networks/ethereum/node1 --syncmode "full" \
--port 30304 --http --http.addr "localhost" --http.port 8545 --http.corsdomain="*" \
--networkid 2345 --allow-insecure-unlock --authrpc.port 8553 >./output-logs/geth-output.log 2>&1 &
echo "Waiting for the Geth to start..."
while ! grep -q "HTTP server started" ./output-logs/geth-output.log; do
sleep 1
done
;;
--acala)
echo "Cleaning up"
rm -rf ./output-logs/acala-chopsticks-output.log
echo "Starting Chopsticks instance"
yarn add @acala-network/chopsticks@latest &&
npx @acala-network/chopsticks@latest --endpoint=wss://acala-rpc-2.aca-api.network/ws >./output-logs/acala-chopsticks-output.log 2>&1 &
echo "Waiting for the Chopsticks to start on ws://[::]:8000..."
while ! grep -q "app: " ./output-logs/acala-chopsticks-output.log; do
sleep 1
done
echo "Chopsticks instance now running on ws://[::]:8000."
echo "Starting Eth RPC Adapter instance"
yarn add @acala-network/eth-rpc-adapter@latest &&
npx @acala-network/eth-rpc-adapter --endpoint ws://localhost:8000 >./output-logs/acala-eth-adapter-output.log 2>&1 &
echo "Waiting for the eth-rpc-adapter to start on port 8545..."
while ! grep -q "🚀 SERVER STARTED 🚀" ./output-logs/acala-eth-adapter-output.log; do
sleep 1
done
echo "The eth-rpc-adapter is now running on ws://[::]:8545."
;;
--astar)
echo "Cleaning up"
rm -rf ./output-logs/astar-chopsticks-output.log
echo "Starting Chopsticks instance"
yarn add @acala-network/chopsticks@latest &&
npx @acala-network/chopsticks@latest --endpoint=wss://rpc.astar.network >./output-logs/astar-chopsticks-output.log 2>&1 &
echo "Waiting for the Chopsticks to start on ws://[::]:8000..."
while ! grep -q "app: " ./output-logs/astar-chopsticks-output.log; do
sleep 1
done
echo "Chopsticks instance now running on ws://[::]:8000."
;;
--kitchensink)
echo "Runninc Kitchensink"
;;
--westend)
echo "Forking Asset Hub Westend"
;;
*)
echo "Unknown chain: $chain"
;;
esac
case "$chain" in
--ethereum)
case "$tests" in
--matter-labs)
run_matter_labs_tests
sleep 1
kill -9 $(lsof -t -i:30304)
echo "Geth Ethereum Node Stopped"
;;
--open-zeppelin)
run_open_zeppelin_tests
sleep 1
kill -9 $(lsof -t -i:30304)
echo "Geth Ethereum Node Stopped"
;;
*)
run_all_tests
sleep 1
kill -9 $(lsof -t -i:30304)
echo "Geth Ethereum Node Stopped"
;;
esac
;;
--acala)
case "$tests" in
--matter-labs)
run_matter_labs_tests
sleep 1
kill -9 $(lsof -t -i:8545)
echo "Eth RPC Adapter Instance Stopped"
kill -9 $(lsof -t -i:8000)
echo "Chopsticks Instance Stopped"
;;
--open-zeppelin)
run_open_zeppelin_tests
sleep 1
kill -9 $(lsof -t -i:8545)
echo "Eth RPC Adapter Instance Stopped"
kill -9 $(lsof -t -i:8000)
echo "Chopsticks Instance Stopped"
;;
*)
run_all_tests
sleep 1
kill -9 $(lsof -t -i:8545)
echo "Eth RPC Adapter Instance Stopped"
kill -9 $(lsof -t -i:8000)
echo "Chopsticks Instance Stopped"
;;
esac
;;
--astar)
case "$tests" in
--matter-labs)
run_matter_labs_tests
sleep 1
kill -9 $(lsof -t -i:800)
echo "Chopsticks Instance Stopped"
;;
--open-zeppelin)
run_open_zeppelin_tests
sleep 1
kill -9 $(lsof -t -i:8000)
echo "Chopsticks Instance Stopped"
;;
*)
run_all_tests
sleep 1
kill -9 $(lsof -t -i:8000)
echo "Chopsticks Instance Stopped"
;;
esac
;;
--kitchensink)
case "$tests" in
--matter-labs)
run_matter_labs_tests
;;
--open-zeppelin)
run_open_zeppelin_tests
;;
*)
run_all_tests
;;
esac
;;
--westend)
case "$tests" in
--matter-labs)
run_matter_labs_tests
;;
--open-zeppelin)
run_open_zeppelin_tests
;;
*)
run_all_tests
;;
esac
;;
*)
case "$tests" in
--matter-labs)
run_matter_labs_tests
;;
--open-zeppelin)
run_open_zeppelin_tests
;;
*)
run_all_tests
;;
esac
;;
esac
echo "Final Test Summary:"
echo "Total: $total_tests | Passed: $total_passed | Failed: $total_failed"