imap_fetchbody_error.phpt 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --TEST--
  2. Test imap_fetchbody() 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_fetchbody(resource $stream_id, int $msg_no, string $section
  10. * [, int $options])
  11. * Description: Get a specific body section
  12. * Source code: ext/imap/php_imap.c
  13. */
  14. /*
  15. * Pass an incorrect number of arguments to imap_fetchbody() to test behaviour
  16. */
  17. echo "*** Testing imap_fetchbody() : error conditions ***\n";
  18. require_once(dirname(__FILE__).'/imap_include.inc');
  19. //Test imap_fetchbody with one more than the expected number of arguments
  20. echo "\n-- Testing imap_fetchbody() function with more than expected no. of arguments --\n";
  21. $stream_id = setup_test_mailbox('', 1); // set up temp mailbox with 1 simple msg
  22. $msg_no = 1;
  23. $section = '1';
  24. $options = FT_PEEK;
  25. $extra_arg = 10;
  26. var_dump( imap_fetchbody($stream_id, $msg_no, $section, $options, $extra_arg) );
  27. // Testing imap_fetchbody with one less than the expected number of arguments
  28. echo "\n-- Testing imap_fetchbody() function with less than expected no. of arguments --\n";
  29. var_dump( imap_fetchbody($stream_id, $msg_no) );
  30. ?>
  31. ===DONE===
  32. --CLEAN--
  33. <?php
  34. require_once(dirname(__FILE__).'/clean.inc');
  35. ?>
  36. --EXPECTF--
  37. *** Testing imap_fetchbody() : error conditions ***
  38. -- Testing imap_fetchbody() function with more than expected no. of arguments --
  39. Create a temporary mailbox and add 1 msgs
  40. .. mailbox '{%s}%s' created
  41. Warning: imap_fetchbody() expects at most 4 parameters, 5 given in %s on line %d
  42. NULL
  43. -- Testing imap_fetchbody() function with less than expected no. of arguments --
  44. Warning: imap_fetchbody() expects at least 3 parameters, 2 given in %s on line %d
  45. NULL
  46. ===DONE===