Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99208117
DiffusionSSHMercurialWireTestCase.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, Jan 22, 09:47
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jan 24, 09:47 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23738913
Attached To
rPH Phabricator
DiffusionSSHMercurialWireTestCase.php
View Options
<?php
final
class
DiffusionSSHMercurialWireTestCase
extends
PhabricatorTestCase
{
public
function
testMercurialClientWireProtocolParser
()
{
$data
=
dirname
(
__FILE__
).
'/hgwiredata/'
;
$dir
=
Filesystem
::
listDirectory
(
$data
,
$include_hidden
=
false
);
foreach
(
$dir
as
$file
)
{
$raw
=
Filesystem
::
readFile
(
$data
.
$file
);
$raw
=
explode
(
"
\n
~~~~~~~~~~
\n
"
,
$raw
,
2
);
$this
->
assertEqual
(
2
,
count
(
$raw
));
$expect
=
json_decode
(
$raw
[
1
],
true
);
$this
->
assertTrue
(
is_array
(
$expect
),
$file
);
$this
->
assertParserResult
(
$expect
,
$raw
[
0
],
$file
);
}
}
private
function
assertParserResult
(
array
$expect
,
$input
,
$file
)
{
list
(
$x
,
$y
)
=
PhutilSocketChannel
::
newChannelPair
();
$xp
=
new
DiffusionSSHMercurialWireClientProtocolChannel
(
$x
);
$y
->
write
(
$input
);
$y
->
flush
();
$y
->
closeWriteChannel
();
$messages
=
array
();
for
(
$ii
=
0
;
$ii
<
count
(
$expect
);
$ii
++)
{
try
{
$messages
[]
=
$xp
->
waitForMessage
();
}
catch
(
Exception
$ex
)
{
// This is probably the parser not producing as many messages as
// we expect. Log the exception, but continue to the assertion below
// since that will often be easier to diagnose.
phlog
(
$ex
);
break
;
}
}
$this
->
assertEqual
(
$expect
,
$messages
,
$file
);
// Now, make sure the channel doesn't have *more* messages than we expect.
// Specifically, it should throw when we try to read another message.
$caught
=
null
;
try
{
$xp
->
waitForMessage
();
}
catch
(
Exception
$ex
)
{
$caught
=
$ex
;
}
$this
->
assertTrue
(
(
$caught
instanceof
Exception
),
"No extra messages for '{$file}'."
);
}
}
Event Timeline
Log In to Comment