diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-11-25 14:21:51 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-11-25 14:21:51 +0100 |
commit | a0a665ea459fe96a0006766cc0d0b25e5cd258df (patch) | |
tree | ab426a2ff9e3c7a2024f51efe2736cc8a2dc541a /tests | |
parent | de2b4440301badf48e638ede84f64692f2a2db41 (diff) | |
download | nextcloud-server-a0a665ea459fe96a0006766cc0d0b25e5cd258df.tar.gz nextcloud-server-a0a665ea459fe96a0006766cc0d0b25e5cd258df.zip |
handle duplicate slashes in case of reverse proxy configuration
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/request.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/lib/request.php b/tests/lib/request.php index 2b2094a612d..d7ccb2146d4 100644 --- a/tests/lib/request.php +++ b/tests/lib/request.php @@ -23,4 +23,24 @@ class Test_Request extends PHPUnit_Framework_TestCase { $scriptName = OC_Request::scriptName(); $this->assertEquals('/domain.tld/ownCloud/tests/lib/request.php', $scriptName); } + + /** + * @dataProvider rawPathInfoProvider + * @param $expected + * @param $requestUri + * @param $scriptName + */ + public function testRawPathInfo($expected, $requestUri, $scriptName) { + $_SERVER['REQUEST_URI'] = $requestUri; + $_SERVER['SCRIPT_NAME'] = $scriptName; + $rawPathInfo = OC_Request::getRawPathInfo(); + $this->assertEquals($expected, $rawPathInfo); + } + + function rawPathInfoProvider() { + return array( + array('/core/ajax/translations.php', '/index.php/core/ajax/translations.php', '/index.php'), + array('/core/ajax/translations.php', '//index.php/core/ajax/translations.php', '/index.php'), + ); + } } |