mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
56 lines
1.5 KiB
Bash
Executable file
56 lines
1.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Integration test for villas compare.
|
|
#
|
|
# 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
|
|
|
|
DIR=$(mktemp -d)
|
|
pushd ${DIR}
|
|
|
|
function finish {
|
|
popd
|
|
rm -rf ${DIR}
|
|
}
|
|
trap finish EXIT
|
|
|
|
cat > input.dat <<EOF
|
|
1491095596.645159701(0) 0.000000
|
|
1491095596.745159701(1) 0.587785
|
|
1491095596.845159701(2) 0.951057
|
|
1491095596.945159701(3) 0.951057
|
|
1491095597.045159701(4) 0.587785
|
|
1491095597.145159701(5) 0.000000
|
|
1491095597.245159701(6) -0.587785
|
|
1491095597.345159701(7) -0.951057
|
|
1491095597.445159701(8) -0.951057
|
|
1491095597.545159701(9) -0.587785
|
|
EOF
|
|
|
|
villas compare input.dat input.dat
|
|
(( $? == 0 )) || exit 9
|
|
|
|
head -n-1 input.dat > temp.dat
|
|
villas compare input.dat temp.dat
|
|
(( $? == 1 )) || exit 2
|
|
|
|
( head -n-1 input.dat; echo "1491095597.545159701(55) -0.587785" ) > temp.dat
|
|
villas compare input.dat temp.dat
|
|
(( $? == 2 )) || exit 3
|
|
|
|
( head -n-1 input.dat; echo "1491095598.545159701(9) -0.587785" ) > temp.dat
|
|
villas compare input.dat temp.dat
|
|
(( $? == 3 )) || exit 4
|
|
|
|
( head -n-1 input.dat; echo "1491095597.545159701(9) -0.587785 -0.587785" ) > temp.dat
|
|
villas compare input.dat temp.dat
|
|
(( $? == 4 )) || exit 5
|
|
|
|
( head -n-1 input.dat; echo "1491095597.545159701(9) -1.587785" ) > temp.dat
|
|
villas compare input.dat temp.dat
|
|
(( $? == 5 )) || exit 6
|
|
|
|
( cat input.dat; echo "1491095597.545159701(9) -0.587785" ) > temp.dat
|
|
villas compare input.dat temp.dat
|
|
(( $? == 1 )) || exit 7
|