diff options
author | Björn Schießle <schiessle@owncloud.com> | 2014-02-21 13:45:49 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2014-02-21 13:45:49 +0100 |
commit | 9f0fc30251fbcf0d2a75f91aa8be606e39297fa4 (patch) | |
tree | 4d6ba62e18abe8da83e89aeabe5ec096decf0f95 | |
parent | 387cdc81dc5f6f061e11a4cd516931b453b273e7 (diff) | |
parent | 1ae6e9ec21415ade8122a05d01dd091091cb4bcd (diff) | |
download | nextcloud-server-9f0fc30251fbcf0d2a75f91aa8be606e39297fa4.tar.gz nextcloud-server-9f0fc30251fbcf0d2a75f91aa8be606e39297fa4.zip |
Merge pull request #7337 from owncloud/test_for_6935
add unit test for \OC\URLGenerator::getAbsoluteURL
-rw-r--r-- | tests/lib/urlgenerator.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/lib/urlgenerator.php b/tests/lib/urlgenerator.php new file mode 100644 index 00000000000..875a7f06580 --- /dev/null +++ b/tests/lib/urlgenerator.php @@ -0,0 +1,34 @@ +<?php +/** + * Copyright (c) 2014 Bjoern Schiessle <schiessle@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Urlgenerator extends PHPUnit_Framework_TestCase { + + + /** + * @small + * @brief test absolute URL construction + * @dataProvider provideURLs + */ + function testGetAbsoluteURL($url, $expectedResult) { + + $urlGenerator = new \OC\URLGenerator(null); + $result = $urlGenerator->getAbsoluteURL($url); + + $this->assertEquals($expectedResult, $result); + } + + public function provideURLs() { + return array( + array("index.php", "http://localhost/index.php"), + array("/index.php", "http://localhost/index.php"), + array("/apps/index.php", "http://localhost/apps/index.php"), + array("apps/index.php", "http://localhost/apps/index.php"), + ); + } +} + |