41 lines
942 B
Bash
41 lines
942 B
Bash
#!/bin/bash
|
|
|
|
# =============================== ENVIRONMENT ================================ #
|
|
|
|
if [[ ${1} ]]; then
|
|
cmd="${1}"
|
|
else
|
|
echo 1>&2 "execute tests-cli.sh to run all tests"; exit 1
|
|
fi
|
|
|
|
t="$(basename "${BASH_SOURCE[0]}" .sh)"
|
|
cd "${BASH_SOURCE%/*}/" || exit 1
|
|
mkdir -p "tmp/${t}"
|
|
|
|
# =================================== DATA =================================== #
|
|
|
|
cat << "DATA" > "tmp/${t}/${t}.csv"
|
|
a,b,c
|
|
1,"2,0",3
|
|
0,0,0
|
|
$,\,'
|
|
DATA
|
|
|
|
# ================================= ASSERTION ================================ #
|
|
|
|
cat << "DATA" > "tmp/${t}/${t}.assert"
|
|
a b c Column 4
|
|
1 2 0 3
|
|
0 0 0
|
|
$ \ '
|
|
DATA
|
|
|
|
# ================================== ACTION ================================== #
|
|
|
|
${cmd} --create "tmp/${t}/${t}.csv" --processQuotes "false"
|
|
${cmd} --export "${t}" --output "tmp/${t}/${t}.output"
|
|
|
|
# =================================== TEST =================================== #
|
|
|
|
diff -u "tmp/${t}/${t}.assert" "tmp/${t}/${t}.output"
|