3 * Copyright © 2013 Alexandre Emsenhuber
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 * @group GlobalFunctions
25 * @covers ::wfParseUrl
27 class WfParseUrlTest
extends MediaWikiTestCase
{
28 protected function setUp() {
31 $this->setMwGlobals( 'wgUrlProtocols', array(
41 * @dataProvider provideURLs
43 public function testWfParseUrl( $url, $parts ) {
51 * Provider of URLs for testing wfParseUrl()
55 public static function provideURLs() {
62 'host' => 'example.org',
70 'host' => 'example.org',
74 'https://example.org',
78 'host' => 'example.org',
82 'http://id:key@example.org:123/path?foo=bar#baz',
88 'host' => 'example.org',
96 'file://example.org/etc/php.ini',
100 'host' => 'example.org',
101 'path' => '/etc/php.ini',
105 'file:///etc/php.ini',
108 'delimiter' => '://',
110 'path' => '/etc/php.ini',
117 'delimiter' => '://',
123 'mailto:id@example.org',
125 'scheme' => 'mailto',
127 'host' => 'id@example.org',
132 'mailto:id@example.org?subject=Foo',
134 'scheme' => 'mailto',
136 'host' => 'id@example.org',
138 'query' => 'subject=Foo',
142 'mailto:?subject=Foo',
144 'scheme' => 'mailto',
148 'query' => 'subject=Foo',