Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97256627
PHUIInvisibleCharacterTestCase.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
Fri, Jan 3, 20:21
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 5, 20:21 (2 d)
Engine
blob
Format
Raw Data
Handle
23366609
Attached To
rPH Phabricator
PHUIInvisibleCharacterTestCase.php
View Options
<?php
final
class
PHUIInvisibleCharacterTestCase
extends
PhabricatorTestCase
{
public
function
testEmptyString
()
{
$view
=
new
PHUIInvisibleCharacterView
(
''
);
$res
=
$view
->
render
();
$this
->
assertEqual
(
$res
,
array
());
}
public
function
testEmptyPlainText
()
{
$view
=
(
new
PHUIInvisibleCharacterView
(
''
))
->
setPlainText
(
true
);
$res
=
$view
->
render
();
$this
->
assertEqual
(
$res
,
''
);
}
public
function
testWithNamedChars
()
{
$test_input
=
"
\x
00
\n\t
"
;
$view
=
(
new
PHUIInvisibleCharacterView
(
$test_input
))
->
setPlainText
(
true
);
$res
=
$view
->
render
();
$this
->
assertEqual
(
$res
,
'<NULL><NEWLINE><TAB><SPACE>'
);
}
public
function
testWithHexChars
()
{
$test_input
=
"abc
\x
01"
;
$view
=
(
new
PHUIInvisibleCharacterView
(
$test_input
))
->
setPlainText
(
true
);
$res
=
$view
->
render
();
$this
->
assertEqual
(
$res
,
'abc<0x01>'
);
}
public
function
testWithNamedAsHex
()
{
$test_input
=
"
\x
00
\x
0a
\x
09
\x
20"
;
$view
=
(
new
PHUIInvisibleCharacterView
(
$test_input
))
->
setPlainText
(
true
);
$res
=
$view
->
render
();
$this
->
assertEqual
(
$res
,
'<NULL><NEWLINE><TAB><SPACE>'
);
}
public
function
testHtmlDecoration
()
{
$test_input
=
"a
\x
00
\n\t
"
;
$view
=
new
PHUIInvisibleCharacterView
(
$test_input
);
$res
=
$view
->
render
();
$this
->
assertFalse
(
$res
[
0
]
instanceof
PhutilSafeHTML
);
$this
->
assertTrue
(
$res
[
1
]
instanceof
PhutilSafeHTML
);
$this
->
assertTrue
(
$res
[
2
]
instanceof
PhutilSafeHTML
);
$this
->
assertTrue
(
$res
[
3
]
instanceof
PhutilSafeHTML
);
$this
->
assertTrue
(
$res
[
4
]
instanceof
PhutilSafeHTML
);
}
}
Event Timeline
Log In to Comment