mcrypt_ecb_error.phpt 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --TEST--
  2. Test mcrypt_ecb() 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. error_reporting(E_ALL & ~E_DEPRECATED);
  12. /* Prototype : string mcrypt_ecb(int cipher, string key, string data, int mode, string iv)
  13. * Description: ECB crypt/decrypt data using key key with cipher cipher starting with iv
  14. * Source code: ext/mcrypt/mcrypt.c
  15. * Alias to functions:
  16. */
  17. echo "*** Testing mcrypt_ecb() : error conditions ***\n";
  18. //Test mcrypt_ecb with one more than the expected number of arguments
  19. echo "\n-- Testing mcrypt_ecb() function with more than expected no. of arguments --\n";
  20. $cipher = 10;
  21. $key = 'string_val';
  22. $data = 'string_val';
  23. $mode = 10;
  24. $iv = 'string_val';
  25. $extra_arg = 10;
  26. var_dump( mcrypt_ecb($cipher, $key, $data, $mode, $iv, $extra_arg) );
  27. // Testing mcrypt_ecb with one less than the expected number of arguments
  28. echo "\n-- Testing mcrypt_ecb() function with less than expected no. of arguments --\n";
  29. $cipher = 10;
  30. $key = 'string_val';
  31. $data = 'string_val';
  32. var_dump( mcrypt_ecb($cipher, $key, $data) );
  33. ?>
  34. ===DONE===
  35. --EXPECTF--
  36. *** Testing mcrypt_ecb() : error conditions ***
  37. -- Testing mcrypt_ecb() function with more than expected no. of arguments --
  38. Warning: mcrypt_ecb() expects at most 5 parameters, 6 given in %s on line %d
  39. NULL
  40. -- Testing mcrypt_ecb() function with less than expected no. of arguments --
  41. Warning: mcrypt_ecb() expects at least 4 parameters, 3 given in %s on line %d
  42. NULL
  43. ===DONE===