-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test FPM FCGI envs with path info fix for Apache proxy pass
- Loading branch information
Showing
2 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--TEST-- | ||
FPM: FastCGI env var path info fix for Apache ProxyPass SCRIPT_NAME stripping with basic path | ||
--SKIPIF-- | ||
<?php include "skipif.inc"; ?> | ||
--FILE-- | ||
<?php | ||
|
||
require_once "tester.inc"; | ||
|
||
$cfg = <<<EOT | ||
[global] | ||
error_log = {{FILE:LOG}} | ||
[unconfined] | ||
listen = {{ADDR}} | ||
pm = dynamic | ||
pm.max_children = 5 | ||
pm.start_servers = 1 | ||
pm.min_spare_servers = 1 | ||
pm.max_spare_servers = 3 | ||
php_admin_value[cgi.fix_pathinfo] = yes | ||
EOT; | ||
|
||
$code = <<<EOT | ||
<?php | ||
echo \$_SERVER["SCRIPT_NAME"] . "\n"; | ||
echo \$_SERVER["ORIG_SCRIPT_NAME"] . "\n"; | ||
echo \$_SERVER["SCRIPT_FILENAME"] . "\n"; | ||
echo \$_SERVER["PATH_INFO"] . "\n"; | ||
echo \$_SERVER["PHP_SELF"]; | ||
EOT; | ||
|
||
$tester = new FPM\Tester($cfg, $code); | ||
[$sourceFilePath, $scriptName] = $tester->createSourceFileAndScriptName(); | ||
$tester->start(); | ||
$tester->expectLogStartNotices(); | ||
$tester | ||
->request( | ||
uri: $scriptName . '/pinfo', | ||
scriptFilename: "proxy:fcgi://" . $tester->getAddr() . $sourceFilePath . '/pinfo', | ||
scriptName: $scriptName . '/pinfo' | ||
) | ||
->expectBody([$scriptName, $scriptName . '/pinfo', $sourceFilePath, '/pinfo', $scriptName . '/pinfo']); | ||
$tester->terminate(); | ||
$tester->close(); | ||
|
||
?> | ||
Done | ||
--EXPECT-- | ||
Done | ||
--CLEAN-- | ||
<?php | ||
require_once "tester.inc"; | ||
FPM\Tester::clean(); | ||
?> |
54 changes: 54 additions & 0 deletions
54
sapi/fpm/tests/fcgi-env-pif-apache-pp-sn-strip-invalid.phpt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--TEST-- | ||
FPM: FastCGI env var path info fix for Apache ProxyPass SCRIPT_NAME stripping with invalid path | ||
--SKIPIF-- | ||
<?php include "skipif.inc"; ?> | ||
--FILE-- | ||
<?php | ||
|
||
require_once "tester.inc"; | ||
|
||
$cfg = <<<EOT | ||
[global] | ||
error_log = {{FILE:LOG}} | ||
[unconfined] | ||
listen = {{ADDR}} | ||
pm = dynamic | ||
pm.max_children = 5 | ||
pm.start_servers = 1 | ||
pm.min_spare_servers = 1 | ||
pm.max_spare_servers = 3 | ||
php_admin_value[cgi.fix_pathinfo] = yes | ||
EOT; | ||
|
||
$code = <<<EOT | ||
<?php | ||
echo \$_SERVER["SCRIPT_NAME"] . "\n"; | ||
echo \$_SERVER["ORIG_SCRIPT_NAME"] ?? 'none' . "\n"; | ||
echo \$_SERVER["SCRIPT_FILENAME"] . "\n"; | ||
echo \$_SERVER["PATH_INFO"] . "\n"; | ||
echo \$_SERVER["PHP_SELF"]; | ||
EOT; | ||
|
||
$tester = new FPM\Tester($cfg, $code); | ||
[$sourceFilePath, $scriptName] = $tester->createSourceFileAndScriptName(); | ||
$tester->start(); | ||
$tester->expectLogStartNotices(); | ||
$tester | ||
->request( | ||
uri: $scriptName . '/pinfox', | ||
scriptFilename: "proxy:fcgi://" . $tester->getAddr() . $sourceFilePath . '/pinfoy', | ||
scriptName: $scriptName . '/pinfox' // this would be a bug in Apache - just for testing | ||
) | ||
->expectBody([$scriptName . '/pinfox', 'none', $sourceFilePath, '/pinfoy', $scriptName . '/pinfox/pinfoy']); | ||
$tester->terminate(); | ||
$tester->close(); | ||
|
||
?> | ||
Done | ||
--EXPECT-- | ||
Done | ||
--CLEAN-- | ||
<?php | ||
require_once "tester.inc"; | ||
FPM\Tester::clean(); | ||
?> |