Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14402152
PhutilURITestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
PhutilURITestCase.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Test cases for @{class:PhutilURI} parser.
*
* @group testcase
*/
final
class
PhutilURITestCase
extends
ArcanistPhutilTestCase
{
public
function
testURIParsing
()
{
$uri
=
new
PhutilURI
(
'http://user:pass@host:99/path/?query=value#fragment'
);
$this
->
assertEqual
(
'http'
,
$uri
->
getProtocol
(),
'protocol'
);
$this
->
assertEqual
(
'user'
,
$uri
->
getUser
(),
'user'
);
$this
->
assertEqual
(
'pass'
,
$uri
->
getPass
(),
'pass'
);
$this
->
assertEqual
(
'host'
,
$uri
->
getDomain
(),
'domain'
);
$this
->
assertEqual
(
'99'
,
$uri
->
getPort
(),
'port'
);
$this
->
assertEqual
(
'/path/'
,
$uri
->
getPath
(),
'path'
);
$this
->
assertEqual
(
array
(
'query'
=>
'value'
,
),
$uri
->
getQueryParams
(),
'query params'
);
$this
->
assertEqual
(
'fragment'
,
$uri
->
getFragment
(),
'fragment'
);
$this
->
assertEqual
(
'http://user:pass@host:99/path/?query=value#fragment'
,
(
string
)
$uri
,
'uri'
);
$uri
=
new
PhutilURI
(
'ssh://git@example.com/example/example.git'
);
$this
->
assertEqual
(
'ssh'
,
$uri
->
getProtocol
(),
'protocol'
);
$this
->
assertEqual
(
'git'
,
$uri
->
getUser
(),
'user'
);
$this
->
assertEqual
(
''
,
$uri
->
getPass
(),
'pass'
);
$this
->
assertEqual
(
'example.com'
,
$uri
->
getDomain
(),
'domain'
);
$this
->
assertEqual
(
''
,
$uri
->
getPort
(),
'port'
);
$this
->
assertEqual
(
'/example/example.git'
,
$uri
->
getPath
(),
'path'
);
$this
->
assertEqual
(
array
(),
$uri
->
getQueryParams
(),
'query params'
);
$this
->
assertEqual
(
''
,
$uri
->
getFragment
(),
'fragment'
);
$this
->
assertEqual
(
'ssh://git@example.com/example/example.git'
,
(
string
)
$uri
,
'uri'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Dec 24, 11:44 PM (1 d, 19 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6907508
Default Alt Text
PhutilURITestCase.php (2 KB)
Attached To
Mode
rPHU libphutil
Attached
Detach File
Event Timeline
Log In to Comment