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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.4 KiB
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
#
# Integration loopback test using villas node.
#
2022-03-15 09:18:01 -04:00
# Author: Steffen Vogel <post@steffenvogel.de>
2022-03-15 09:28:57 -04:00
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
2022-07-04 18:20:03 +02:00
# SPDX-License-Identifier: Apache-2.0
2022-01-11 10:18:05 -05:00
echo "Test is broken"
exit 99
set -e
DIR=$(mktemp -d)
pushd ${DIR}
function finish {
popd
rm -rf ${DIR}
}
trap finish EXIT
cat > expect.dat <<EOF
1637846259.201578969(0) 1234.00000000000000000 5678.00000000000000000
1637846259.201578969(1) 1234.00000000000000000 5678.00000000000000000
1637846259.201578969(2) 1234.00000000000000000 5678.00000000000000000
EOF
cat > config.json <<EOF
{
"nodes": {
"node_1": {
"type": "socket",
"in": {
"address": ":12000",
"signals": [
{ "name": "sig1", "init": 1234.0 },
{ "name": "sig2", "init": 5678.0 }
]
},
"out": {
"address": "127.0.0.1:12000"
}
},
"file_1": {
"type": "file",
"uri": "output.dat"
}
},
"paths": [
{
"in": "node_1",
"out": "file_1",
"mode": "all",
"rate": 10
}
]
}
EOF
timeout --preserve-status -k 15s 1s \
villas node config.json
villas compare <(head -n4 < output.dat) expect.dat