mcrypt_decrypt_error.phpt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --TEST--
  2. Test mcrypt_decrypt() function : error conditions
  3. --SKIPIF--
  4. <?php
  5. if (!extension_loaded("mcrypt")) {
  6. print "skip - mcrypt extension not loaded";
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. /* Prototype : string mcrypt_decrypt(string cipher, string key, string data, string mode, string iv)
  12. * Description: OFB crypt/decrypt data using key key with cipher cipher starting with iv
  13. * Source code: ext/mcrypt/mcrypt.c
  14. * Alias to functions:
  15. */
  16. echo "*** Testing mcrypt_decrypt() : error conditions ***\n";
  17. //Test mcrypt_decrypt with one more than the expected number of arguments
  18. echo "\n-- Testing mcrypt_decrypt() function with more than expected no. of arguments --\n";
  19. $cipher = 'string_val';
  20. $key = 'string_val';
  21. $data = 'string_val';
  22. $mode = 'string_val';
  23. $iv = 'string_val';
  24. $extra_arg = 10;
  25. var_dump( mcrypt_decrypt($cipher, $key, $data, $mode, $iv, $extra_arg) );
  26. // Testing mcrypt_decrypt with one less than the expected number of arguments
  27. echo "\n-- Testing mcrypt_decrypt() function with less than expected no. of arguments --\n";
  28. $cipher = 'string_val';
  29. $key = 'string_val';
  30. $data = 'string_val';
  31. var_dump( mcrypt_decrypt($cipher, $key, $data) );
  32. ?>
  33. ===DONE===
  34. --EXPECTF--
  35. *** Testing mcrypt_decrypt() : error conditions ***
  36. -- Testing mcrypt_decrypt() function with more than expected no. of arguments --
  37. Warning: mcrypt_decrypt() expects at most 5 parameters, 6 given in %s on line %d
  38. NULL
  39. -- Testing mcrypt_decrypt() function with less than expected no. of arguments --
  40. Warning: mcrypt_decrypt() expects at least 4 parameters, 3 given in %s on line %d
  41. NULL
  42. ===DONE===