mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
42 lines
805 B
Bash
Executable file
42 lines
805 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Integration test for remote API
|
|
#
|
|
# Author: Steffen Vogel <post@steffenvogel.de>
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
|
|
DIR=$(mktemp -d)
|
|
pushd ${DIR}
|
|
|
|
function finish {
|
|
popd
|
|
rm -rf ${DIR}
|
|
}
|
|
trap finish EXIT
|
|
|
|
|
|
cat > config.json <<EOF
|
|
{
|
|
"http": {
|
|
"port": 8080
|
|
}
|
|
}
|
|
EOF
|
|
|
|
# Start without a configuration
|
|
timeout -s SIGKILL 3 \
|
|
villas node config.json &
|
|
|
|
# Wait for node to complete init
|
|
sleep 1
|
|
|
|
# Restart with configuration
|
|
curl -sX POST http://localhost:8080/api/v2/shutdown
|
|
|
|
# Wait returns the return code of villas node
|
|
# which will be 0 (success) in case of normal shutdown
|
|
# or <>0 (fail) in case the 3 second timeout was reached
|
|
wait $!
|