imap_append_basic.phpt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. --TEST--
  2. Test imap_append() function : basic functionality
  3. --SKIPIF--
  4. <?php
  5. require_once(dirname(__FILE__).'/skipif.inc');
  6. ?>
  7. --FILE--
  8. <?php
  9. /* Prototype : bool imap_append ( resource $imap_stream , string $mailbox , string $message [, string $options ] )
  10. * Description: Append a string message to a specified mailbox.
  11. * Source code: ext/imap/php_imap.c
  12. */
  13. echo "*** Testing imap_append() : basic functionality ***\n";
  14. require_once(dirname(__FILE__).'/imap_include.inc');
  15. echo "Create a new mailbox for test\n";
  16. $imap_stream = setup_test_mailbox("", 0);
  17. if (!is_resource($imap_stream)) {
  18. exit("TEST FAILED: Unable to create test mailbox\n");
  19. }
  20. $mb_details = imap_mailboxmsginfo($imap_stream);
  21. echo "Add a couple of msgs to new mailbox " . $mb_details->Mailbox . "\n";
  22. var_dump(imap_append($imap_stream, $mb_details->Mailbox
  23. , "From: webmaster@something.com\r\n"
  24. . "To: info@something.com\r\n"
  25. . "Subject: Test message\r\n"
  26. . "\r\n"
  27. . "this is a test message, please ignore\r\n"
  28. ));
  29. var_dump(imap_append($imap_stream, $mb_details->Mailbox
  30. , "From: webmaster@something.com\r\n"
  31. . "To: info@something.com\r\n"
  32. . "Subject: Another test\r\n"
  33. . "\r\n"
  34. . "this is another test message, please ignore it too!!\r\n"
  35. ));
  36. $check = imap_check($imap_stream);
  37. echo "Msg Count after append : ". $check->Nmsgs . "\n";
  38. echo "List the msg headers\n";
  39. var_dump(imap_headers($imap_stream));
  40. imap_close($imap_stream);
  41. ?>
  42. ===Done===
  43. --CLEAN--
  44. <?php
  45. require_once('clean.inc');
  46. ?>
  47. --EXPECTF--
  48. *** Testing imap_append() : basic functionality ***
  49. Create a new mailbox for test
  50. Create a temporary mailbox and add 0 msgs
  51. .. mailbox '%s' created
  52. Add a couple of msgs to new mailbox {%s}INBOX.%s
  53. bool(true)
  54. bool(true)
  55. Msg Count after append : 2
  56. List the msg headers
  57. array(2) {
  58. [0]=>
  59. string(%d) "%w%s 1)%s webmaster@something. Test message (%d chars)"
  60. [1]=>
  61. string(%d) "%w%s 2)%s webmaster@something. Another test (%d chars)"
  62. }
  63. ===Done===