12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #!/bin/sh
- ### Constants
- c_valgrind_min=1
- reference_file="${scriptdir}/verify-strings/test_scrypt.good"
- passphrase_file="${s_basename}-passphrase.txt"
- bad_passphrase_file="${s_basename}-passphrase-bad.txt"
- encrypted_reference_file="${scriptdir}/verify-strings/test_scrypt_good.enc"
- decrypted_reference_file="${s_basename}-attempt_reference.txt"
- decrypted_badpass_file="${s_basename}-decrypt-badpass.txt"
- decrypted_badpass_log="${s_basename}-decrypt-badpass.log"
- decrypted_no_file_log="${s_basename}-decrypt-no-file.log"
- scenario_cmd() {
- # Create the passphrase file.
- echo "${password}" > "${passphrase_file}"
- # Decrypt a reference file using --passphrase file:FILENAME.
- setup_check "scrypt dec file"
- ${c_valgrind_cmd} "${bindir}/scrypt" \
- dec --passphrase file:"${passphrase_file}" \
- "${encrypted_reference_file}" "${decrypted_reference_file}"
- echo $? > "${c_exitfile}"
- # The decrypted reference file should match the reference.
- setup_check "scrypt dec file output against reference"
- cmp -s "${decrypted_reference_file}" "${reference_file}"
- echo $? > "${c_exitfile}"
- # Attempt to decrypt the reference file with a non-existent file.
- # We want this command to fail with 1.
- setup_check "scrypt dec file none"
- ${c_valgrind_cmd} "${bindir}/scrypt" \
- dec --passphrase file:THIS_FILE_DOES_NOT_EXIST \
- "${encrypted_reference_file}" "${decrypted_reference_file}" \
- 2> "${decrypted_no_file_log}"
- expected_exitcode 1 $? > "${c_exitfile}"
- # We should have received an error message.
- setup_check "scrypt dec file none error"
- grep -q "scrypt: fopen(THIS_FILE_DOES_NOT_EXIST)" \
- "${decrypted_no_file_log}"
- echo "$?" > "${c_exitfile}"
- # We should not have created a file.
- setup_check "scrypt dec file none no file"
- test -e "${decrypted_badpass_file}"
- expected_exitcode 1 $? > "${c_exitfile}"
- # Attempt to decrypt the reference file with an incorrect passphrase.
- # We want this command to fail with 1.
- setup_check "scrypt dec file bad"
- echo "bad-pass" > "${bad_passphrase_file}"
- ${c_valgrind_cmd} "${bindir}/scrypt" \
- dec --passphrase file:"${bad_passphrase_file}" \
- "${encrypted_reference_file}" "${decrypted_reference_file}" \
- 2> "${decrypted_badpass_log}"
- expected_exitcode 1 $? > "${c_exitfile}"
- # We should have received an error message.
- setup_check "scrypt dec file bad error"
- grep -q "scrypt: Passphrase is incorrect" "${decrypted_badpass_log}"
- echo "$?" > "${c_exitfile}"
- # We should not have created a file.
- setup_check "scrypt dec file bad no file"
- test -e "${decrypted_badpass_file}"
- expected_exitcode 1 $? > "${c_exitfile}"
- }
|