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-can.sh

154 lines
3.4 KiB
Bash
Raw Permalink Normal View History

2020-07-08 16:08:05 +02:00
#!/bin/bash
#
# Integration can test using villas-node.
#
# @author Niklas Eiling <niklas.eiling@eonerc.rwth-aachen.de>
# @copyright 2014-2020, Institute for Automation of Complex Power Systems, EONERC
# @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/>.
##################################################################################
# To set up vcan interface use the following commands
# sudo modprobe vcan
# sudo ip link add dev vcan0 type vcan
# sudo ip link set vcan0 up
2020-07-08 16:08:05 +02:00
SCRIPT=$(realpath $0)
SCRIPTPATH=$(dirname ${SCRIPT})
source ${SCRIPTPATH}/../../tools/villas-helper.sh
CONFIG_FILE=$(mktemp)
2020-07-08 16:08:05 +02:00
INPUT_FILE=$(mktemp)
OUTPUT_FILE=$(mktemp)
CAN_OUT_FILE=$(mktemp)
NUM_SAMPLES=${NUM_SAMPLES:-10}
NUM_VALUES=${NUM_VALUES:-3}
CAN_IF=$(ip link show type vcan | head -n1 | awk '{match($2, /(.*):/,a)}END{print a[1]}')
if [[ ! ${CAN_IF} ]]; then
echo "Did not find any vcan interface"
exit 99
fi
# Check if vcan0 interface is present
if [[ ! $(ip link show "${CAN_IF}" up) ]]; then
echo "Interface ${CAN_IF} is not up"
exit 99
fi
2020-07-08 16:08:05 +02:00
cat > ${CONFIG_FILE} << EOF
nodes = {
can_node1 = {
type = "can"
interface_name = "${CAN_IF}"
sample_rate = 500000
in = {
signals = (
{
name = "sigin1",
unit = "Volts",
type = "float",
enabled = true,
can_id = 66,
can_size = 4,
can_offset = 0
},
{
name = "sigin2",
unit = "Volts",
type = "float",
enabled = true,
can_id = 66,
can_size = 4,
can_offset = 4
},
{
name = "sigin3",
unit = "Volts",
type = "float",
enabled = true,
can_id = 67,
can_size = 8,
can_offset = 0
}
)
}
out = {
signals = (
{
type = "float",
can_id = 66,
can_size = 4,
can_offset = 0
},
{
type = "float",
can_id = 66,
can_size = 4,
can_offset = 4
},
{
type = "float",
can_id = 67,
can_size = 8,
can_offset = 0
}
)
}
}
}
EOF
2020-07-08 16:08:05 +02:00
# Generate test data
VILLAS_LOG_PREFIX=$(colorize "[Signal]") \
villas-signal -v ${NUM_VALUES} -l ${NUM_SAMPLES} -n random > ${INPUT_FILE}
# Start node
VILLAS_LOG_PREFIX=$(colorize "[Node] ") \
villas-node ${CONFIG_FILE} &
# Wait for node to complete init
sleep 1
candump -n ${NUM_SAMPLES} -T 1000 -L ${CAN_IF} | awk '{print $3}' > ${CAN_OUT_FILE} &
CANDUMP_PID=$!
# Send / Receive data to node
VILLAS_LOG_PREFIX=$(colorize "[Pipe] ") \
villas-pipe -l ${NUM_SAMPLES} ${CONFIG_FILE} can_node1 > ${OUTPUT_FILE} < ${INPUT_FILE} &
wait ${CANDUMP_PID}
cat ${CAN_OUT_FILE} | xargs -I % cansend ${CAN_IF} %
# Wait for node to handle samples
sleep 1
# Stop node
kill %1
# Compare data
villas-test-cmp ${INPUT_FILE} ${OUTPUT_FILE}
RC=$?
#rm ${CAN_OUT_FILE} ${INPUT_FILE} ${OUTPUT_FILE}
rm ${INPUT_FILE} ${OUTPUT_FILE}
exit ${RC}