40 lines
983 B
Bash
40 lines
983 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}.txt"
|
|
mon tue wed
|
|
$2 $300 $1
|
|
thu fri sat
|
|
$70 $20 $50
|
|
DATA
|
|
|
|
# ================================= ASSERTION ================================ #
|
|
|
|
cat << "DATA" > "tmp/${t}/${t}.assert"
|
|
Column 1 Column 2
|
|
mon tue wed $2 $300 $1
|
|
thu fri sat $70 $20 $50
|
|
DATA
|
|
|
|
# ================================== ACTION ================================== #
|
|
|
|
${cmd} --create "tmp/${t}/${t}.txt" --linesPerRow "2"
|
|
${cmd} --export "${t}" --output "tmp/${t}/${t}.output"
|
|
|
|
# =================================== TEST =================================== #
|
|
|
|
diff -u "tmp/${t}/${t}.assert" "tmp/${t}/${t}.output"
|