imap_fetch_overview_basic.phpt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. --TEST--
  2. Test imap_fetch_overview() function : basic functionality
  3. --SKIPIF--
  4. <?php
  5. require_once(dirname(__FILE__).'/skipif.inc');
  6. ?>
  7. --FILE--
  8. <?php
  9. /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
  10. * Description: Read an overview of the information in the headers
  11. * of the given message sequence
  12. * Source code: ext/imap/php_imap.c
  13. */
  14. echo "*** Testing imap_fetch_overview() : basic functionality ***\n";
  15. require_once(dirname(__FILE__).'/imap_include.inc');
  16. // create a new mailbox and add two new messages to it
  17. $stream_id = setup_test_mailbox('', 2, $mailbox, 'notSimple');
  18. // get UID for new message
  19. $msg_no = imap_uid($stream_id, 1);
  20. $options = FT_UID;
  21. // Calling imap_fetch_overview() with all possible arguments
  22. echo "\n-- All possible arguments --\n";
  23. $a = imap_fetch_overview($stream_id, "$msg_no", $options) ;
  24. echo "\n--> Object #1\n";
  25. displayOverviewFields($a[0]);
  26. // Calling imap_fetch_overview() with mandatory arguments
  27. echo "\n-- Mandatory arguments --\n";
  28. $a = imap_fetch_overview($stream_id, '1:2') ;
  29. //first object in array
  30. echo "\n--> Object #1\n";
  31. displayOverviewFields($a[0]);
  32. //Second object in array
  33. echo "\n--> Object #2\n";
  34. displayOverviewFields($a[1]);
  35. imap_close($stream_id);
  36. ?>
  37. ===DONE===
  38. --CLEAN--
  39. <?php
  40. require_once(dirname(__FILE__).'/clean.inc');
  41. ?>
  42. --EXPECTF--
  43. *** Testing imap_fetch_overview() : basic functionality ***
  44. Create a temporary mailbox and add 2 msgs
  45. .. mailbox '{%s}%s' created
  46. -- All possible arguments --
  47. --> Object #1
  48. size is %d
  49. uid is %d
  50. msgno is 1
  51. recent is %d
  52. flagged is 0
  53. answered is 0
  54. deleted is 0
  55. seen is 0
  56. draft is 0
  57. udate is OK
  58. -- Mandatory arguments --
  59. --> Object #1
  60. size is %d
  61. uid is %d
  62. msgno is 1
  63. recent is %d
  64. flagged is 0
  65. answered is 0
  66. deleted is 0
  67. seen is 0
  68. draft is 0
  69. udate is OK
  70. --> Object #2
  71. size is %d
  72. uid is %d
  73. msgno is 2
  74. recent is %d
  75. flagged is 0
  76. answered is 0
  77. deleted is 0
  78. seen is 0
  79. draft is 0
  80. udate is OK
  81. ===DONE===