2018-02-13 17:01:33 +01:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
test_dir="$(cd "$(dirname "$0")" && echo "$(pwd -P)")"
|
|
|
|
source $test_dir/test_lib.inc.sh "$@"
|
|
|
|
|
|
|
|
start_node 1
|
|
|
|
|
|
|
|
sleep 2
|
2018-02-14 16:24:08 +01:00
|
|
|
|
2018-02-28 12:44:06 +01:00
|
|
|
# autogenerated from the demo source
|
|
|
|
protocol_version="Ps1ZDZdgRP4PFDkzmFpiYtE7gJHioavCMxC96i9zJsK6URwSXSJ"
|
|
|
|
|
2018-02-14 16:24:08 +01:00
|
|
|
$admin_client inject protocol "$test_dir/demo"
|
|
|
|
$admin_client list protocols
|
2018-02-28 12:44:06 +01:00
|
|
|
$client activate protocol $protocol_version with fitness 1 and key dictator
|
|
|
|
answ=$($client rpc call /blocks/head/protocol with {} 2>/dev/null)
|
|
|
|
|
|
|
|
if ! grep "$protocol_version" <<< $answ ; then
|
|
|
|
exit 1
|
|
|
|
fi
|
2018-02-13 17:01:33 +01:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo End of test
|
|
|
|
echo
|
|
|
|
|
|
|
|
show_logs="no"
|