imap_savebody_basic.phpt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. --TEST--
  2. imap_savebody() function : basic functionality
  3. --CREDITS--
  4. Olivier Doucet
  5. --SKIPIF--
  6. <?php
  7. require_once(dirname(__FILE__).'/skipif.inc');
  8. ?>
  9. --FILE--
  10. <?php
  11. echo "Checking with no parameters\n";
  12. imap_savebody();
  13. echo "Checking with incorrect parameter type\n";
  14. imap_savebody('');
  15. imap_savebody(false);
  16. require_once(dirname(__FILE__).'/imap_include.inc');
  17. $stream_id = setup_test_mailbox('', 1);
  18. imap_savebody($stream_id);
  19. $file = dirname(__FILE__).'/tmpsavebody.txt';
  20. //with URL
  21. $z = imap_savebody($stream_id, $file, 1);
  22. var_dump($z);
  23. echo "Size: ".filesize($file)."\n";
  24. //With FOPEN
  25. $fp = fopen($file, 'w');
  26. $z = imap_savebody($stream_id, $fp, 1);
  27. fclose($fp);
  28. var_dump($z);
  29. echo "Size: ".filesize($file)."\n";
  30. imap_close($stream_id);
  31. ?>
  32. --CLEAN--
  33. <?php
  34. @unlink(dirname(__FILE__).'/tmpsavebody.txt');
  35. require_once('clean.inc');
  36. ?>
  37. --EXPECTF--
  38. Checking with no parameters
  39. Warning: imap_savebody() expects at least 3 parameters, 0 given in %s on line %d
  40. Checking with incorrect parameter type
  41. Warning: imap_savebody() expects at least 3 parameters, 1 given in %s on line %d
  42. Warning: imap_savebody() expects at least 3 parameters, 1 given in %s on line %d
  43. Create a temporary mailbox and add 1 msgs
  44. .. mailbox '{%s}%s' created
  45. Warning: imap_savebody() expects at least 3 parameters, 1 given in %s on line %d
  46. bool(true)
  47. Size: %d
  48. bool(true)
  49. Size: %d