Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94986009
PhutilXHPASTSyntaxHighlighterTestCase.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
Wed, Dec 11, 23:07
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Dec 13, 23:07 (2 d)
Engine
blob
Format
Raw Data
Handle
22910847
Attached To
rPHU libphutil
PhutilXHPASTSyntaxHighlighterTestCase.php
View Options
<?php
final
class
PhutilXHPASTSyntaxHighlighterTestCase
extends
PhutilTestCase
{
private
function
highlight
(
$source
)
{
$highlighter
=
new
PhutilXHPASTSyntaxHighlighter
();
$future
=
$highlighter
->
getHighlightFuture
(
$source
);
return
$future
->
resolve
();
}
private
function
read
(
$file
)
{
$path
=
dirname
(
__FILE__
).
'/xhpast/'
.
$file
;
return
Filesystem
::
readFile
(
$path
);
}
public
function
testBuiltinClassnames
()
{
$this
->
assertEqual
(
$this
->
read
(
'builtin-classname.expect'
),
(
string
)
$this
->
highlight
(
$this
->
read
(
'builtin-classname.source'
)),
pht
(
'Builtin classnames should not be marked as linkable symbols.'
));
$this
->
assertEqual
(
rtrim
(
$this
->
read
(
'trailing-comment.expect'
)),
(
string
)
$this
->
highlight
(
$this
->
read
(
'trailing-comment.source'
)),
pht
(
'Trailing comments should not be dropped.'
));
$this
->
assertEqual
(
$this
->
read
(
'multiline-token.expect'
),
(
string
)
$this
->
highlight
(
$this
->
read
(
'multiline-token.source'
)),
pht
(
'Multi-line tokens should be split across lines.'
));
$this
->
assertEqual
(
$this
->
read
(
'leading-whitespace.expect'
),
(
string
)
$this
->
highlight
(
$this
->
read
(
'leading-whitespace.source'
)),
pht
(
'Snippets with leading whitespace should be preserved.'
));
$this
->
assertEqual
(
$this
->
read
(
'no-leading-whitespace.expect'
),
(
string
)
$this
->
highlight
(
$this
->
read
(
'no-leading-whitespace.source'
)),
pht
(
'Snippets with no leading whitespace should be preserved.'
));
}
}
Event Timeline
Log In to Comment