From db345e4c6dccd690b9cc5f53642696ab73290daf Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 8 Oct 2018 18:29:52 +0200 Subject: Deprecate unused, private OC_Helper::linkToPublic Signed-off-by: Morris Jobke --- tests/lib/LegacyHelperTest.php | 38 -------------------------------------- 1 file changed, 38 deletions(-) (limited to 'tests/lib/LegacyHelperTest.php') 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() */ -- cgit v1.2.3