imap_fetchheader_basic.phpt 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. --TEST--
  2. Test imap_fetchheader() function : basic function
  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. echo "*** Testing imap_fetchheader() : basic functionality ***\n";
  14. require_once(dirname(__FILE__).'/imap_include.inc');
  15. // Initialise all required variables
  16. $stream_id = setup_test_mailbox('', 1, $mailbox, 'multiPart'); // setup temp mailbox with 1 msg
  17. $msg_no = 1;
  18. $options = array('FT_UID' => FT_UID, 'FT_INTERNAL' => FT_INTERNAL,
  19. 'FT_PREFETCHTEXT' => FT_PREFETCHTEXT);
  20. // Calling imap_fetchheader() with all possible arguments
  21. echo "\n-- All possible arguments --\n";
  22. foreach ($options as $key => $option) {
  23. echo "-- Option is $key --\n";
  24. if ($key == 'FT_UID') {
  25. $msg_uid = imap_uid($stream_id, $msg_no);
  26. var_dump(imap_fetchheader($stream_id, $msg_uid, $option));
  27. } else {
  28. var_dump(imap_fetchheader($stream_id, $msg_no, $option));
  29. }
  30. }
  31. // Calling imap_fetchheader() with mandatory arguments
  32. echo "\n-- Mandatory arguments --\n";
  33. var_dump( imap_fetchheader($stream_id, $msg_no) );
  34. ?>
  35. ===DONE===
  36. --CLEAN--
  37. <?php
  38. require_once(dirname(__FILE__).'/clean.inc');
  39. ?>
  40. --EXPECTF--
  41. *** Testing imap_fetchheader() : basic functionality ***
  42. Create a temporary mailbox and add 1 msgs
  43. .. mailbox '%s.phpttest' created
  44. -- All possible arguments --
  45. -- Option is FT_UID --
  46. string(%d) "From: foo@anywhere.com
  47. Subject: Test msg 1
  48. To: %s
  49. MIME-Version: 1.0
  50. Content-Type: %s; %s
  51. "
  52. -- Option is FT_INTERNAL --
  53. string(%d) "From: foo@anywhere.com
  54. Subject: Test msg 1
  55. To: %s
  56. MIME-Version: 1.0
  57. Content-Type: %s; %s
  58. "
  59. -- Option is FT_PREFETCHTEXT --
  60. string(%d) "From: foo@anywhere.com
  61. Subject: Test msg 1
  62. To: %s
  63. MIME-Version: 1.0
  64. Content-Type: %s; %s
  65. "
  66. -- Mandatory arguments --
  67. string(%d) "From: foo@anywhere.com
  68. Subject: Test msg 1
  69. To: %s
  70. MIME-Version: 1.0
  71. Content-Type: %s; %s
  72. "
  73. ===DONE===