Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101630791
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, Feb 12, 06:30
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Feb 14, 06:30 (2 d)
Engine
blob
Format
Raw Data
Handle
24204427
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>** %s **</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!"
,
pht
(
'ERROR'
)),
phutil_console_wrap
(
phutil_console_format
(
'<bg:red>** %s **</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!'
,
pht
(
'ERROR'
))),
pht
(
'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