openrefine-client/tests/create-xlsx.sh

49 lines
1.1 KiB
Bash
Raw Normal View History

2020-08-03 19:09:39 +02:00
#!/bin/bash
# =============================== ENVIRONMENT ================================ #
if [[ ${1} ]]; then
cmd="${1}"
else
echo 1>&2 "execute tests.sh to run all tests"; exit 1
fi
2020-08-04 13:50:56 +02:00
if [[ ${2} ]]; then
version="${2}"
fi
2020-08-03 19:09:39 +02:00
t="$(basename "${BASH_SOURCE[0]}" .sh)"
cd "${BASH_SOURCE%/*}/" || exit 1
mkdir -p "tmp/${t}"
# =================================== DATA =================================== #
2020-08-04 13:50:56 +02:00
cp "data/example.xlsx" "tmp/${t}/${t}.xlsx"
#a b c
#1 2 3
#0 0 0
#$ \ '
2020-08-03 19:09:39 +02:00
# ================================= ASSERTION ================================ #
2020-08-04 13:50:56 +02:00
if [[ "${version}" = "2.7" ]]; then
cat << "DATA" > "tmp/${t}/${t}.assert"
2020-08-03 19:09:39 +02:00
a b c
2020-08-04 13:50:56 +02:00
1.0 2.0 3.0
0.0 0.0 0.0
$ \ '
2020-08-03 19:09:39 +02:00
DATA
2020-08-04 13:50:56 +02:00
else
#TODO
echo "https://github.com/opencultureconsulting/openrefine-client/issues/4"
exit 200
fi
2020-08-03 19:09:39 +02:00
# ================================== ACTION ================================== #
2020-08-04 13:50:56 +02:00
${cmd} --create "tmp/${t}/${t}.xlsx"
${cmd} --export "${t}" --output "tmp/${t}/${t}.output"
2020-08-03 19:09:39 +02:00
# =================================== TEST =================================== #
diff -u "tmp/${t}/${t}.assert" "tmp/${t}/${t}.output"