bug48929.phpt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. --TEST--
  2. Bug #48929 (duplicate \r\n sent after last header line)
  3. --INI--
  4. allow_url_fopen=1
  5. --SKIPIF--
  6. <?php require 'server.inc'; http_server_skipif(); ?>
  7. --FILE--
  8. <?php
  9. require 'server.inc';
  10. function do_test($context_options) {
  11. $context = stream_context_create(array('http' => $context_options));
  12. $responses = array(
  13. "data://text/plain,HTTP/1.1 200 OK\r\n\r\n",
  14. );
  15. ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
  16. foreach($responses as $r) {
  17. $fd = fopen($uri, 'rb', false, $context);
  18. fseek($output, 0, SEEK_SET);
  19. var_dump(stream_get_contents($output));
  20. fseek($output, 0, SEEK_SET);
  21. }
  22. http_server_kill($pid);
  23. }
  24. echo "-- Test: requests with 'header' as array --\n";
  25. do_test(array('header' => array('X-Foo: bar', 'Content-Type: text/plain'), 'method' => 'POST', 'content' => 'ohai'));
  26. echo "-- Test: requests with 'header' as string --\n";
  27. do_test(array('header' => "X-Foo: bar\r\nContent-Type: text/plain", 'method' => 'POST', 'content' => 'ohai'));
  28. ?>
  29. --EXPECTF--
  30. -- Test: requests with 'header' as array --
  31. string(%d) "POST / HTTP/1.1
  32. Host: %s:%d
  33. Connection: close
  34. Content-Length: 4
  35. X-Foo: bar
  36. Content-Type: text/plain
  37. ohai"
  38. -- Test: requests with 'header' as string --
  39. string(%d) "POST / HTTP/1.1
  40. Host: %s:%d
  41. Connection: close
  42. Content-Length: 4
  43. X-Foo: bar
  44. Content-Type: text/plain
  45. ohai"