Merge pull request #7337 from owncloud/test_for_6935

add unit test for \OC\URLGenerator::getAbsoluteURL
This commit is contained in:
Björn Schießle 2014-02-21 13:45:49 +01:00
commit 9f0fc30251

View file

@ -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"),
);
}
}