2014-02-20 21:50:27 +04:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
2016-05-19 10:38:52 +03:00
|
|
|
namespace Test;
|
2016-09-12 22:41:19 +03:00
|
|
|
use OCP\ICacheFactory;
|
|
|
|
use OCP\IConfig;
|
2016-05-19 10:38:52 +03:00
|
|
|
|
2015-11-25 18:58:54 +03:00
|
|
|
/**
|
2016-05-19 10:38:52 +03:00
|
|
|
* Class UrlGeneratorTest
|
2015-11-25 18:58:54 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*/
|
2016-05-19 10:38:52 +03:00
|
|
|
class UrlGeneratorTest extends \Test\TestCase {
|
2014-02-20 21:50:27 +04:00
|
|
|
|
2014-04-16 16:32:08 +04:00
|
|
|
/**
|
|
|
|
* @small
|
2014-05-19 19:50:53 +04:00
|
|
|
* test linkTo URL construction
|
2014-04-16 16:32:08 +04:00
|
|
|
* @dataProvider provideDocRootAppUrlParts
|
|
|
|
*/
|
|
|
|
public function testLinkToDocRoot($app, $file, $args, $expectedResult) {
|
|
|
|
\OC::$WEBROOT = '';
|
2016-09-12 22:41:19 +03:00
|
|
|
$config = $this->createMock(IConfig::class);
|
|
|
|
$cacheFactory = $this->createMock(ICacheFactory::class);
|
2015-03-17 14:35:47 +03:00
|
|
|
$urlGenerator = new \OC\URLGenerator($config, $cacheFactory);
|
2014-04-16 16:32:08 +04:00
|
|
|
$result = $urlGenerator->linkTo($app, $file, $args);
|
|
|
|
|
|
|
|
$this->assertEquals($expectedResult, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
2014-05-19 19:50:53 +04:00
|
|
|
* test linkTo URL construction in sub directory
|
2014-04-16 16:32:08 +04:00
|
|
|
* @dataProvider provideSubDirAppUrlParts
|
|
|
|
*/
|
|
|
|
public function testLinkToSubDir($app, $file, $args, $expectedResult) {
|
|
|
|
\OC::$WEBROOT = '/owncloud';
|
2016-09-12 22:41:19 +03:00
|
|
|
$config = $this->createMock(IConfig::class);
|
|
|
|
$cacheFactory = $this->createMock(ICacheFactory::class);
|
2015-03-17 14:35:47 +03:00
|
|
|
$urlGenerator = new \OC\URLGenerator($config, $cacheFactory);
|
2014-04-16 16:32:08 +04:00
|
|
|
$result = $urlGenerator->linkTo($app, $file, $args);
|
|
|
|
|
|
|
|
$this->assertEquals($expectedResult, $result);
|
|
|
|
}
|
|
|
|
|
2014-09-08 19:12:44 +04:00
|
|
|
/**
|
|
|
|
* @dataProvider provideRoutes
|
|
|
|
*/
|
|
|
|
public function testLinkToRouteAbsolute($route, $expected) {
|
|
|
|
\OC::$WEBROOT = '/owncloud';
|
2016-09-12 22:41:19 +03:00
|
|
|
$config = $this->createMock(IConfig::class);
|
|
|
|
$cacheFactory = $this->createMock(ICacheFactory::class);
|
2015-03-17 14:35:47 +03:00
|
|
|
$urlGenerator = new \OC\URLGenerator($config, $cacheFactory);
|
2014-09-08 19:12:44 +04:00
|
|
|
$result = $urlGenerator->linkToRouteAbsolute($route);
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function provideRoutes() {
|
|
|
|
return array(
|
2015-11-16 22:57:41 +03:00
|
|
|
array('files_ajax_list', 'http://localhost/owncloud/index.php/apps/files/ajax/list.php'),
|
2016-10-16 20:57:08 +03:00
|
|
|
array('core.Preview.getPreview', 'http://localhost/owncloud/index.php/core/preview.png'),
|
2014-09-08 19:12:44 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-04-16 16:32:08 +04:00
|
|
|
public function provideDocRootAppUrlParts() {
|
|
|
|
return array(
|
2015-11-16 22:57:41 +03:00
|
|
|
array('files', 'ajax/list.php', array(), '/index.php/apps/files/ajax/list.php'),
|
|
|
|
array('files', 'ajax/list.php', array('trut' => 'trat', 'dut' => 'dat'), '/index.php/apps/files/ajax/list.php?trut=trat&dut=dat'),
|
2014-04-16 16:32:08 +04:00
|
|
|
array('', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), '/index.php?trut=trat&dut=dat'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function provideSubDirAppUrlParts() {
|
|
|
|
return array(
|
2015-11-16 22:57:41 +03:00
|
|
|
array('files', 'ajax/list.php', array(), '/owncloud/index.php/apps/files/ajax/list.php'),
|
|
|
|
array('files', 'ajax/list.php', array('trut' => 'trat', 'dut' => 'dat'), '/owncloud/index.php/apps/files/ajax/list.php?trut=trat&dut=dat'),
|
2014-04-16 16:32:08 +04:00
|
|
|
array('', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), '/owncloud/index.php?trut=trat&dut=dat'),
|
|
|
|
);
|
|
|
|
}
|
2014-02-20 21:50:27 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
2014-05-19 19:50:53 +04:00
|
|
|
* test absolute URL construction
|
2014-03-07 05:44:34 +04:00
|
|
|
* @dataProvider provideDocRootURLs
|
2014-02-20 21:50:27 +04:00
|
|
|
*/
|
2014-03-07 05:44:34 +04:00
|
|
|
function testGetAbsoluteURLDocRoot($url, $expectedResult) {
|
2014-02-20 21:50:27 +04:00
|
|
|
|
2014-03-07 05:44:34 +04:00
|
|
|
\OC::$WEBROOT = '';
|
2016-09-12 22:41:19 +03:00
|
|
|
$config = $this->createMock(IConfig::class);
|
|
|
|
$cacheFactory = $this->createMock(ICacheFactory::class);
|
2015-03-17 14:35:47 +03:00
|
|
|
$urlGenerator = new \OC\URLGenerator($config, $cacheFactory);
|
2014-02-20 21:50:27 +04:00
|
|
|
$result = $urlGenerator->getAbsoluteURL($url);
|
|
|
|
|
|
|
|
$this->assertEquals($expectedResult, $result);
|
|
|
|
}
|
|
|
|
|
2014-03-07 05:44:34 +04:00
|
|
|
/**
|
|
|
|
* @small
|
2014-05-19 19:50:53 +04:00
|
|
|
* test absolute URL construction
|
2014-03-07 05:44:34 +04:00
|
|
|
* @dataProvider provideSubDirURLs
|
|
|
|
*/
|
|
|
|
function testGetAbsoluteURLSubDir($url, $expectedResult) {
|
|
|
|
|
|
|
|
\OC::$WEBROOT = '/owncloud';
|
2016-09-12 22:41:19 +03:00
|
|
|
$config = $this->createMock(IConfig::class);
|
|
|
|
$cacheFactory = $this->createMock(ICacheFactory::class);
|
2015-03-17 14:35:47 +03:00
|
|
|
$urlGenerator = new \OC\URLGenerator($config, $cacheFactory);
|
2014-03-07 05:44:34 +04:00
|
|
|
$result = $urlGenerator->getAbsoluteURL($url);
|
|
|
|
|
|
|
|
$this->assertEquals($expectedResult, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function provideDocRootURLs() {
|
2014-02-20 21:50:27 +04:00
|
|
|
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"),
|
|
|
|
);
|
|
|
|
}
|
2014-03-07 05:44:34 +04:00
|
|
|
|
|
|
|
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"),
|
|
|
|
);
|
|
|
|
}
|
2014-02-20 21:50:27 +04:00
|
|
|
}
|
|
|
|
|