1--TEST--
2FPM: FastCGI env var path info fix for Apache balancer real configuration
3--SKIPIF--
4<?php include "skipif.inc"; ?>
5--FILE--
6<?php
7
8require_once "tester.inc";
9
10$cfg = <<<EOT
11[global]
12error_log = {{FILE:LOG}}
13[unconfined]
14listen = {{ADDR}}
15pm = dynamic
16pm.max_children = 5
17pm.start_servers = 1
18pm.min_spare_servers = 1
19pm.max_spare_servers = 3
20php_admin_value[cgi.fix_pathinfo] = yes
21EOT;
22
23$code = <<<EOT
24<?php
25echo \$_SERVER["SCRIPT_NAME"] . "\n";
26echo \$_SERVER["SCRIPT_FILENAME"] . "\n";
27echo \$_SERVER["PATH_INFO"] . "\n";
28echo \$_SERVER["PHP_SELF"];
29EOT;
30
31$tester = new FPM\Tester($cfg, $code);
32[$sourceFilePath, $scriptName] = $tester->createSourceFileAndScriptName();
33$pathTranslatedPart = __DIR__ . $sourceFilePath .  '/pinfo';
34$tester->start();
35$tester->expectLogStartNotices();
36$tester
37    ->request(
38        headers: [
39            'PATH_INFO' => $sourceFilePath . '/pinfo',
40            'PATH_TRANSLATED' => 'proxy:balancer://myappcluster' . $pathTranslatedPart . $pathTranslatedPart,
41        ],
42        uri: $scriptName . '/pinfo',
43        scriptFilename: $sourceFilePath .  '/pinfo',
44        scriptName: '',
45    )
46    ->expectBody([$sourceFilePath, $sourceFilePath, '/pinfo', $sourceFilePath . '/pinfo']);
47$tester->terminate();
48$tester->close();
49
50?>
51Done
52--EXPECT--
53Done
54--CLEAN--
55<?php
56require_once "tester.inc";
57FPM\Tester::clean();
58?>
59