Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107177939
PhabricatorHashTestCase.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, Apr 5, 16:50
Size
1006 B
Mime Type
text/x-php
Expires
Mon, Apr 7, 16:50 (2 d)
Engine
blob
Format
Raw Data
Handle
25366486
Attached To
rPH Phabricator
PhabricatorHashTestCase.php
View Options
<?php
final
class
PhabricatorHashTestCase
extends
PhabricatorTestCase
{
public
function
testHashForIndex
()
{
$map
=
array
(
'dog'
=>
'Aliif7Qjd5ct'
,
'cat'
=>
'toudDsue3Uv8'
,
'rat'
=>
'RswaKgTjqOuj'
,
'bat'
=>
'rAkJKyX4YdYm'
,
);
foreach
(
$map
as
$input
=>
$expect
)
{
$this
->
assertEqual
(
$expect
,
PhabricatorHash
::
digestForIndex
(
$input
),
pht
(
'Input: %s'
,
$input
));
}
// Test that the encoding produces 6 bits of entropy per byte.
$entropy
=
array
(
'dog'
,
'cat'
,
'rat'
,
'bat'
,
'dig'
,
'fig'
,
'cot'
,
'cut'
,
'fog'
,
'rig'
,
'rug'
,
'dug'
,
'mat'
,
'pat'
,
'eat'
,
'tar'
,
'pot'
,
);
$seen
=
array
();
foreach
(
$entropy
as
$input
)
{
$chars
=
preg_split
(
'//'
,
PhabricatorHash
::
digestForIndex
(
$input
));
foreach
(
$chars
as
$char
)
{
$seen
[
$char
]
=
true
;
}
}
$this
->
assertEqual
(
(
1
<<
6
),
count
(
$seen
),
pht
(
'Distinct characters in hash of: %s'
,
$input
));
}
}
Event Timeline
Log In to Comment