1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/tests/integration/node-test_rtt.sh

80 lines
1.6 KiB
Bash
Raw Normal View History

2018-10-20 14:25:38 +02:00
#!/bin/bash
#
2021-09-22 10:42:03 +02:00
# Integration loopback test using villas node.
2018-10-20 14:25:38 +02:00
#
# @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
2022-03-15 09:28:57 -04:00
# @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
2018-10-20 14:25:38 +02:00
# @license GNU General Public License (version 3)
#
# VILLASnode
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
##################################################################################
echo "Test not yet supported"
exit 99
set -e
2018-10-20 14:25:38 +02:00
DIR=$(mktemp -d)
pushd ${DIR}
function finish {
popd
rm -rf ${DIR}
}
trap finish EXIT
mkdir ./logs
cat > config.json <<EOF
2018-10-20 14:25:38 +02:00
{
"logging": { "level": 2 },
"stats": 1,
"nodes": {
"test": {
"type": "test_rtt",
"cooldown": 2,
"output": "./logs",
2018-10-20 14:25:38 +02:00
"cases": [
{
"rates": 55.0,
"values": 5,
"limit": 100
},
{
"rates": [ 10, 10, 1000 ],
"values": [ 2, 10, 20, 50 ],
"duration": 5
}
],
"hooks": [
2018-10-20 14:25:38 +02:00
{
"type": "stats",
"verbose": false
}
]
}
},
"paths": [
{
"in": "test",
"out": "test"
}
]
}
EOF
villas node config.json