imap_include.inc 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <?php
  2. /** If required change these values to make the test runs */
  3. const IMAP_SERVER_NO_DEBUG = '{127.0.0.1:143/norsh}';
  4. const IMAP_SERVER_DEBUG = '{127.0.0.1:143/debug/norsh}';
  5. const IMAP_SERVER = IMAP_SERVER_DEBUG;
  6. const IMAP_DEFAULT_MAILBOX = IMAP_SERVER . 'INBOX';
  7. const IMAP_MAIL_DOMAIN = 'something.com';
  8. const IMAP_ADMIN_USER = 'webmaster'; // a user with admin access
  9. const IMAP_MAILBOX_USERNAME = IMAP_ADMIN_USER . '@' . IMAP_MAIL_DOMAIN;
  10. const IMAP_MAILBOX_PASSWORD = 'p4ssw0rd';
  11. const IMAP_MAILBOX_PHPT_PREFIX = 'phpttest';
  12. /** Tests require 4 valid userids */
  13. const IMAP_USERS = ["webmaster", "info", "admin", "foo"];
  14. /** list of fields to expect */
  15. const MANDATORY_OVERVIEW_FIELDS = [
  16. 'size',
  17. 'uid',
  18. 'msgno',
  19. 'recent',
  20. 'flagged',
  21. 'answered',
  22. 'deleted',
  23. 'seen',
  24. 'draft',
  25. 'udate',
  26. ];
  27. // record test start time (used by displayOverviewFields())
  28. $start_time = time();
  29. /**
  30. * Display all fields in an element from an imap_fetch_overview() response
  31. *
  32. * Special handling for 'udate', which will vary run-to-run; assumes an IMAP
  33. * server with its clock synced to the current system, which is consistent with
  34. * setup instructions in ext/imap/tests/README.md
  35. *
  36. * @param $resp
  37. * @param string[] $fields
  38. */
  39. function displayOverviewFields($resp, array $fields = MANDATORY_OVERVIEW_FIELDS) {
  40. global $start_time;
  41. foreach ($fields as $mf) {
  42. $z = $resp->$mf;
  43. if ($mf == 'udate') {
  44. if (($z >= $start_time) && ($z <= time())) {
  45. echo "$mf is OK\n";
  46. } else {
  47. echo "$mf is BAD ($z)\n";
  48. }
  49. } else {
  50. echo "$mf is $z\n";
  51. }
  52. }
  53. }
  54. /**
  55. * Create a test mailbox and populate with msgs
  56. *
  57. * @param string mailbox_suffix Suffix used to uniquely identify mailboxes
  58. * @param int message_count number of test msgs to be written to new mailbox
  59. * @param null $new_mailbox
  60. * @param bool $simpleMessages
  61. * @param int $flags OP_* (or CL_EXPUNGE) flags to pass to imap_open() sub-call
  62. * @return resource IMAP stream to new mailbox
  63. * @throws Exception
  64. */
  65. function setup_test_mailbox(
  66. string $mailbox_suffix,
  67. int $message_count,
  68. &$new_mailbox = null,
  69. bool $simpleMessages = true,
  70. int $flags = 0,
  71. ){
  72. // open a stream to default mailbox
  73. $imap_stream = imap_open(IMAP_DEFAULT_MAILBOX, IMAP_MAILBOX_USERNAME, IMAP_MAILBOX_PASSWORD, flags: $flags);
  74. if ($imap_stream === false) {
  75. throw new Exception("Cannot connect to IMAP server " . IMAP_SERVER . ": " . imap_last_error());
  76. }
  77. echo "Create a temporary mailbox and add " . $message_count . " msgs\n";
  78. $new_mailbox = create_mailbox($imap_stream, $mailbox_suffix, $message_count, $simpleMessages);
  79. echo "New mailbox created\n";
  80. // reopen stream to new mailbox
  81. if (imap_reopen($imap_stream, $new_mailbox) === false) {
  82. throw new Exception("Can't re-open '$new_mailbox' mailbox: " . imap_last_error());
  83. }
  84. return $imap_stream;
  85. }
  86. /**
  87. * Create mailbox and fill with generic emails
  88. *
  89. * @param resource $imap_stream
  90. * @param string $mailbox_suffix
  91. * @param int $message_count
  92. * @param bool $simpleMessages
  93. * @return string
  94. * @throws Exception
  95. */
  96. function create_mailbox($imap_stream, string $mailbox_suffix, int $message_count, bool $simpleMessages = true): string {
  97. $mailbox = IMAP_DEFAULT_MAILBOX . '.' . IMAP_MAILBOX_PHPT_PREFIX . $mailbox_suffix;
  98. $mailboxes = imap_getmailboxes($imap_stream, $mailbox, '*');
  99. // check mailbox does not already exist
  100. if ($mailboxes) {
  101. foreach($mailboxes as $value) {
  102. if ($value->name == $mailbox) {
  103. throw new Exception("Mailbox '$mailbox' already exists");
  104. }
  105. }
  106. }
  107. if (imap_createmailbox($imap_stream, $mailbox) === false) {
  108. throw new Exception("Can't create a temporary mailbox: " . imap_last_error());
  109. }
  110. // Add number of test msgs requested
  111. if ($message_count > 0) {
  112. populate_mailbox($imap_stream, $mailbox, $message_count, $simpleMessages);
  113. }
  114. return $mailbox;
  115. }
  116. function setup_test_mailbox_for_uid_tests(string $mailbox_suffix, &$msg_no = null, &$msg_uid = null)
  117. {
  118. $mail_box = setup_test_mailbox($mailbox_suffix, 10);
  119. echo "Delete 4 messages for Unique ID generation\n";
  120. // Delete messages to remove the numerical ordering
  121. imap_delete($mail_box, 3);
  122. imap_delete($mail_box, 4);
  123. imap_delete($mail_box, 5);
  124. imap_delete($mail_box, 6);
  125. imap_expunge($mail_box);
  126. $msg_no = 5;
  127. $msg_uid = 9;
  128. return $mail_box;
  129. }
  130. /**
  131. * Populate a mailbox with generic emails
  132. *
  133. * @param resource $imap_stream
  134. * @param string $mailbox
  135. * @param int $message_count
  136. * @param bool $simpleMessages
  137. */
  138. function populate_mailbox($imap_stream, string $mailbox, int $message_count, bool $simpleMessages = true): void {
  139. for ($i = 1; $i <= $message_count; $i++) {
  140. if ($simpleMessages) {
  141. $msg = "From: foo@anywhere.com\r\n"
  142. . "To: ". IMAP_USERS[0] . "@" . IMAP_MAIL_DOMAIN . "\r\n"
  143. . "Subject: test$i\r\n"
  144. . "\r\n"
  145. . "$i: this is a test message, please ignore\r\nnewline";
  146. } else {
  147. $envelope["from"]= "foo@anywhere.com";
  148. $envelope["to"] = IMAP_USERS[0] . "@" . IMAP_MAIL_DOMAIN;
  149. $envelope["subject"] = "Test msg $i";
  150. $part1["type"] = TYPEMULTIPART;
  151. $part1["subtype"] = "mixed";
  152. $part2["type"] = TYPETEXT;
  153. $part2["subtype"] = "plain";
  154. $part2["description"] = "imap_mail_compose() function";
  155. $part2["contents.data"] = "message 1:xxxxxxxxxxxxxxxxxxxxxxxxxx";
  156. $part3["type"] = TYPETEXT;
  157. $part3["subtype"] = "plain";
  158. $part3["description"] = "Example";
  159. $part3["contents.data"] = "message 2:yyyyyyyyyyyyyyyyyyyyyyyyyy";
  160. $part4["type"] = TYPETEXT;
  161. $part4["subtype"] = "plain";
  162. $part4["description"] = "Return Values";
  163. $part4["contents.data"] = "message 3:zzzzzzzzzzzzzzzzzzzzzzzzzz";
  164. $body[1] = $part1;
  165. $body[2] = $part2;
  166. $body[3] = $part3;
  167. $body[4] = $part4;
  168. $msg = imap_mail_compose($envelope, $body);
  169. }
  170. imap_append($imap_stream, $mailbox, $msg);
  171. }
  172. }
  173. /**
  174. * Get the mailbox name from a mailbox description, i.e strip off server details.
  175. *
  176. * @param string mailbox complete mailbox name
  177. * @return string mailbox name
  178. */
  179. function get_mailbox_name(string $mailboxName): string {
  180. if (preg_match('/\{.*?\}(.*)/', $mailboxName, $match) != 1) {
  181. throw new Exception("Unrecognized mailbox name '$mailboxName'");
  182. }
  183. return $match[1];
  184. }