Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94981956
PhutilConsoleWrapTestCase.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, 22:28
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Dec 13, 22:28 (2 d)
Engine
blob
Format
Raw Data
Handle
22910125
Attached To
rPHU libphutil
PhutilConsoleWrapTestCase.php
View Options
<?php
/**
* @group testcase
*/
final
class
PhutilConsoleWrapTestCase
extends
PhutilTestCase
{
public
function
testWrap
()
{
$dir
=
dirname
(
__FILE__
).
'/wrap/'
;
$files
=
Filesystem
::
listDirectory
(
$dir
);
foreach
(
$files
as
$file
)
{
if
(
preg_match
(
'/.txt$/'
,
$file
))
{
$this
->
assertEqual
(
Filesystem
::
readFile
(
$dir
.
$file
.
'.expect'
),
phutil_console_wrap
(
Filesystem
::
readFile
(
$dir
.
$file
)),
$file
);
}
}
}
public
function
testConsoleWrap
()
{
$this
->
assertEqual
(
phutil_console_format
(
"<bg:red>** ERROR **</bg> abc abc abc abc abc abc abc abc abc abc "
.
"abc abc abc abc abc abc abc
\n
abc abc abc abc abc abc abc abc abc "
.
"abc abc!"
),
phutil_console_wrap
(
phutil_console_format
(
"<bg:red>** ERROR **</bg> abc abc abc abc abc abc abc abc abc abc "
.
"abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc "
.
"abc abc!"
)),
'ANSI escape sequences should not contribute toward wrap width.'
);
}
public
function
testWrapIndent
()
{
$turtles
=
<<<EOTURTLES
turtle turtle turtle turtle turtle turtle turtle turtle
turtle turtle turtle turtle turtle turtle turtle turtle
turtle turtle turtle turtle
EOTURTLES;
$this
->
assertEqual
(
$turtles
,
phutil_console_wrap
(
rtrim
(
str_repeat
(
'turtle '
,
20
)),
$indent
=
20
));
}
}
Event Timeline
Log In to Comment