diff --git a/tests/recipes/34_add_signature b/tests/recipes/34_add_signature deleted file mode 100644 index c1e1212..0000000 --- a/tests/recipes/34_add_signature +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# Moving the authenticode signing to the PE/MSI file. - -. $(dirname $0)/../test_library - -# PE file -test_name="341. Moving the authenticode signing to the PE file" -printf "\n%s\n" "$test_name" -if [ -s "test.exe" ] - then - cp "test.exe" "test_341.exe" - faketime -f '@2019-01-01 00:00:00' /bin/bash -c ' - script_path=$(pwd) - ../../osslsigncode sign -h sha256 \ - -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ - -in "test.exe" -out "test_341_signed.exe" && \ - ../../osslsigncode add \ - -in "test_341_signed.exe" -out "test_341.exe"' - verify_signature "$?" "341" "exe" "UNUSED_PATTERN" "sha256sum" "ASCII" "osslsigncode" "UNUSED_PATTERN" - test_result "$?" "$test_name" - else - printf "Test skipped\n" - fi - -# CAB file -# Command is not supported for non-PE - -# MSI file -test_name="342. Moving the authenticode signing to the MSI file" -printf "\n%s\n" "$test_name" -if [ -s "sample.msi" ] - then - cp "sample.msi" "test_342.msi" - faketime -f '@2019-01-01 00:00:00' /bin/bash -c ' - script_path=$(pwd) - ../../osslsigncode sign -h sha256 \ - -certs "${script_path}/../certs/cert.pem" -key "${script_path}/../certs/key.pem" \ - -in "sample.msi" -out "test_342_signed.msi" && \ - ../../osslsigncode add \ - -in "test_342_signed.msi" -out "test_342.msi"' - verify_signature "$?" "342" "msi" "UNUSED_PATTERN" "sha256sum" "ASCII" "osslsigncode" "UNUSED_PATTERN" - test_result "$?" "$test_name" - else - printf "Test skipped\n" - fi - -exit 0 diff --git a/tests/recipes/36_add_signature_blob b/tests/recipes/36_add_signature_blob index ca90dd0..ee1a20e 100644 --- a/tests/recipes/36_add_signature_blob +++ b/tests/recipes/36_add_signature_blob @@ -1,14 +1,13 @@ #!/bin/sh -# Moving the authenticode signing with addUnauthenticatedBlob to the PE/MSI file. +# Adding an unauthenticated blob to the PE/MSI file. . $(dirname $0)/../test_library # PE file -test_name="361. Moving the authenticode signing with addUnauthenticatedBlob to the PE file" +test_name="361. Adding an unauthenticated blob to the PE file" printf "\n%s\n" "$test_name" if [ -s "test.exe" ] then - cat "test.exe" > "test_361.exe" faketime -f '@2019-01-01 00:00:00' /bin/bash -c ' script_path=$(pwd) ../../osslsigncode sign -h sha256 \ @@ -27,7 +26,7 @@ if [ -s "test.exe" ] # Command is not supported for non-PE # MSI file -test_name="362. Moving the authenticode signing with addUnauthenticatedBlob to the MSI file" +test_name="362. Adding an unauthenticated blob to the MSI file" printf "\n%s\n" "$test_name" if [ -s "sample.msi" ] then diff --git a/tests/recipes/37_add_signature_timestamp b/tests/recipes/37_add_signature_timestamp index 0a6f6c3..a87bb96 100644 --- a/tests/recipes/37_add_signature_timestamp +++ b/tests/recipes/37_add_signature_timestamp @@ -1,14 +1,13 @@ #!/bin/sh -# Moving the authenticode signing with Authenticode timestamping to the PE/MSI file. +# Adding an authenticode timestamp to the PE/MSI file. . $(dirname $0)/../test_library # PE file -test_name="371. Moving the authenticode signing with Authenticode timestamping to the PE file" +test_name="371. Adding an authenticode timestamp to the PE file" printf "\n%s\n" "$test_name" if [ -s "test.exe" ] then - cat "test.exe" > "test_371.exe" faketime -f '@2019-01-01 00:00:00' /bin/bash -c ' script_path=$(pwd) ../../osslsigncode sign -h sha256 \ @@ -27,7 +26,7 @@ if [ -s "test.exe" ] # Command is not supported for non-PE # MSI file -test_name="372. Moving the authenticode signing with Authenticode timestamping to the MSI file" +test_name="372. Adding an authenticode timestamp to the MSI file" printf "\n%s\n" "$test_name" if [ -s "sample.msi" ] then diff --git a/tests/recipes/38_add_signature_rfc3161 b/tests/recipes/38_add_signature_rfc3161 index fc61353..0b848e0 100644 --- a/tests/recipes/38_add_signature_rfc3161 +++ b/tests/recipes/38_add_signature_rfc3161 @@ -1,14 +1,13 @@ #!/bin/sh -# Moving the authenticode signing with RFC 3161 timestamping to the PE/MSI file. +# Adding an RFC 3161 timestamp to the PE/MSI file. . $(dirname $0)/../test_library # PE file -test_name="381. Moving the authenticode signing with RFC 3161 timestamping to the PE file" +test_name="381. Adding an RFC 3161 timestamp to the PE file" printf "\n%s\n" "$test_name" if [ -s "test.exe" ] then - cat "test.exe" > "test_381.exe" faketime -f '@2019-01-01 00:00:00' /bin/bash -c ' script_path=$(pwd) ../../osslsigncode sign -h sha256 \ @@ -27,7 +26,7 @@ if [ -s "test.exe" ] # Command is not supported for non-PE # MSI file -test_name="382. Moving the authenticode signing with RFC 3161 timestamping to the MSI file" +test_name="382. Adding an RFC 3161 timestamp to the MSI file" printf "\n%s\n" "$test_name" if [ -s "sample.msi" ] then