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
|
|
|
#
|
2022-03-15 09:18:01 -04:00
|
|
|
# @author Steffen Vogel <svogel2@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
|
|
|
|
|
2021-08-10 10:12:48 -04:00
|
|
|
set -e
|
2018-10-20 14:25:38 +02:00
|
|
|
|
2021-08-10 10:12:48 -04: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,
|
2021-08-10 10:12:48 -04:00
|
|
|
"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
|
|
|
|
}
|
|
|
|
],
|
2021-08-10 10:12:48 -04:00
|
|
|
"hooks": [
|
2018-10-20 14:25:38 +02:00
|
|
|
{
|
|
|
|
"type": "stats",
|
|
|
|
"verbose": false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"paths": [
|
|
|
|
{
|
|
|
|
"in": "test",
|
|
|
|
"out": "test"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
2021-08-10 10:12:48 -04:00
|
|
|
villas node config.json
|