1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857
|
#!/bin/bash -x
OS_ARCH=`uname -o`
OS_KERNEL=`uname -s`
#
# Get command line params
#
testfile="$1"
crypto="$2"
topfolder="$3"
xmlsec_app="$4"
file_format="$5"
timestamp=`date +%Y%m%d_%H%M%S`
exit_code=0
if test "z$OS_ARCH" = "zCygwin" || test "z$OS_ARCH" = "zMsys" ; then
topfolder=`cygpath -wa "$topfolder"`
xmlsec_app=`cygpath -a "$xmlsec_app"`
fi
# Ensure we get detailed errors
xmlsec_params="--verbose"
#
# Prepare folders
#
if [ "z$TMPFOLDER" = "z" ] ; then
TMPFOLDER=/tmp
fi
testname=`basename $testfile`
testfolder=$TMPFOLDER/xmlsec-$testname-$crypto-$timestamp
mkdir -p $testfolder
if test "z$OS_ARCH" = "zCygwin" || test "z$OS_ARCH" = "zMsys" ; then
tmpfile=`cygpath -wa $testfolder/tmp.tmp`
logfile=`cygpath -wa $testfolder/full.log`
curlogfile=`cygpath -wa $testfolder/cur.log`
failedlogfile=`cygpath -wa $testfolder/failed.log`
else
tmpfile=$testfolder/tmp.tmp
logfile=$testfolder/full.log
curlogfile=$testfolder/cur.log
failedlogfile=$testfolder/failed.log
fi
#
# Valgrind
#
if [ "z$crypto" = "zopenssl" ] ; then
valgrind_suppression="--suppressions=$topfolder/valgrind-openssl.supp"
elif [ "z$crypto" = "znss" ] ; then
valgrind_suppression="--suppressions=$topfolder/valgrind-nss.supp"
elif [ "z$crypto" = "zgcrypt" ] ; then
valgrind_suppression="--suppressions=$topfolder/valgrind-gcrypt.supp"
elif [ "z$crypto" = "zgnutls" ] ; then
valgrind_suppression="--suppressions=$topfolder/valgrind-gcrypt.supp"
else
valgrind_suppression=""
fi
valgrind_options="--leak-check=full --show-reachable=yes --num-callers=32 --track-origins=yes -s"
if [ -n "$DEBUG_MEMORY" ] ; then
export VALGRIND="valgrind $valgrind_options $valgrind_suppression"
export REPEAT=3
xmlsec_params="$xmlsec_params --repeat $REPEAT"
fi
#
# Setup crypto engine
#
if [ "z$XMLSEC_DEFAULT_CRYPTO" != "z" ] ; then
xmlsec_params="$xmlsec_params --crypto $XMLSEC_DEFAULT_CRYPTO"
elif [ "z$crypto" != "z" ] ; then
xmlsec_params="$xmlsec_params --crypto $crypto"
fi
# What flavour of OpenSSL do we have?
case $XMLSEC_OPENSSL_VERSION in
*LibreSSL*)
xmlsec_openssl_flavor="libressl"
;;
*BoringSSL*)
xmlsec_openssl_flavor="boringssl"
;;
*)
xmlsec_openssl_flavor="openssl"
;;
esac
#
# Setup extra vars
#
extra_vars=
if [ "z$crypto" = "zopenssl" -a "z$XMLSEC_OPENSSL_TEST_CONFIG" != "z" ] ; then
if test "z$OS_ARCH" = "zCygwin" || test "z$OS_ARCH" = "zMsys" ; then
opensslconf=`cygpath -wa $topfolder/$XMLSEC_OPENSSL_TEST_CONFIG`
else
opensslconf=$topfolder/$XMLSEC_OPENSSL_TEST_CONFIG
fi
extra_vars="$extra_vars OPENSSL_CONF=$opensslconf"
export OPENSSL_CONF="$opensslconf"
fi
if [ "z$crypto" = "zopenssl" ] ; then
# phaos certs use RSA-MD5 which might be disabled
extra_vars="$extra_vars OPENSSL_ENABLE_MD5_VERIFY=1"
export OPENSSL_ENABLE_MD5_VERIFY=1
fi
#
# Setup keys config
#
cert_format=$file_format
#
# On Windows, we need to force persistence for pkcs12
#
pkcs12_key_extra_options=""
if [ "z$crypto" = "zmscrypto" -o "z$crypto" = "zmscng" ] ; then
pkcs12_key_extra_options="--pkcs12-persist $pkcs12_key_extra_options"
fi
#
# GCrypt only supports DER format for now, others are good to go with PKCS12 for private keys
#
if [ "z$crypto" != "zgcrypt" ] ; then
priv_key_option="$pkcs12_key_extra_options --pkcs12"
priv_key_format="p12"
else
priv_key_option="--privkey-der"
priv_key_format="der"
fi
#
# GCrypt only supports DER format for now, others are good to go with certs for public keys
#
if [ "z$crypto" != "zgcrypt" ] ; then
pub_key_option="--pubkey-cert-der"
pub_key_format="crt"
else
pub_key_option="--pubkey-der"
pub_key_format="der"
fi
if [ "z$crypto" = "zgcrypt" ] ; then
pub_key_suffix="-gcrypt"
else
pub_key_suffix=""
fi
# On Windows, we needs to specify Crypto Service Provider (CSP)
# in the pkcs12 file to ensure it is loaded correctly to be used
# with SHA2 algorithms. Worse, the CSP is different for XP and older
# versions
if [ "z$crypto" = "zmscrypto" -o "z$crypto" = "zmscng" ] ; then
# Samples:
# Cygwin : CYGWIN_NT-5.1
# Msys : MINGW32_NT-5.1
if expr "$OS_KERNEL" : '.*_NT-5\.1' > /dev/null; then
priv_key_suffix="-winxp"
else
priv_key_suffix="-win"
fi
else
priv_key_suffix=""
fi
#
# Misc
#
if [ -n "$PERF_TEST" ] ; then
xmlsec_params="$xmlsec_params --repeat $PERF_TEST"
fi
if test "z$OS_ARCH" = "zCygwin" || test "z$OS_ARCH" = "zMsys" ; then
diff_param=-uw
else
diff_param=-u
fi
#
# Setup crypto config folder
#
config_number=0
setupCryptoConfig() {
config_number=$((config_number + 1))
if test "z$OS_ARCH" = "zCygwin" || test "z$OS_ARCH" = "zMsys" ; then
crypto_config_folder=`cygpath -wa $testfolder/crypto-config-$config_number`
else
crypto_config_folder=$testfolder/crypto-config-$config_number
fi
mkdir $crypto_config_folder
# see https://learn.microsoft.com/en-us/windows/win32/api/wincrypt/nf-wincrypt-certopensystemstorea
if [ "z$crypto" = "zmscng" ] ; then
default_crypto_config="MY"
else
default_crypto_config="$crypto_config_folder"
fi
}
tearDownCryptoConfig() {
if [ -n "$crypto_config_folder" ]; then
rm -rf $crypto_config_folder
fi
unset crypto_config_folder
unset default_crypto_config
}
setupTest() {
# prepare
old_pwd=`pwd`
setupCryptoConfig
}
tearDownTest() {
# cleanup
tearDownCryptoConfig
rm -f $tmpfile $tmpfile.2 $tmpfile.3
if [ -n "$old_pwd" ]; then
cd $old_pwd
fi
unset old_pwd
}
#
# Check the command result and print it to stdout
#
res_success="success"
res_fail="fail"
count_success=0
count_fail=0
count_skip=0
printRes() {
expected_res="$1"
actual_res="$2"
# convert status to string
if [ $actual_res -eq 0 ]; then
actual_res_str=$res_success
else
actual_res_str=$res_fail
fi
# check
if [ "z$expected_res" = "z$actual_res_str" ] ; then
count_success=`expr $count_success + 1`
actual_res="0"
echo " OK"
else
count_fail=`expr $count_fail + 1`
actual_res="1"
echo " Fail"
fi
# memlog
if [ -f .memdump ] ; then
cat .memdump >> $curlogfile
fi
return "$actual_res"
}
printCheckStatus() {
check_res="$1"
if [ $check_res -eq 0 ]; then
echo " OK"
else
count_skip=`expr $count_skip + 1`
echo " Skip"
fi
return "$check_res"
}
extra_message=""
#
# Keys test function
#
execKeysTest() {
execKeysTestWithCryptoConfig "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" ""
}
execKeysTestWithCryptoConfig() {
expected_res="$1"
req_key_data="$2"
key_name="$3"
alg_name="$4"
privkey_file="$5"
pubkey_file="$6"
certkey_file="$7"
asym_key_test="$8"
key_test_options="$9"
crypto_config="${10}"
failures=0
if [ -n "$XMLSEC_TEST_NAME" -a "$XMLSEC_TEST_NAME" != "$key_name" ]; then
return
fi
# prepare
setupTest
if test "z$OS_ARCH" = "zCygwin" || test "z$OS_ARCH" = "zMsys" ; then
keysfile=`cygpath -wa $crypto_config_folder/keys.xml`
else
keysfile=$crypto_config_folder/keys.xml
fi
# check params
if [ "z$expected_res" != "z$res_success" -a "z$expected_res" != "z$res_fail" ] ; then
echo " Bad parameter: expected_res=$expected_res"
tearDownTest
return
fi
if [ "z$crypto_config" = "z" ] ; then
crypto_config="$default_crypto_config"
fi
# starting test
echo "Test: $alg_name $extra_message"
echo "Test: $alg_name $extra_message -- expected $expected_res" > $curlogfile
extra_message=""
# check key data
if [ -n "$req_key_data" ] ; then
printf " Checking required key data "
echo "$extra_vars $xmlsec_app check-key-data $xmlsec_params --crypto-config $crypto_config $req_key_data" >> $curlogfile
$xmlsec_app check-key-data $xmlsec_params --crypto-config $crypto_config $req_key_data >> $curlogfile 2>> $curlogfile
printCheckStatus $?
res=$?
if [ $res -ne 0 ]; then
cat $curlogfile >> $logfile
tearDownTest
return
fi
fi
# run tests
# generate key
if [ -n "$alg_name" -a -n "$key_name" ]; then
printf " Creating new key "
params="--gen-key:$key_name $alg_name"
if [ -f $keysfile ] ; then
params="$params --keys-file $keysfile"
fi
echo "$extra_vars $VALGRIND $xmlsec_app keys $params $xmlsec_params --crypto-config $crypto_config $keysfile" >> $curlogfile
$VALGRIND $xmlsec_app keys $params $xmlsec_params --crypto-config $crypto_config $keysfile >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# test reading private keys
if [ -n "$privkey_file" -a -n "$asym_key_test" ]; then
# gcrypt doesn't support pkcs12
if [ "z$crypto" != "zgcrypt" ] ; then
printf " Reading private key from pkcs12 file "
rm -f $tmpfile
params="--lax-key-search --pkcs12 $privkey_file.p12 $pkcs12_key_extra_options $key_test_options --output $tmpfile $asym_key_test.tmpl"
echo "$extra_vars $VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# only gcrypt and mscrypto doesn't support keynames in pkcs12
if [ "z$crypto" != "zgcrypt" -a "z$crypto" != "zmscrypto" ] ; then
printf " Reading private key name from pkcs12 file "
rm -f $tmpfile
params="--pkcs12 $privkey_file.p12 $pkcs12_key_extra_options $key_test_options --output $tmpfile $asym_key_test.tmpl"
echo "$extra_vars $VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# only openssl supports --privkey-openssl-store
if [ "z$crypto" = "zopenssl" -a "z$xmlsec_openssl_flavor" != "zlibressl" -a "z$xmlsec_openssl_flavor" != "zboringssl" ] ; then
printf " Reading private key from pkcs12 file using ossl-store "
rm -f $tmpfile
params="--lax-key-search --privkey-openssl-store $privkey_file.p12 $pkcs12_key_extra_options $key_test_options --output $tmpfile $asym_key_test.tmpl"
echo "$extra_vars $VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# gcrypt, mscrypto, mscng, nss don't support pkcs8
if [ "z$crypto" != "zgcrypt" -a "z$crypto" != "znss" -a "z$crypto" != "zmscrypto" -a "z$crypto" != "zmscng" ] ; then
printf " Reading private key from pkcs8 pem file "
rm -f $tmpfile
params="--lax-key-search --pkcs8-pem $privkey_file.p8-pem $key_test_options --output $tmpfile $asym_key_test.tmpl"
echo "$extra_vars $VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $v $params" >> $curlogfile
$VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# gcrypt, mscrypto, mscng, nss don't support pkcs8
if [ "z$crypto" != "zgcrypt" -a "z$crypto" != "znss" -a "z$crypto" != "zmscrypto" -a "z$crypto" != "zmscng" ] ; then
printf " Reading private key from pkcs8 der file "
rm -f $tmpfile
params="--lax-key-search --pkcs8-der $privkey_file.p8-der $key_test_options --output $tmpfile $asym_key_test.tmpl"
echo "$extra_vars $VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# gcrypt doesn't support pem
# nss, mscrypto, mscng don't like private keys in pem / der
if [ "z$crypto" != "zgcrypt" -a "z$crypto" != "znss" -a "z$crypto" != "zmscrypto" -a "z$crypto" != "zmscng" ] ; then
printf " Reading private key from pem file "
rm -f $tmpfile
params="--lax-key-search --privkey-pem $privkey_file.pem $key_test_options --output $tmpfile $asym_key_test.tmpl"
echo "$extra_vars $VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# nss, mscrypto, mscng don't like private keys in pem / der
if [ "z$crypto" != "znss" -a "z$crypto" != "zmscrypto" -a "z$crypto" != "zmscng" ] ; then
printf " Reading private key from der file "
rm -f $tmpfile
params="--lax-key-search --privkey-der $privkey_file.der $key_test_options --output $tmpfile $asym_key_test.tmpl"
echo "$extra_vars $VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
fi
# test reading public keys
if [ -n "$pubkey_file" -a -n "$asym_key_test" ]; then
# only openssl supports --pubkey-openssl-store
if [ "z$crypto" = "zopenssl" -a "z$xmlsec_openssl_flavor" != "zlibressl" -a "z$xmlsec_openssl_flavor" != "zboringssl" ] ; then
printf " Reading public key from pem file using ossl-store "
rm -f $tmpfile
params="--lax-key-search --pubkey-openssl-store $pubkey_file.pem $key_test_options $asym_key_test.xml"
echo "$extra_vars $VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# nss, gcrypt don't support pem
# mscrypto, mscng don't support standalong pubkeys
if [ "z$crypto" != "zgcrypt" -a "z$crypto" != "znss" -a "z$crypto" != "zmscrypto" -a "z$crypto" != "zmscng" ] ; then
printf " Reading public key from pem file "
rm -f $tmpfile
params="--lax-key-search --pubkey-pem $pubkey_file.pem $key_test_options $asym_key_test.xml"
echo "$extra_vars $VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# gcrypt DER format is very basic
if [ "z$crypto" = "zgcrypt" -a "z$req_key_data" = "zrsa" ] ; then
pubkey_file="$pubkey_file-gcrypt"
fi
# mscrypto, mscng don't support standalong pubkeys
if [ "z$crypto" != "zmscrypto" -a "z$crypto" != "zmscng" ] ; then
printf " Reading public key from der file "
rm -f $tmpfile
params="--lax-key-search --pubkey-der $pubkey_file.der $key_test_options $asym_key_test.xml"
echo "$extra_vars $VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
fi
if [ -n "$certkey_file" -a -n "$asym_key_test" ]; then
# gcrypt doesn't support cert
# mscrypto, mscng don't support pem
if [ "z$crypto" != "zgcrypt" -a "z$crypto" != "zmscrypto" -a "z$crypto" != "zmscng" ] ; then
printf " Reading public key from pem cert file "
rm -f $tmpfile
params="--lax-key-search --pubkey-cert-pem $certkey_file.pem $key_test_options $asym_key_test.xml"
echo "$extra_vars $VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# gcrypt doesn't support cert
if [ "z$crypto" != "zgcrypt" ] ; then
printf " Reading public key from der cert file "
rm -f $tmpfile
params="--lax-key-search --pubkey-cert-der $certkey_file.der $key_test_options $asym_key_test.xml"
echo "$extra_vars $VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params" >> $curlogfile
$VALGRIND $xmlsec_app verify $xmlsec_params --crypto-config $crypto_config $params >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
fi
# save logs
cat $curlogfile >> $logfile
if [ $failures -ne 0 ] ; then
cat $curlogfile >> $failedlogfile
fi
# cleanup
tearDownTest
}
#
# DSig test function
#
execDSigTest() {
execDSigTestWithCryptoConfig "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" ""
}
execDSigTestWithCryptoConfig() {
expected_res="$1"
folder="$2"
filename="$3"
req_transforms="$4"
req_key_data="$5"
params1="$6"
params2="$7"
params3="$8"
crypto_config="$9"
failures=0
if [ -n "$XMLSEC_TEST_NAME" -a "$XMLSEC_TEST_NAME" != "$filename" ]; then
return
fi
# prepare
setupTest
# check params
if [ "z$expected_res" != "z$res_success" -a "z$expected_res" != "z$res_fail" ] ; then
echo " Bad parameter: expected_res=$expected_res"
tearDownTest
return
fi
if [ "z$crypto_config" = "z" ] ; then
crypto_config="$default_crypto_config"
fi
# starting test
if [ -n "$folder" ] ; then
cd $topfolder/$folder
full_file=$filename
echo "Test: $folder/$filename $extra_message"
echo "Test: $folder/$filename in folder " `pwd` " $extra_message -- expected $expected_res" > $curlogfile
else
full_file=$topfolder/$filename
echo "Test: $filename $extra_message"
echo "Test: $folder/$filename $extra_message -- $expected_res" > $curlogfile
fi
extra_message=""
# check transforms
if [ -n "$req_transforms" ] ; then
printf " Checking required transforms "
echo "$extra_vars $xmlsec_app check-transforms --crypto-config $crypto_config $xmlsec_params $req_transforms" >> $curlogfile
$xmlsec_app check-transforms $xmlsec_params --crypto-config $crypto_config $req_transforms >> $curlogfile 2>> $curlogfile
printCheckStatus $?
res=$?
if [ $res -ne 0 ]; then
cat $curlogfile >> $logfile
tearDownTest
return
fi
fi
# check key data
if [ -n "$req_key_data" ] ; then
printf " Checking required key data "
echo "$extra_vars $xmlsec_app check-key-data $xmlsec_params --crypto-config $crypto_config $req_key_data" >> $curlogfile
$xmlsec_app check-key-data $xmlsec_params --crypto-config $crypto_config $req_key_data >> $curlogfile 2>> $curlogfile
printCheckStatus $?
res=$?
if [ $res -ne 0 ]; then
cat $curlogfile >> $logfile
tearDownTest
return
fi
fi
# run tests
if [ -n "$params1" ] ; then
printf " Verify existing signature "
echo "$extra_vars $VALGRIND $xmlsec_app verify --X509-skip-strict-checks $xmlsec_params --crypto-config $crypto_config $params1 $full_file.xml" >> $curlogfile
$VALGRIND $xmlsec_app verify --X509-skip-strict-checks $xmlsec_params --crypto-config $crypto_config $params1 $full_file.xml >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
if [ -n "$params2" -a -z "$PERF_TEST" ] ; then
printf " Create new signature "
echo "$extra_vars $VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params2 --output $tmpfile $full_file.tmpl" >> $curlogfile
$VALGRIND $xmlsec_app sign $xmlsec_params --crypto-config $crypto_config $params2 --output $tmpfile $full_file.tmpl >> $curlogfile 2>> $curlogfile
printRes $res_success $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
if [ -n "$params3" -a -z "$PERF_TEST" ] ; then
printf " Verify new signature "
echo "$extra_vars $VALGRIND $xmlsec_app verify --X509-skip-strict-checks $xmlsec_params --crypto-config $crypto_config $params3 $tmpfile" >> $curlogfile
$VALGRIND $xmlsec_app verify --X509-skip-strict-checks $xmlsec_params --crypto-config $crypto_config $params3 $tmpfile >> $curlogfile 2>> $curlogfile
printRes $res_success $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# save logs
cat $curlogfile >> $logfile
if [ $failures -ne 0 ] ; then
cat $curlogfile >> $failedlogfile
fi
# cleanup
tearDownTest
}
#
# Enc test function
#
execEncTest() {
execEncTestWithCryptoConfig "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" ""
}
execEncTestWithCryptoConfig() {
expected_res="$1"
folder="$2"
filename="$3"
req_transforms="$4"
req_key_data="$5"
params1="$6"
params2="$7"
params3="$8"
outputTransform="$9"
crypto_config="${10}"
failures=0
if [ -n "$XMLSEC_TEST_NAME" -a "$XMLSEC_TEST_NAME" != "$filename" ]; then
return
fi
# prepare
setupTest
# check params
if [ "z$expected_res" != "z$res_success" -a "z$expected_res" != "z$res_fail" ] ; then
echo " Bad parameter: expected_res=$expected_res"
tearDownTest
return
fi
if [ "z$crypto_config" = "z" ] ; then
crypto_config="$default_crypto_config"
fi
# starting test
if [ -n "$folder" ] ; then
cd $topfolder/$folder
full_file=$filename
echo "Test: $folder/$filename $extra_message"
echo "Test: $folder/$filename in folder " `pwd` " $extra_message -- $expected_res" > $curlogfile
else
full_file=$topfolder/$filename
echo "Test: $filename $extra_message"
echo "Test: $folder/$filename $extra_message -- $expected_res" > $curlogfile
fi
extra_message=""
# check transforms
if [ -n "$req_transforms" ] ; then
printf " Checking required transforms "
echo "$extra_vars $xmlsec_app check-transforms $xmlsec_params --crypto-config $crypto_config $req_transforms" >> $curlogfile
$xmlsec_app check-transforms $xmlsec_params --crypto-config $crypto_config $req_transforms >> $curlogfile 2>> $curlogfile
printCheckStatus $?
res=$?
if [ $res -ne 0 ]; then
cat $curlogfile >> $logfile
tearDownTest
return
fi
fi
# check key data
if [ -n "$req_key_data" ] ; then
printf " Checking required key data "
echo "$extra_vars $xmlsec_app check-key-data $xmlsec_params --crypto-config $crypto_config $req_key_data" >> $curlogfile
$xmlsec_app check-key-data $xmlsec_params --crypto-config $crypto_config $req_key_data >> $curlogfile 2>> $curlogfile
printCheckStatus $?
res=$?
if [ $res -ne 0 ]; then
cat $curlogfile >> $logfile
tearDownTest
return
fi
fi
# run tests
if [ -n "$params1" ] ; then
rm -f $tmpfile
printf " Decrypt existing document "
echo "$extra_vars $VALGRIND $xmlsec_app decrypt $xmlsec_params --crypto-config $crypto_config $params1 $full_file.xml" >> $curlogfile
$VALGRIND $xmlsec_app decrypt $xmlsec_params --crypto-config $crypto_config $params1 --output $tmpfile $full_file.xml >> $curlogfile 2>> $curlogfile
res=$?
echo "=== TEST RESULT: $res; expected: $expected_res" >> $curlogfile
if [ $res -eq 0 -a "$expected_res" = "$res_success" ]; then
if [ "z$outputTransform" != "z" ] ; then
cat $tmpfile | $outputTransform > $tmpfile.2
mv $tmpfile.2 $tmpfile
fi
diff $diff_param $full_file.data $tmpfile >> $curlogfile 2>> $curlogfile
printRes $expected_res $?
else
printRes $expected_res $res
fi
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
if [ -n "$params2" -a -z "$PERF_TEST" ] ; then
rm -f $tmpfile
printf " Encrypt document "
echo "$extra_vars $VALGRIND $xmlsec_app encrypt $xmlsec_params --crypto-config $crypto_config $params2 --output $tmpfile $full_file.tmpl" >> $curlogfile
$VALGRIND $xmlsec_app encrypt $xmlsec_params --crypto-config $crypto_config $params2 --output $tmpfile $full_file.tmpl >> $curlogfile 2>> $curlogfile
printRes $res_success $?
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
if [ -n "$params3" -a -z "$PERF_TEST" ] ; then
rm -f $tmpfile.2
printf " Decrypt new document "
echo "$extra_vars $VALGRIND $xmlsec_app decrypt $xmlsec_params --crypto-config $crypto_config $params3 --output $tmpfile.2 $tmpfile" >> $curlogfile
$VALGRIND $xmlsec_app decrypt $xmlsec_params --crypto-config $crypto_config $params3 --output $tmpfile.2 $tmpfile >> $curlogfile 2>> $curlogfile
res=$?
if [ $res -eq 0 ]; then
if [ "z$outputTransform" != "z" ] ; then
cat $tmpfile.2 | $outputTransform > $tmpfile
mv $tmpfile $tmpfile.2
fi
diff $diff_param $full_file.data $tmpfile.2 >> $curlogfile 2>> $curlogfile
printRes $res_success $?
else
printRes $res_success $res
fi
if [ $? -ne 0 ]; then
failures=`expr $failures + 1`
fi
fi
# save logs
cat $curlogfile >> $logfile
if [ $failures -ne 0 ] ; then
cat $curlogfile >> $failedlogfile
fi
# cleanup
tearDownTest
}
# prepare
rm -rf $tmpfile $tmpfile.2 $tmpfile.3
# run tests
. "$testfile"
# calculate success
percent_success=0
count_total=`expr $count_success + $count_fail + $count_skip`
if [ $count_total -gt 0 ] ; then
percent_success=`expr 100 \* $count_success / $count_total`
fi
if [ "z$crypto" = "zopenssl" ] ; then
min_percent_success=90
elif [ "z$crypto" = "znss" ] ; then
min_percent_success=90
elif [ "z$crypto" = "zgnutls" ] ; then
min_percent_success=80
elif [ "z$crypto" = "zmscng" ] ; then
min_percent_success=80
elif [ "z$crypto" = "zmscrypto" ] ; then
min_percent_success=30
elif [ "z$crypto" = "zgcrypt" ] ; then
min_percent_success=30
else
min_percent_success=50
fi
# print results
echo "--- TOTAL OK: $count_success; OK (percent): $percent_success; TOTAL FAILED: $count_fail; TOTAL SKIPPED: $count_skip" >> $logfile
echo "--- TOTAL OK: $count_success; OK (percent): $percent_success; TOTAL FAILED: $count_fail; TOTAL SKIPPED: $count_skip"
# print log file if failed (we have to have at least some good tests)
if [ $count_fail -ne 0 ] ; then
cat $failedlogfile
exit_code=$count_fail
elif [ $count_success -eq 0 ] ; then
cat $logfile
exit_code=1
elif [ -z "$XMLSEC_TEST_IGNORE_PERCENT_SUCCESS" -a $min_percent_success -gt $percent_success ]; then
echo "--- SUCCESS PERCENT $percent_success IS LOWER THAN THE EXPECTED $min_percent_success PERCENT, FAILING TESTS" >> $logfile
echo "--- If you disabled some features and expect lower success percent then set environment variable 'XMLSEC_TEST_IGNORE_PERCENT_SUCCESS' before running the test" >> $logfile
echo "--- SUCCESS PERCENT $percent_success IS LOWER THAN THE EXPECTED $min_percent_success PERCENT, FAILING TESTS"
echo "--- If you disabled some features and expect lower success percent then set environment variable 'XMLSEC_TEST_IGNORE_PERCENT_SUCCESS' before running the test"
cat $logfile
exit_code=1
fi
# cleanup
rm -rf $tmpfile $tmpfile.2 tmpfile.3 $curlogfile
exit $exit_code
|