ligo/src/bin_client/test/test_injection.sh

31 lines
682 B
Bash
Raw Normal View History

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