diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-11-24 21:19:06 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-11-24 21:19:06 +0100 |
commit | 229630f14c64c4a0889f567fc8ac2159a63cbb90 (patch) | |
tree | 5b4bbe2b2e57be792365a74d9a80c634220837a7 /tests | |
parent | 6229f457d00e8abce59396af38b7800fe83e2986 (diff) | |
download | nextcloud-server-229630f14c64c4a0889f567fc8ac2159a63cbb90.tar.gz nextcloud-server-229630f14c64c4a0889f567fc8ac2159a63cbb90.zip |
adding simple unit test to test scriptName() under overwrite condition
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/request.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/lib/request.php b/tests/lib/request.php new file mode 100644 index 00000000000..2b2094a612d --- /dev/null +++ b/tests/lib/request.php @@ -0,0 +1,26 @@ +<?php +/** + * Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Request extends PHPUnit_Framework_TestCase { + + public function setUp() { + OC_Config::setValue('overwritewebroot', '/domain.tld/ownCloud'); + } + + public function tearDown() { + OC_Config::setValue('overwritewebroot', ''); + } + + public function testScriptNameOverWrite() { + $_SERVER['REMOTE_ADDR'] = '10.0.0.1'; + $_SERVER["SCRIPT_FILENAME"] = __FILE__; + + $scriptName = OC_Request::scriptName(); + $this->assertEquals('/domain.tld/ownCloud/tests/lib/request.php', $scriptName); + } +} |