Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110111174
PhutilURITestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Apr 24, 18:45
Size
2 KB
Mime Type
text/x-php
Expires
Sat, Apr 26, 18:45 (2 d)
Engine
blob
Format
Raw Data
Handle
25776912
Attached To
rPHU libphutil
PhutilURITestCase.php
View Options
<?php
/**
* Test cases for @{class:PhutilURI} parser.
*
* @group testcase
*/
final
class
PhutilURITestCase
extends
PhutilTestCase
{
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'
);
$uri
=
new
PhutilURI
(
'http://0@domain.com/'
);
$this
->
assertEqual
(
'0'
,
$uri
->
getUser
());
$this
->
assertEqual
(
'http://0@domain.com/'
,
(
string
)
$uri
);
$uri
=
new
PhutilURI
(
'http://0:0@domain.com/'
);
$this
->
assertEqual
(
'0'
,
$uri
->
getUser
());
$this
->
assertEqual
(
'0'
,
$uri
->
getPass
());
$this
->
assertEqual
(
'http://0:0@domain.com/'
,
(
string
)
$uri
);
$uri
=
new
PhutilURI
(
'http://%20:%20@domain.com/'
);
$this
->
assertEqual
(
' '
,
$uri
->
getUser
());
$this
->
assertEqual
(
' '
,
$uri
->
getPass
());
$this
->
assertEqual
(
'http://%20:%20@domain.com/'
,
(
string
)
$uri
);
$uri
=
new
PhutilURI
(
'http://%40:%40@domain.com/'
);
$this
->
assertEqual
(
'@'
,
$uri
->
getUser
());
$this
->
assertEqual
(
'@'
,
$uri
->
getPass
());
$this
->
assertEqual
(
'http://%40:%40@domain.com/'
,
(
string
)
$uri
);
}
public
function
testURIGeneration
()
{
$uri
=
new
PhutilURI
(
'http://example.com'
);
$uri
->
setPath
(
'bar'
);
$this
->
assertEqual
(
'http://example.com/bar'
,
$uri
->
__toString
());
}
public
function
testStrictURIParsingOfHosts
()
{
$uri
=
new
PhutilURI
(
'http://&/'
);
$this
->
assertEqual
(
''
,
$uri
->
getDomain
());
}
public
function
testStrictURIParsingOfLeadingWhitespace
()
{
$uri
=
new
PhutilURI
(
' http://example.com/'
);
$this
->
assertEqual
(
''
,
$uri
->
getDomain
());
}
}
Event Timeline
Log In to Comment