imap_fetchstructure_basic.phpt 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. --TEST--
  2. imap_fetchstructure() 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_fetchstructure();
  13. echo "Checking with incorrect parameter type\n";
  14. imap_fetchstructure('');
  15. imap_fetchstructure(false);
  16. require_once(dirname(__FILE__).'/imap_include.inc');
  17. $stream_id = setup_test_mailbox('', 1);
  18. imap_fetchstructure($stream_id);
  19. imap_fetchstructure($stream_id,0);
  20. $z = imap_fetchstructure($stream_id,1);
  21. $fields = array('type','encoding','ifsubtype','subtype',
  22. 'ifdescription','lines','bytes','parameters');
  23. foreach ($fields as $key) {
  24. var_dump(isset($z->$key));
  25. }
  26. var_dump($z->type);
  27. var_dump($z->encoding);
  28. var_dump($z->bytes);
  29. var_dump($z->lines);
  30. var_dump(is_object($z->parameters));
  31. imap_close($stream_id);
  32. ?>
  33. --CLEAN--
  34. <?php
  35. require_once('clean.inc');
  36. ?>
  37. --EXPECTF--
  38. Checking with no parameters
  39. Warning: imap_fetchstructure() expects at least 2 parameters, 0 given in %s on line %d
  40. Checking with incorrect parameter type
  41. Warning: imap_fetchstructure() expects at least 2 parameters, 1 given in %s on line %d
  42. Warning: imap_fetchstructure() expects at least 2 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_fetchstructure() expects at least 2 parameters, 1 given in %s on line %d
  46. bool(true)
  47. bool(true)
  48. bool(true)
  49. bool(true)
  50. bool(true)
  51. bool(true)
  52. bool(true)
  53. bool(true)
  54. int(%d)
  55. int(%d)
  56. int(%d)
  57. int(%d)
  58. bool(true)