aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/files/datacite/casecreate.sh
blob: 82655dc33970106ec997be8e81d2ca3c4d06d80c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#
# casecreate.sh creates a new test case file pair by copying the last one.
#
set -eo pipefail

max=$(find . -name 'datacite_doc_*' | sort -n | tail -1 | grep -Eo '[0-9]+')
if [ -z $max ]; then
    echo "failed, expected datacite_doc_[NUMBER]..."
    exit 1
fi
new=$((max+1))
cp "datacite_doc_$max.json" "datacite_doc_$new.json"
cp "datacite_result_$max.json" "datacite_result_$new.json"

[ -f ./caseview.sh ] && ./caseview.sh "$new"