imap_createmailbox_basic.phpt 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. --TEST--
  2. Test imap_createmailbox() function : basic functionality
  3. --SKIPIF--
  4. <?php
  5. require_once(dirname(__FILE__).'/skipif.inc');
  6. ?>
  7. --FILE--
  8. <?php
  9. /* Prototype : bool imap_createmailbox ( resource $imap_stream , string $mailbox )
  10. * Description: Creates a new mailbox specified by mailbox .
  11. * Source code: ext/imap/php_imap.c
  12. */
  13. echo "*** Testing imap_createmailbox() : basic functionality ***\n";
  14. require_once(dirname(__FILE__).'/imap_include.inc');
  15. $imap_stream = imap_open($default_mailbox, $username, $password) or
  16. die("Cannot connect to mailbox $default_mailbox: " . imap_last_error());
  17. $newname = "phpnewbox";
  18. echo "Newname will be '$newname'\n";
  19. $newbox = imap_utf7_encode($server.$newname);
  20. if (imap_createmailbox($imap_stream, $newbox)) {
  21. echo "Add a couple of msgs to '$newname' mailbox\n";
  22. populate_mailbox($imap_stream, $newbox, 2);
  23. $status = imap_status($imap_stream, $newbox, SA_ALL);
  24. if ($status) {
  25. echo "Your new mailbox '$newname' has the following status:\n";
  26. echo "Messages: " . $status->messages . "\n";
  27. echo "Recent: " . $status->recent . "\n";
  28. echo "Unseen: " . $status->unseen . "\n";
  29. echo "UIDnext: " . $status->uidnext . "\n";
  30. echo "UIDvalidity: " . $status->uidvalidity . "\n";
  31. } else {
  32. echo "imap_status on new mailbox failed: " . imap_last_error() . "\n";
  33. }
  34. if (imap_deletemailbox($imap_stream, $newbox)) {
  35. echo "Mailbox '$newname' removed to restore initial state\n";
  36. } else {
  37. echo "imap_deletemailbox on new mailbox failed: " . implode("\n", imap_errors()) . "\n";
  38. }
  39. } else {
  40. echo "could not create new mailbox: " . implode("\n", imap_errors()) . "\n";
  41. }
  42. imap_close($imap_stream);
  43. ?>
  44. ===Done===
  45. --EXPECTF--
  46. *** Testing imap_createmailbox() : basic functionality ***
  47. Newname will be 'phpnewbox'
  48. Add a couple of msgs to 'phpnewbox' mailbox
  49. Your new mailbox 'phpnewbox' has the following status:
  50. Messages: 2
  51. Recent: 2
  52. Unseen: 2
  53. UIDnext: %d
  54. UIDvalidity: %d
  55. Mailbox 'phpnewbox' removed to restore initial state
  56. ===Done===