Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282438
PhutilRopeTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhutilRopeTestCase.php
View Options
<?php
final
class
PhutilRopeTestCase
extends
PhutilTestCase
{
public
function
testRopeOperations
(
)
{
$rope
=
new
PhutilRope
(
)
;
$rope
->
append
(
'aaa'
)
;
$rope
->
append
(
'bbb'
)
;
$this
->
assertEqual
(
6
,
$rope
->
getByteLength
(
)
)
;
$this
->
assertEqual
(
'aaabbb'
,
$rope
->
getAsString
(
)
)
;
$rope
->
removeBytesFromHead
(
2
)
;
$this
->
assertEqual
(
4
,
$rope
->
getByteLength
(
)
)
;
$this
->
assertEqual
(
'abbb'
,
$rope
->
getAsString
(
)
)
;
$rope
->
removeBytesFromHead
(
4
)
;
$this
->
assertEqual
(
0
,
$rope
->
getByteLength
(
)
)
;
$this
->
assertEqual
(
''
,
$rope
->
getAsString
(
)
)
;
}
public
function
testMoreRopeOperations
(
)
{
$rope
=
new
PhutilRope
(
)
;
$rope
->
append
(
'aaa'
)
;
$rope
->
append
(
'bbb'
)
;
$rope
->
append
(
'ccc'
)
;
$rope
->
append
(
'rrrrddddddddd'
)
;
$rope
->
removeBytesFromHead
(
4
)
;
$string
=
$rope
->
getAsString
(
)
;
$this
->
assertEqual
(
'bbcccrrrrddddddddd'
,
$string
)
;
$this
->
assertEqual
(
strlen
(
$string
)
,
$rope
->
getByteLength
(
)
)
;
$rope
=
new
PhutilRope
(
)
;
$rope
->
append
(
'aaa'
)
;
$rope
->
append
(
'bbb'
)
;
$rope
->
removeBytesFromHead
(
6
)
;
$string
=
$rope
->
getAsString
(
)
;
$this
->
assertEqual
(
''
,
$string
)
;
$this
->
assertEqual
(
0
,
$rope
->
getByteLength
(
)
)
;
$rope
=
new
PhutilRope
(
)
;
$rope
->
append
(
'a'
)
;
$rope
->
append
(
'b'
)
;
$rope
->
append
(
'c'
)
;
$rope
->
removeBytesFromHead
(
1024
)
;
$string
=
$rope
->
getAsString
(
)
;
$this
->
assertEqual
(
''
,
$string
)
;
$this
->
assertEqual
(
0
,
$rope
->
getByteLength
(
)
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 07:58 (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1119864
Default Alt Text
PhutilRopeTestCase.php (1 KB)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment