Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102357435
LinesOfALargeFileTestCase.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, Feb 19, 20:56
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Feb 21, 20:56 (2 d)
Engine
blob
Format
Raw Data
Handle
24337791
Attached To
rPHU libphutil
LinesOfALargeFileTestCase.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
final
class
LinesOfALargeFileTestCase
extends
ArcanistPhutilTestCase
{
public
function
testBasics
()
{
$this
->
writeAndRead
(
"abcd"
,
array
(
"abcd"
,
));
}
public
function
testTerminalDelimiterPresent
()
{
$this
->
writeAndRead
(
"bat
\n
cat
\n
dog
\n
"
,
array
(
"bat"
,
"cat"
,
"dog"
,
));
}
public
function
testTerminalDelimiterAbsent
()
{
$this
->
writeAndRead
(
"bat
\n
cat
\n
dog"
,
array
(
"bat"
,
"cat"
,
"dog"
,
));
}
public
function
testChangeDelimiter
()
{
$this
->
writeAndRead
(
"bat
\1
cat
\1
dog
\1
"
,
array
(
"bat"
,
"cat"
,
"dog"
,
),
"
\1
"
);
}
public
function
testEmptyLines
()
{
$this
->
writeAndRead
(
"
\n\n
bat
\n
"
,
array
(
''
,
''
,
'bat'
,
));
}
public
function
testLargeFile
()
{
$line
=
"The quick brown fox jumps over the lazy dog."
;
$n
=
100
;
$this
->
writeAndRead
(
str_repeat
(
$line
.
"
\n
"
,
$n
),
array_fill
(
0
,
$n
,
$line
));
}
public
function
testLongLine
()
{
$line
=
str_repeat
(
'x'
,
64
*
1024
);
$this
->
writeAndRead
(
$line
,
array
(
$line
));
}
public
function
testReadFailure
()
{
$caught
=
null
;
try
{
$f
=
new
LinesOfALargeFile
(
'/does/not/exist.void'
);
$f
->
rewind
();
}
catch
(
FilesystemException
$ex
)
{
$caught
=
$ex
;
}
$this
->
assertEqual
(
true
,
$caught
instanceof
$ex
);
}
private
function
writeAndRead
(
$write
,
$read
,
$delimiter
=
"
\n
"
)
{
$tmp
=
new
TempFile
();
Filesystem
::
writeFile
(
$tmp
,
$write
);
$lines
=
array
();
$iterator
=
id
(
new
LinesOfALargeFile
(
$tmp
))->
setDelimiter
(
$delimiter
);
foreach
(
$iterator
as
$line
)
{
$lines
[]
=
$line
;
}
$this
->
assertEqual
(
$read
,
$lines
,
"Write: "
.
phutil_utf8_shorten
(
$write
,
32
));
}
}
Event Timeline
Log In to Comment