Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107266134
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
Sun, Apr 6, 11:33
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Apr 8, 11:33 (2 d)
Engine
blob
Format
Raw Data
Handle
25385815
Attached To
rPHU libphutil
PhutilConsoleWrapTestCase.php
View Options
<?php
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