imap_fetchbody_variation1.phpt 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. --TEST--
  2. Test imap_fetchbody() function : usage variation - diff data types as $stream_id arg
  3. --SKIPIF--
  4. <?php
  5. extension_loaded('imap') or die('skip imap extension not available in this build');
  6. ?>
  7. --FILE--
  8. <?php
  9. /* Prototype : string imap_fetchbody(resource $stream_id, int $msg_no, string $section
  10. * [, int $options])
  11. * Description: Get a specific body section
  12. * Source code: ext/imap/php_imap.c
  13. */
  14. /*
  15. * Pass different data types as $stream_id argument to test behaviour of imap_fetchbody()
  16. */
  17. echo "*** Testing imap_fetchbody() : usage variations ***\n";
  18. // Initialise function arguments not being substituted
  19. $msg_no = 1;
  20. $section = '2';
  21. //get an unset variable
  22. $unset_var = 10;
  23. unset ($unset_var);
  24. // get a class
  25. class classA
  26. {
  27. public function __toString() {
  28. return "Class A object";
  29. }
  30. }
  31. // heredoc string
  32. $heredoc = <<<EOT
  33. hello world
  34. EOT;
  35. // unexpected values to be passed to $stream_id argument
  36. $inputs = array(
  37. // int data
  38. /*1*/ 0,
  39. 1,
  40. 12345,
  41. -2345,
  42. // float data
  43. /*5*/ 10.5,
  44. -10.5,
  45. 12.3456789000e10,
  46. 12.3456789000E-10,
  47. .5,
  48. // null data
  49. /*10*/ NULL,
  50. null,
  51. // boolean data
  52. /*12*/ true,
  53. false,
  54. TRUE,
  55. FALSE,
  56. // empty data
  57. /*16*/ "",
  58. '',
  59. array(),
  60. // string data
  61. /*19*/ "string",
  62. 'string',
  63. $heredoc,
  64. // object data
  65. /*22*/ new classA(),
  66. // undefined data
  67. /*23*/ @$undefined_var,
  68. // unset data
  69. /*24*/ @$unset_var,
  70. );
  71. // loop through each element of $inputs to check the behavior of imap_fetchbody()
  72. $iterator = 1;
  73. foreach($inputs as $input) {
  74. echo "\n-- Iteration $iterator --\n";
  75. var_dump( imap_fetchbody($input, $msg_no, $section) );
  76. $iterator++;
  77. }
  78. ?>
  79. ===DONE===
  80. --EXPECTF--
  81. *** Testing imap_fetchbody() : usage variations ***
  82. -- Iteration 1 --
  83. Warning: imap_fetchbody() expects parameter 1 to be resource, integer given in %s on line 85
  84. NULL
  85. -- Iteration 2 --
  86. Warning: imap_fetchbody() expects parameter 1 to be resource, integer given in %s on line 85
  87. NULL
  88. -- Iteration 3 --
  89. Warning: imap_fetchbody() expects parameter 1 to be resource, integer given in %s on line 85
  90. NULL
  91. -- Iteration 4 --
  92. Warning: imap_fetchbody() expects parameter 1 to be resource, integer given in %s on line 85
  93. NULL
  94. -- Iteration 5 --
  95. Warning: imap_fetchbody() expects parameter 1 to be resource, double given in %s on line 85
  96. NULL
  97. -- Iteration 6 --
  98. Warning: imap_fetchbody() expects parameter 1 to be resource, double given in %s on line 85
  99. NULL
  100. -- Iteration 7 --
  101. Warning: imap_fetchbody() expects parameter 1 to be resource, double given in %s on line 85
  102. NULL
  103. -- Iteration 8 --
  104. Warning: imap_fetchbody() expects parameter 1 to be resource, double given in %s on line 85
  105. NULL
  106. -- Iteration 9 --
  107. Warning: imap_fetchbody() expects parameter 1 to be resource, double given in %s on line 85
  108. NULL
  109. -- Iteration 10 --
  110. Warning: imap_fetchbody() expects parameter 1 to be resource, null given in %s on line 85
  111. NULL
  112. -- Iteration 11 --
  113. Warning: imap_fetchbody() expects parameter 1 to be resource, null given in %s on line 85
  114. NULL
  115. -- Iteration 12 --
  116. Warning: imap_fetchbody() expects parameter 1 to be resource, boolean given in %s on line 85
  117. NULL
  118. -- Iteration 13 --
  119. Warning: imap_fetchbody() expects parameter 1 to be resource, boolean given in %s on line 85
  120. NULL
  121. -- Iteration 14 --
  122. Warning: imap_fetchbody() expects parameter 1 to be resource, boolean given in %s on line 85
  123. NULL
  124. -- Iteration 15 --
  125. Warning: imap_fetchbody() expects parameter 1 to be resource, boolean given in %s on line 85
  126. NULL
  127. -- Iteration 16 --
  128. Warning: imap_fetchbody() expects parameter 1 to be resource, %unicode_string_optional% given in %s on line 85
  129. NULL
  130. -- Iteration 17 --
  131. Warning: imap_fetchbody() expects parameter 1 to be resource, %unicode_string_optional% given in %s on line 85
  132. NULL
  133. -- Iteration 18 --
  134. Warning: imap_fetchbody() expects parameter 1 to be resource, array given in %s on line 85
  135. NULL
  136. -- Iteration 19 --
  137. Warning: imap_fetchbody() expects parameter 1 to be resource, %unicode_string_optional% given in %s on line 85
  138. NULL
  139. -- Iteration 20 --
  140. Warning: imap_fetchbody() expects parameter 1 to be resource, %unicode_string_optional% given in %s on line 85
  141. NULL
  142. -- Iteration 21 --
  143. Warning: imap_fetchbody() expects parameter 1 to be resource, %unicode_string_optional% given in %s on line 85
  144. NULL
  145. -- Iteration 22 --
  146. Warning: imap_fetchbody() expects parameter 1 to be resource, object given in %s on line 85
  147. NULL
  148. -- Iteration 23 --
  149. Warning: imap_fetchbody() expects parameter 1 to be resource, null given in %s on line 85
  150. NULL
  151. -- Iteration 24 --
  152. Warning: imap_fetchbody() expects parameter 1 to be resource, null given in %s on line 85
  153. NULL
  154. ===DONE===