mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

This is required to write tests that behave differently when an index.php isn't present in the document root. (Such as the one I'm about to commit.)
108 lines
2.3 KiB
PHP
108 lines
2.3 KiB
PHP
--TEST--
|
|
No router, no script
|
|
--SKIPIF--
|
|
<?php
|
|
include "skipif.inc";
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
include "php_cli_server.inc";
|
|
php_cli_server_start(NULL, NULL);
|
|
|
|
list($host, $port) = explode(':', PHP_CLI_SERVER_ADDRESS);
|
|
$port = intval($port)?:80;
|
|
$output = '';
|
|
|
|
$fp = fsockopen($host, $port, $errno, $errstr, 0.5);
|
|
if (!$fp) {
|
|
die("connect failed");
|
|
}
|
|
|
|
|
|
if(fwrite($fp, <<<HEADER
|
|
POST / HTTP/1.1
|
|
Host: {$host}
|
|
Content-Type: application/x-www-form-urlencoded
|
|
Content-Length: 3
|
|
|
|
a=b
|
|
HEADER
|
|
)) {
|
|
while (!feof($fp)) {
|
|
$output .= fgets($fp);
|
|
}
|
|
}
|
|
|
|
echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n";
|
|
fclose($fp);
|
|
|
|
|
|
$output = '';
|
|
$fp = fsockopen($host, $port, $errno, $errstr, 0.5);
|
|
if (!$fp) {
|
|
die("connect failed");
|
|
}
|
|
|
|
if(fwrite($fp, <<<HEADER
|
|
GET /main/style.css HTTP/1.1
|
|
Host: {$host}
|
|
|
|
|
|
HEADER
|
|
)) {
|
|
while (!feof($fp)) {
|
|
$output .= fgets($fp);
|
|
}
|
|
}
|
|
|
|
echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n";
|
|
fclose($fp);
|
|
|
|
$output = '';
|
|
$fp = fsockopen($host, $port, $errno, $errstr, 0.5);
|
|
if (!$fp) {
|
|
die("connect failed");
|
|
}
|
|
|
|
if(fwrite($fp, <<<HEADER
|
|
HEAD /main/foo/bar HTTP/1.1
|
|
Host: {$host}
|
|
|
|
|
|
HEADER
|
|
)) {
|
|
while (!feof($fp)) {
|
|
$output .= fgets($fp);
|
|
}
|
|
}
|
|
|
|
echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n";
|
|
fclose($fp);
|
|
?>
|
|
--EXPECTF--
|
|
|
|
HTTP/1.1 404 Not Found
|
|
Host: %s
|
|
Connection: close
|
|
Content-Type: text/html; charset=UTF-8
|
|
Content-Length: %d
|
|
|
|
<!doctype html><html><head><title>404 Not Found</title><style>AAA</style>
|
|
</head><body><h1>Not Found</h1><p>The requested resource <code class="url">/</code> was not found on this server.</p></body></html>
|
|
HTTP/1.1 404 Not Found
|
|
Host: %s
|
|
Connection: close
|
|
Content-Type: text/html; charset=UTF-8
|
|
Content-Length: %d
|
|
|
|
<!doctype html><html><head><title>404 Not Found</title><style>AAA</style>
|
|
</head><body><h1>Not Found</h1><p>The requested resource <code class="url">/main/style.css</code> was not found on this server.</p></body></html>
|
|
HTTP/1.1 404 Not Found
|
|
Host: %s
|
|
Connection: close
|
|
Content-Type: text/html; charset=UTF-8
|
|
Content-Length: %d
|
|
|
|
<!doctype html><html><head><title>404 Not Found</title><style>AAA</style>
|
|
</head><body><h1>Not Found</h1><p>The requested resource <code class="url">/main/foo/bar</code> was not found on this server.</p></body></html>
|
|
|