imap_fetchbody_variation4.phpt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. --TEST--
  2. Test imap_fetchbody() function : usage variations - FT_UID option
  3. --SKIPIF--
  4. <?php
  5. require_once(dirname(__FILE__).'/skipif.inc');
  6. ?>
  7. --FILE--
  8. <?php
  9. /* Prototype : string imap_fetchbody(resource $stream_id, int $msg_no, string $section [, int $options])
  10. * Description: Get a specific body section
  11. * Source code: ext/imap/php_imap.c
  12. */
  13. /*
  14. * Test if FT_UID is set by passing the following as $options argument to imap_fetchbody():
  15. * 1. values that equate to 1
  16. * 2. Minimum and maximum PHP values
  17. */
  18. echo "*** Testing imap_fetchbody() : usage variations ***\n";
  19. require_once(dirname(__FILE__).'/imap_include.inc');
  20. // Initialise required variables
  21. $stream_id = setup_test_mailbox('', 1); // set up temporary mailbox with one simple message
  22. $msg_no = 1;
  23. $msg_uid = imap_uid($stream_id, $msg_no);
  24. $section = 1;
  25. //Note: the first four values are valid as they will all be cast to 1L.
  26. $options = array ('1', true,
  27. 1.000000000000001, 0.00001e5,
  28. PHP_INT_MAX, -PHP_INT_MAX);
  29. // iterate over each element of $options array to test whether FT_UID is set
  30. $iterator = 1;
  31. imap_check($stream_id);
  32. foreach($options as $option) {
  33. echo "\n-- Iteration $iterator --\n";
  34. if(is_string(imap_fetchbody($stream_id, $msg_uid, $section, $option))) {
  35. echo "FT_UID valid\n";
  36. } else {
  37. echo "FT_UID not valid\n";
  38. }
  39. $iterator++;
  40. }
  41. ?>
  42. ===DONE===
  43. --CLEAN--
  44. <?php
  45. require_once(dirname(__FILE__).'/clean.inc');
  46. ?>
  47. --EXPECTF--
  48. *** Testing imap_fetchbody() : usage variations ***
  49. Create a temporary mailbox and add 1 msgs
  50. .. mailbox '{%s}%s' created
  51. -- Iteration 1 --
  52. FT_UID valid
  53. -- Iteration 2 --
  54. FT_UID valid
  55. -- Iteration 3 --
  56. FT_UID valid
  57. -- Iteration 4 --
  58. FT_UID valid
  59. -- Iteration 5 --
  60. Warning: imap_fetchbody(): invalid value for the options parameter in %s on line %d
  61. FT_UID not valid
  62. -- Iteration 6 --
  63. Warning: imap_fetchbody(): invalid value for the options parameter in %s on line %d
  64. FT_UID not valid
  65. ===DONE===