22 lines
396 B
Bash
22 lines
396 B
Bash
#!/bin/bash
|
|
|
|
t="export-tsv"
|
|
|
|
# create tmp directory
|
|
tmpdir="$(mktemp -d)"
|
|
trap '{ rm -rf "${tmpdir}"; }' 0 2 3 15
|
|
|
|
# input
|
|
cp data/example.csv "${tmpdir}/${t}.csv"
|
|
|
|
# assertion
|
|
cp data/example.tsv "${tmpdir}/${t}.assert"
|
|
|
|
# action
|
|
cd "${tmpdir}" || exit 1
|
|
orcli import csv "${t}.csv" --projectName "${t}"
|
|
orcli export tsv "${t}" --output "${t}.output"
|
|
|
|
# test
|
|
diff -u "${t}.assert" "${t}.output"
|