openrefine-client/tests/create-ods-sheets-utf8.sh

45 lines
1.2 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.ods" "tmp/${t}/${t}.ods"
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"
⌨ code meaning Column Column 5 Column 6 Column 7 Column 8
⛲ 1F347 FOUNTAIN
⛳ 1F349 FLAG IN HOLE
⛵ 1F352 SAILBOAT
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}.ods" --sheets 1
${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"