imap_close_basic.phpt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --TEST--
  2. Test imap_close() function : basic functionality
  3. --SKIPIF--
  4. <?php
  5. require_once(dirname(__FILE__).'/skipif.inc');
  6. ?>
  7. --FILE--
  8. <?php
  9. /* Prototype : bool imap_close(resource $stream_id [, int $options])
  10. * Description: Close an IMAP stream
  11. * Source code: ext/imap/php_imap.c
  12. */
  13. echo "*** Testing imap_close() : basic functionality ***\n";
  14. // include file for required variables in imap_open()
  15. require_once(dirname(__FILE__).'/imap_include.inc');
  16. // Initialize required variables
  17. $stream_id = setup_test_mailbox('', 3, $mailbox); // set up temp mailbox with 3 messages
  18. $options = CL_EXPUNGE;
  19. // mark messages in inbox for deletion
  20. for ($i = 1; $i < 4; $i++) {
  21. imap_delete($stream_id, $i);
  22. }
  23. // Calling imap_close() with all possible arguments
  24. echo "\n-- Call to imap_close() with all possible arguments --\n";
  25. var_dump( imap_close($stream_id, $options) );
  26. // check that CL_EXPUNGE worked
  27. $stream_id = imap_open($mailbox, $username, $password);
  28. echo "There are now " . imap_num_msg($stream_id) . " msgs in mailbox '$mailbox'\n";
  29. // Calling imap_close() with mandatory arguments
  30. echo "\n-- Call to imap_close() with mandatory arguments --\n";
  31. var_dump( imap_close($stream_id) );
  32. ?>
  33. ===DONE===
  34. --CLEAN--
  35. <?php
  36. require_once(dirname(__FILE__).'/clean.inc');
  37. ?>
  38. --EXPECTF--
  39. *** Testing imap_close() : basic functionality ***
  40. Create a temporary mailbox and add 3 msgs
  41. .. mailbox '%sINBOX.phpttest' created
  42. -- Call to imap_close() with all possible arguments --
  43. bool(true)
  44. There are now 0 msgs in mailbox '%sINBOX.phpttest'
  45. -- Call to imap_close() with mandatory arguments --
  46. bool(true)
  47. ===DONE===