2018-02-13 17:01:33 +01:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
|
2018-02-28 14:57:22 +01:00
|
|
|
## from genesis to demo
|
|
|
|
|
2018-02-13 17:01:33 +01:00
|
|
|
set -e
|
|
|
|
|
|
|
|
test_dir="$(cd "$(dirname "$0")" && echo "$(pwd -P)")"
|
|
|
|
source $test_dir/test_lib.inc.sh "$@"
|
|
|
|
|
|
|
|
start_node 1
|
|
|
|
|
2018-02-28 14:57:22 +01:00
|
|
|
show_logs="no"
|
|
|
|
|
2018-02-13 17:01:33 +01:00
|
|
|
sleep 2
|
2018-02-14 16:24:08 +01:00
|
|
|
|
2018-02-28 12:44:06 +01:00
|
|
|
# autogenerated from the demo source
|
2018-04-30 19:06:06 +02:00
|
|
|
protocol_version="PsgZ1PB2h82sTKznNbmZxtbsU432eKDv1W6cf1cJFhCFmGYSiJs"
|
2018-02-28 12:44:06 +01:00
|
|
|
|
2018-02-14 16:24:08 +01:00
|
|
|
$admin_client inject protocol "$test_dir/demo"
|
|
|
|
$admin_client list protocols
|
2018-04-04 16:20:03 +02:00
|
|
|
$client activate protocol $protocol_version with fitness 1 and key dictator and parameters $parameters_file
|
2018-05-29 13:14:04 +02:00
|
|
|
answ=$($client -p ProtoALphaALph rpc get /chains/main/blocks/head/metadata 2>/dev/null)
|
2018-02-28 12:44:06 +01:00
|
|
|
|
2018-05-29 13:14:04 +02:00
|
|
|
if ! grep "\"next_protocol\": \"$protocol_version\"" <<< $answ ; then
|
2018-04-16 00:44:24 +02:00
|
|
|
exit 1
|
2018-02-28 12:44:06 +01:00
|
|
|
fi
|
2018-02-13 17:01:33 +01:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo End of test
|
|
|
|
echo
|