Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105795527
PhutilDocblockParserTestCase.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, Mar 19, 20:35
Size
3 KB
Mime Type
text/x-php
Expires
Fri, Mar 21, 20:35 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25042871
Attached To
rPHU libphutil
PhutilDocblockParserTestCase.php
View Options
<?php
/**
* Test cases for @{class:PhutilDocblockParser}.
*
* @group testcase
*/
final
class
PhutilDocblockParserTestCase
extends
PhutilTestCase
{
public
function
testParser
()
{
$root
=
dirname
(
__FILE__
).
'/docblock/'
;
foreach
(
Filesystem
::
listDirectory
(
$root
,
$hidden
=
false
)
as
$file
)
{
$this
->
parseDocblock
(
$root
.
$file
);
}
}
private
function
parseDocblock
(
$doc_file
)
{
$contents
=
Filesystem
::
readFile
(
$doc_file
);
$file
=
basename
(
$doc_file
);
$parser
=
new
PhutilDocblockParser
();
list
(
$docblock
,
$specials
)
=
$parser
->
parse
(
$contents
);
switch
(
$file
)
{
case
'embedded-specials.docblock'
:
$this
->
assertEqual
(
array
(),
$specials
);
$this
->
assertEqual
(
"So long as a @special does not appear at the beginning of a line,
\n
"
.
"it is parsed as normal text."
,
$docblock
);
break
;
case
'indented-block.docblock'
:
$this
->
assertEqual
(
array
(),
$specials
);
$this
->
assertEqual
(
"Cozy lummox gives smart squid who asks for job pen."
,
$docblock
);
break
;
case
'indented-text.docblock'
:
$this
->
assertEqual
(
array
(),
$specials
);
$this
->
assertEqual
(
"Cozy lummox gives smart squid who asks for job pen."
,
$docblock
);
break
;
case
'multiline-special.docblock'
:
$this
->
assertEqual
(
array
(
'special'
=>
"x y z"
,
),
$specials
);
$this
->
assertEqual
(
""
,
$docblock
);
break
;
case
'multi-specials.docblock'
:
$this
->
assertEqual
(
array
(
'special'
=>
"north
\n
south"
,
),
$specials
);
$this
->
assertEqual
(
""
,
$docblock
);
break
;
case
'specials.docblock'
:
$this
->
assertEqual
(
array
(
'type'
=>
'type'
,
'task'
=>
'task'
,
),
$specials
);
$this
->
assertEqual
(
""
,
$docblock
);
break
;
case
'linebreak-breaks-specials.docblock'
:
$this
->
assertEqual
(
array
(
'title'
=>
'title'
,
),
$specials
);
$this
->
assertEqual
(
"This is normal text, not part of the @title."
,
$docblock
);
break
;
case
'specials-with-hyphen.docblock'
:
$this
->
assertEqual
(
array
(
'repeat-hyphen'
=>
"a
\n
b"
,
'multiline-hyphen'
=>
"mmm nnn"
,
'normal-hyphen'
=>
"x"
,
),
$specials
);
break
;
case
'indented-specials.docblock'
:
$this
->
assertEqual
(
array
(
'title'
=>
'sendmail'
,
),
$specials
);
break
;
case
'flag-specials.docblock'
:
$this
->
assertEqual
(
"stuff above
\n\n
stuff in the middle
\n\n
stuff below"
,
$docblock
);
$this
->
assertEqual
(
array
(
'flag'
=>
true
,
'stuff'
=>
true
,
'zebra'
=>
true
,
'apple'
=>
true
,
),
$specials
);
break
;
default
:
throw
new
Exception
(
"No test case to handle file '{$file}'!"
);
}
}
}
Event Timeline
Log In to Comment