aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/request.php
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-11-25 08:21:33 -0800
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-11-25 08:21:33 -0800
commit4b67d4258d4b746673cc31c09c53f8822e2e6afc (patch)
tree2474bb9306ec27d12d2355e6093ce38134bb20ae /tests/lib/request.php
parenta42d152ac344d287ee6e222f51c39d39d295fe92 (diff)
parentb9fed935b455d06ef943c562093c87171b71e4fc (diff)
downloadnextcloud-server-4b67d4258d4b746673cc31c09c53f8822e2e6afc.tar.gz
nextcloud-server-4b67d4258d4b746673cc31c09c53f8822e2e6afc.zip
Merge pull request #6035 from owncloud/fixing-rawpath-reverseproxy-oc6
Fixing rawpath reverseproxy oc6
Diffstat (limited to 'tests/lib/request.php')
-rw-r--r--tests/lib/request.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/lib/request.php b/tests/lib/request.php
index 2b2094a612d..a740751f060 100644
--- a/tests/lib/request.php
+++ b/tests/lib/request.php
@@ -23,4 +23,46 @@ 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'),
+ array('/core/ajax/translations.php', '//index.php/core/ajax/translations.php', '/index.php'),
+ );
+ }
+
+ /**
+ * @dataProvider rawPathInfoThrowsExceptionProvider
+ * @expectedException Exception
+ *
+ * @param $requestUri
+ * @param $scriptName
+ */
+ public function testRawPathInfoThrowsException($requestUri, $scriptName) {
+ $_SERVER['REQUEST_URI'] = $requestUri;
+ $_SERVER['SCRIPT_NAME'] = $scriptName;
+ OC_Request::getRawPathInfo();
+ }
+
+ function rawPathInfoThrowsExceptionProvider() {
+ return array(
+ array('core/ajax/translations.php', '/index.php'),
+ array('/core/ajax/translations.php', '/index.php'),
+ array('//core/ajax/translations.php', '/index.php'),
+ );
+ }
}