imap_fetchheader_error.phpt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --TEST--
  2. Test imap_fetchheader() function : error conditions - incorrect number of args
  3. --SKIPIF--
  4. <?php
  5. require_once(dirname(__FILE__).'/skipif.inc');
  6. ?>
  7. --FILE--
  8. <?php
  9. /* Prototype : string imap_fetchheader(resource $stream_id, int $msg_no [, int $options])
  10. * Description: Get the full unfiltered header for a message
  11. * Source code: ext/imap/php_imap.c
  12. */
  13. /*
  14. * Pass an incorrect number of arguments to imap_fetchheader() to test behaviour
  15. */
  16. echo "*** Testing imap_fetchheader() : error conditions ***\n";
  17. require_once(dirname(__FILE__).'/imap_include.inc');
  18. //Test imap_fetchheader with one more than the expected number of arguments
  19. echo "\n-- Testing imap_fetchheader() function with more than expected no. of arguments --\n";
  20. $stream_id = imap_open($server, $username, $password);
  21. $msg_no = 10;
  22. $options = 10;
  23. $extra_arg = 10;
  24. var_dump( imap_fetchheader($stream_id, $msg_no, $options, $extra_arg) );
  25. // Testing imap_fetchheader with one less than the expected number of arguments
  26. echo "\n-- Testing imap_fetchheader() function with less than expected no. of arguments --\n";
  27. var_dump( imap_fetchheader($stream_id) );
  28. imap_close($stream_id);
  29. ?>
  30. ===DONE===
  31. --EXPECTF--
  32. *** Testing imap_fetchheader() : error conditions ***
  33. -- Testing imap_fetchheader() function with more than expected no. of arguments --
  34. Warning: imap_fetchheader() expects at most 3 parameters, 4 given in %s on line %d
  35. NULL
  36. -- Testing imap_fetchheader() function with less than expected no. of arguments --
  37. Warning: imap_fetchheader() expects at least 2 parameters, 1 given in %s on line %d
  38. NULL
  39. ===DONE===