1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 18:15:42 +01:00

Improve integration test uploadToProvider.sh

* Remove `let` from the script as it will return 1 (signalling an error) on the
   first iteration, which will stop the script when in `set -e` mode.
   It also is unnecessary, as the increment can be done at the place of
   usage directly.
 * Added a "remainder aka modulo" division, otherwise there will be no
   TLP option set, once we run out of the four entries in the TLSs
   list.
 * (Style) remove superfluous semicolons.
This commit is contained in:
Bernhard Reiter 2022-04-13 17:46:10 +02:00
parent 2fbe0fed7e
commit 3da37a533b
No known key found for this signature in database
GPG key ID: 2B7BA3BF9BC3A554

View file

@ -12,7 +12,6 @@
set -e
# assumes that the following script only downloads file with filenames
# following https://docs.oasis-open.org/csaf/csaf/v2.0/cs01/csaf-v2.0-cs01.html#51-filename
# which are save to process further
@ -20,11 +19,11 @@ set -e
TLPs=("white" "green" "amber" "red")
COUNTER=0
for f in $(ls csaf_examples);
do
../../bin-linux-amd64/csaf_uploader -a upload -t ${TLPs[$COUNTER]} \
-u https://localhost:8443/cgi-bin/csaf_provider.go --insecure -P security123 \
--client-cert ~/devca1/testclient1.crt --client-key ~/devca1/testclient1-key.pem \
./csaf_examples/"$f";
let COUNTER++
done;
for f in $(ls csaf_examples); do
../../bin-linux-amd64/csaf_uploader --insecure -P security123 -a upload \
-t ${TLPs[$((COUNTER++ % 4))]} \
-u https://localhost:8443/cgi-bin/csaf_provider.go \
--client-cert ~/devca1/testclient1.crt \
--client-key ~/devca1/testclient1-key.pem \
./csaf_examples/"$f"
done