Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106124878
DiffusionSubversionWireProtocolTestCase.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
Sat, Mar 22, 18:49
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Mar 24, 18:49 (2 d)
Engine
blob
Format
Raw Data
Handle
25105002
Attached To
rPH Phabricator
DiffusionSubversionWireProtocolTestCase.php
View Options
<?php
final
class
DiffusionSubversionWireProtocolTestCase
extends
PhabricatorTestCase
{
public
function
testSubversionWireProtocolParser
()
{
$this
->
assertSameSubversionMessages
(
'( ) '
,
array
(
array
(
),
));
$this
->
assertSameSubversionMessages
(
'( duck 5:quack 42 ( item1 item2 ) ) '
,
array
(
array
(
array
(
'type'
=>
'word'
,
'value'
=>
'duck'
,
),
array
(
'type'
=>
'string'
,
'value'
=>
'quack'
,
),
array
(
'type'
=>
'number'
,
'value'
=>
42
,
),
array
(
'type'
=>
'list'
,
'value'
=>
array
(
array
(
'type'
=>
'word'
,
'value'
=>
'item1'
,
),
array
(
'type'
=>
'word'
,
'value'
=>
'item2'
,
),
),
),
),
));
$this
->
assertSameSubversionMessages
(
'( msg1 ) ( msg2 ) '
,
array
(
array
(
array
(
'type'
=>
'word'
,
'value'
=>
'msg1'
,
),
),
array
(
array
(
'type'
=>
'word'
,
'value'
=>
'msg2'
,
),
),
));
}
public
function
testSubversionWireProtocolPartialFrame
()
{
$proto
=
new
DiffusionSubversionWireProtocol
();
// This is primarily a test that we don't hang when we write() a frame
// which straddles a string boundary.
$msg1
=
$proto
->
writeData
(
'( duck 5:qu'
);
$msg2
=
$proto
->
writeData
(
'ack ) '
);
$this
->
assertEqual
(
array
(),
ipull
(
$msg1
,
'structure'
));
$this
->
assertEqual
(
array
(
array
(
array
(
'type'
=>
'word'
,
'value'
=>
'duck'
,
),
array
(
'type'
=>
'string'
,
'value'
=>
'quack'
,
),
),
),
ipull
(
$msg2
,
'structure'
));
}
private
function
assertSameSubversionMessages
(
$string
,
array
$structs
)
{
$proto
=
new
DiffusionSubversionWireProtocol
();
// Verify that the wire message parses into the structs.
$messages
=
$proto
->
writeData
(
$string
);
$messages
=
ipull
(
$messages
,
'structure'
);
$this
->
assertEqual
(
$structs
,
$messages
,
'parse<'
.
$string
.
'>'
);
// Verify that the structs serialize into the wire message.
$serial
=
array
();
foreach
(
$structs
as
$struct
)
{
$serial
[]
=
$proto
->
serializeStruct
(
$struct
);
}
$serial
=
implode
(
''
,
$serial
);
$this
->
assertEqual
(
$string
,
$serial
,
'serialize<'
.
$string
.
'>'
);
}
}
Event Timeline
Log In to Comment