mirror of
https://github.com/opencultureconsulting/orcli.git
synced 2025-03-09 00:00:29 +01:00
test import csv --separator
This commit is contained in:
parent
fba2160dc7
commit
e82b306839
4
tests/data/example-separator.csv
Normal file
4
tests/data/example-separator.csv
Normal file
@ -0,0 +1,4 @@
|
||||
a; b; c
|
||||
1; 2; 3
|
||||
0; 0; 0
|
||||
$; \; '
|
|
21
tests/import-csv-separator.sh
Normal file
21
tests/import-csv-separator.sh
Normal file
@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
t="import-csv-separator"
|
||||
|
||||
# create tmp directory
|
||||
tmpdir="$(mktemp -d)"
|
||||
trap '{ rm -rf "${tmpdir}"; }' 0 2 3 15
|
||||
|
||||
# input
|
||||
cp data/example-separator.csv "${tmpdir}/${t}.csv"
|
||||
|
||||
# assertion
|
||||
cp data/example.tsv "${tmpdir}/${t}.assert"
|
||||
|
||||
# action
|
||||
cd "${tmpdir}" || exit 1
|
||||
orcli import csv "${t}.csv" --projectName "${t}" --separator "; "
|
||||
orcli export tsv "${t}" > "${t}.output"
|
||||
|
||||
# test
|
||||
diff -u "${t}.assert" "${t}.output"
|
Loading…
x
Reference in New Issue
Block a user