import json: more tests

This commit is contained in:
Felix Lohmeier 2023-10-28 20:17:21 +00:00
parent d88a4b5f05
commit 91d42471bf
2 changed files with 88 additions and 0 deletions

View File

@ -0,0 +1,44 @@
#!/bin/bash
t="import-json-storeEmptyStrings"
# create tmp directory
tmpdir="$(mktemp -d)"
trap '{ rm -rf "${tmpdir}"; }' 0 2 3 15
# input
cat << "DATA" > "${tmpdir}/${t}.json"
[
{
"a": 1,
"b": 2,
"c": 3
},
{
"a": "",
"b": "",
"c": ""
},
{
"a": "$",
"b": "\\",
"c": "'"
}
]
DATA
# assertion
cat << "DATA" > "${tmpdir}/${t}.assert"
_ - a _ - b _ - c
1 2 3
$ \ '
DATA
# action
cd "${tmpdir}" || exit 1
orcli import json "${t}.json" --projectName "${t}" --storeEmptyStrings
orcli export tsv "${t}" > "${t}.output"
# test
diff -u "${t}.assert" "${t}.output"

View File

@ -0,0 +1,44 @@
#!/bin/bash
t="import-json-trimStrings"
# create tmp directory
tmpdir="$(mktemp -d)"
trap '{ rm -rf "${tmpdir}"; }' 0 2 3 15
# input
cat << "DATA" > "${tmpdir}/${t}.json"
[
{
"a": 1,
"b": 2,
"c": 3
},
{
"a": 0,
"b": " 0",
"c": "0 "
},
{
"a": "$",
"b": "\\",
"c": "'"
}
]
DATA
# assertion
cat << "DATA" > "${tmpdir}/${t}.assert"
_ - a _ - b _ - c
1 2 3
0 0 0
$ \ '
DATA
# action
cd "${tmpdir}" || exit 1
orcli import json "${t}.json" --projectName "${t}" --trimStrings
orcli export tsv "${t}" > "${t}.output"
# test
diff -u "${t}.assert" "${t}.output"