59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?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 provideDocRootURLs
|
|
*/
|
|
function testGetAbsoluteURLDocRoot($url, $expectedResult) {
|
|
|
|
\OC::$WEBROOT = '';
|
|
$urlGenerator = new \OC\URLGenerator(null);
|
|
$result = $urlGenerator->getAbsoluteURL($url);
|
|
|
|
$this->assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
* @brief test absolute URL construction
|
|
* @dataProvider provideSubDirURLs
|
|
*/
|
|
function testGetAbsoluteURLSubDir($url, $expectedResult) {
|
|
|
|
\OC::$WEBROOT = '/owncloud';
|
|
$urlGenerator = new \OC\URLGenerator(null);
|
|
$result = $urlGenerator->getAbsoluteURL($url);
|
|
|
|
$this->assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public function provideDocRootURLs() {
|
|
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"),
|
|
);
|
|
}
|
|
|
|
public function provideSubDirURLs() {
|
|
return array(
|
|
array("index.php", "http://localhost/owncloud/index.php"),
|
|
array("/index.php", "http://localhost/owncloud/index.php"),
|
|
array("/apps/index.php", "http://localhost/owncloud/apps/index.php"),
|
|
array("apps/index.php", "http://localhost/owncloud/apps/index.php"),
|
|
);
|
|
}
|
|
}
|
|
|