diff options
Diffstat (limited to 'tests/lib/LegacyHelperTest.php')
-rw-r--r-- | tests/lib/LegacyHelperTest.php | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/tests/lib/LegacyHelperTest.php b/tests/lib/LegacyHelperTest.php index 736c5bf7fad..76f38706b4c 100644 --- a/tests/lib/LegacyHelperTest.php +++ b/tests/lib/LegacyHelperTest.php @@ -222,44 +222,6 @@ class LegacyHelperTest extends \Test\TestCase { ); } - // Url generator methods - - /** - * @small - * test linkToPublic URL construction - */ - public function testLinkToPublic() { - \OC::$WEBROOT = ''; - $result = \OC_Helper::linkToPublic('files'); - $this->assertEquals('http://localhost/s', $result); - $result = \OC_Helper::linkToPublic('files', false); - $this->assertEquals('http://localhost/s', $result); - $result = \OC_Helper::linkToPublic('files', true); - $this->assertEquals('http://localhost/s/', $result); - - $result = \OC_Helper::linkToPublic('other'); - $this->assertEquals('http://localhost/public.php?service=other', $result); - $result = \OC_Helper::linkToPublic('other', false); - $this->assertEquals('http://localhost/public.php?service=other', $result); - $result = \OC_Helper::linkToPublic('other', true); - $this->assertEquals('http://localhost/public.php?service=other/', $result); - - \OC::$WEBROOT = '/owncloud'; - $result = \OC_Helper::linkToPublic('files'); - $this->assertEquals('http://localhost/owncloud/s', $result); - $result = \OC_Helper::linkToPublic('files', false); - $this->assertEquals('http://localhost/owncloud/s', $result); - $result = \OC_Helper::linkToPublic('files', true); - $this->assertEquals('http://localhost/owncloud/s/', $result); - - $result = \OC_Helper::linkToPublic('other'); - $this->assertEquals('http://localhost/owncloud/public.php?service=other', $result); - $result = \OC_Helper::linkToPublic('other', false); - $this->assertEquals('http://localhost/owncloud/public.php?service=other', $result); - $result = \OC_Helper::linkToPublic('other', true); - $this->assertEquals('http://localhost/owncloud/public.php?service=other/', $result); - } - /** * Tests recursive folder deletion with rmdirr() */ |