TYPO3 CMS  TYPO3_7-6
HttpUtilityTest.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 {
28  public function isUrlBuiltCorrectly(array $urlParts, $expected)
29  {
31  $this->assertEquals($expected, $url);
32  }
33 
38  {
39  return [
40  'rebuild url without scheme' => [
41  parse_url('typo3.org/path/index.php'),
42  'typo3.org/path/index.php'
43  ],
44  'rebuild url with scheme' => [
45  parse_url('http://typo3.org/path/index.php'),
46  'http://typo3.org/path/index.php'
47  ],
48  'rebuild url with all properties' => [
49  parse_url('http://editor:secret@typo3.org:8080/path/index.php?query=data#fragment'),
50  'http://editor:secret@typo3.org:8080/path/index.php?query=data#fragment'
51  ],
52  'url without username, but password' => [
53  [
54  'scheme' => 'http',
55  'pass' => 'secrept',
56  'host' => 'typo3.org'
57  ],
58  'http://typo3.org'
59  ]
60  ];
61  }
62 }
static buildUrl(array $urlParts)