2022-12-04 00:39:53 +01:00
|
|
|
#!/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
|
2023-01-12 11:18:06 +01:00
|
|
|
orcli import csv "${t}.csv" --projectName "${t}"
|
|
|
|
orcli export tsv "${t}" --output "${t}.output"
|
2022-12-04 00:39:53 +01:00
|
|
|
|
|
|
|
# test
|
|
|
|
diff -u "${t}.assert" "${t}.output"
|