Blame view

sources/tests/lib/urlgenerator.php 854 Bytes
a293d369c   Kload   Update sources to...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  <?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"),
  			);
  	}
  }