/
githubmirror
/
xmlsec
Обзор
Документация
Войти
/
githubmirror
/
xmlsec
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.3.8
tests/testKeys.sh
100 строк
3 KB
lsh123
(xmlsec-tests) Ensure tests can run with -jN (#789)
13 май 2024, 04:50
Не верифицирован
13 май 2024, 04:50
cc0bb74
Код
Авторство
О чём код?
#!/bin/sh # # This script needs to be called from testrun.sh script # # ensure this script is called from testrun.sh if [ -z "$xmlsec_app" -o -z "$xmlsec_params" ]; then echo "This script needs to be called from testrun.sh script" exit 1 fi ########################################################################## ########################################################################## ########################################################################## if [ -z "$XMLSEC_TEST_REPRODUCIBLE" ]; then echo "--- testKeys started for xmlsec-$crypto library ($timestamp) ---" fi echo "--- LD_LIBRARY_PATH=$LD_LIBRARY_PATH" echo "--- LTDL_LIBRARY_PATH=$LTDL_LIBRARY_PATH" if [ -z "$XMLSEC_TEST_REPRODUCIBLE" ]; then echo "--- log file is $logfile" fi echo "--- testKeys started for xmlsec-$crypto library ($timestamp) ---" >> $logfile echo "--- LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $logfile echo "--- LTDL_LIBRARY_PATH=$LTDL_LIBRARY_PATH" >> $logfile ########################################################################## ########################################################################## ########################################################################## echo "--------- Positive Testing ----------" execKeysTest $res_success \ "hmac" \ "test-hmac-sha1" \ "hmac-192" execKeysTest $res_success \ "rsa" \ "test-rsa" \ "rsa-1024" \ "$topfolder/keys/largersakey$priv_key_suffix" \ "$topfolder/keys/largersapubkey" \ "$topfolder/keys/largersacert" \ "$topfolder/aleksey-xmldsig-01/enveloped-sha1-rsa-sha1" \ "--pwd secret123 --enabled-key-data key-name" execKeysTest $res_success \ "dsa" \ "test-dsa" \ "dsa-1024" \ "$topfolder/keys/dsakey" \ "$topfolder/keys/dsapubkey" \ "$topfolder/keys/dsacert" \ "$topfolder/aleksey-xmldsig-01/enveloped-sha1-dsa-sha1" \ "--pwd secret123 --enabled-key-data key-name" execKeysTest $res_success \ "ec" \ "" \ "ec" \ "$topfolder/keys/ecdsa-secp256r1-key" \ "$topfolder/keys/ecdsa-secp256r1-pubkey" \ "$topfolder/keys/ecdsa-secp256r1-cert" \ "$topfolder/aleksey-xmldsig-01/enveloped-sha1-ecdsa-sha1" \ "--pwd secret123 --enabled-key-data key-name" # generating large dh keys takes forever execKeysTest $res_success \ "dh" \ "" \ "dh" execKeysTest $res_success \ "des" \ "test-des" \ "des-192" execKeysTest $res_success \ "aes" \ "test-aes128" \ "aes-128" execKeysTest $res_success \ "aes" \ "test-aes192" \ "aes-192" execKeysTest $res_success \ "aes" \ "test-aes256" \ "aes-256" ########################################################################## ########################################################################## ########################################################################## echo "--- testKeys finished ---" >> $logfile echo "--- testKeys finished ---" if [ -z "$XMLSEC_TEST_REPRODUCIBLE" ]; then echo "--- detailed log is written to $logfile ---" fi