浏览代码

add unit test for \OC\URLGenerator::getAbsoluteURL to verify #6935

tags/v7.0.0alpha2
Bjoern Schiessle 10 年前
父节点
当前提交
1ae6e9ec21
共有 1 个文件被更改,包括 34 次插入0 次删除
  1. 34
    0
      tests/lib/urlgenerator.php

+ 34
- 0
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"),
);
}
}


正在加载...
取消
保存