imap_fetchbody_basic.phpt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. --TEST--
  2. Test imap_fetchbody() function : basic functionality
  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. echo "*** Testing imap_fetchbody() : basic functionality ***\n";
  15. require_once(dirname(__FILE__).'/imap_include.inc');
  16. // Initialise all required variables
  17. // set up mailbox with one message
  18. $stream_id = setup_test_mailbox('', 1, $mailbox, 'notSimple');
  19. $msg_no = 1;
  20. $section = '2';
  21. $options = array ('FT_UID' => FT_UID, 'FT_PEEK' => FT_PEEK, 'FT_INTERNAL' => FT_INTERNAL);
  22. // Calling imap_fetchbody() with all possible arguments
  23. echo "\n-- All possible arguments --\n";
  24. foreach ($options as $key => $option) {
  25. echo "-- Option is $key --\n";
  26. switch ($key) {
  27. case 'FT_UID';
  28. $msg_uid = imap_uid($stream_id, $msg_no);
  29. var_dump( imap_fetchbody($stream_id, $msg_uid, $section, $option) );
  30. break;
  31. case 'FT_PEEK';
  32. var_dump( imap_fetchbody($stream_id, $msg_no, $section, $option) );
  33. $overview = imap_fetch_overview($stream_id, 1);
  34. echo "Seen Flag: ";
  35. var_dump( $overview[0]->seen );
  36. break;
  37. case 'FT_INTERNAL';
  38. var_dump( imap_fetchbody($stream_id, $msg_no, $section, $option) );
  39. break;
  40. }
  41. }
  42. // Calling imap_fetchbody() with mandatory arguments
  43. echo "\n-- Mandatory arguments --\n";
  44. var_dump( imap_fetchbody($stream_id, $msg_no, $section) );
  45. $overview = imap_fetch_overview($stream_id, 1);
  46. echo "Seen Flag: ";
  47. var_dump( $overview[0]->seen );
  48. ?>
  49. ===DONE===
  50. --CLEAN--
  51. <?php
  52. require_once(dirname(__FILE__).'/clean.inc');
  53. ?>
  54. --EXPECTF--
  55. *** Testing imap_fetchbody() : basic functionality ***
  56. Create a temporary mailbox and add 1 msgs
  57. .. mailbox '{%s}%s' created
  58. -- All possible arguments --
  59. -- Option is FT_UID --
  60. %unicode|string%(36) "message 2:yyyyyyyyyyyyyyyyyyyyyyyyyy"
  61. -- Option is FT_PEEK --
  62. %unicode|string%(36) "message 2:yyyyyyyyyyyyyyyyyyyyyyyyyy"
  63. Seen Flag: int(%d)
  64. -- Option is FT_INTERNAL --
  65. %unicode|string%(36) "message 2:yyyyyyyyyyyyyyyyyyyyyyyyyy"
  66. -- Mandatory arguments --
  67. %unicode|string%(36) "message 2:yyyyyyyyyyyyyyyyyyyyyyyyyy"
  68. Seen Flag: int(%d)
  69. ===DONE===