Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongo-php-library
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sinan
mongo-php-library
Commits
a6fd0be1
Commit
a6fd0be1
authored
Jan 12, 2017
by
Jeremy Mikola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Functional test for GridFS StreamWrapper
parent
391334a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
93 additions
and
0 deletions
+93
-0
StreamWrapperFunctionalTest.php
tests/GridFS/StreamWrapperFunctionalTest.php
+93
-0
No files found.
tests/GridFS/StreamWrapperFunctionalTest.php
0 → 100644
View file @
a6fd0be1
<?php
namespace
MongoDB\Tests\GridFS
;
use
MongoDB\BSON\Binary
;
/**
* Functional tests for the internal StreamWrapper class.
*/
class
StreamWrapperFunctionalTest
extends
FunctionalTestCase
{
public
function
setUp
()
{
parent
::
setUp
();
$this
->
filesCollection
->
insertMany
([
[
'_id'
=>
'length-10'
,
'length'
=>
10
,
'chunkSize'
=>
4
],
]);
$this
->
chunksCollection
->
insertMany
([
[
'_id'
=>
1
,
'files_id'
=>
'length-10'
,
'n'
=>
0
,
'data'
=>
new
Binary
(
'abcd'
,
Binary
::
TYPE_GENERIC
)],
[
'_id'
=>
2
,
'files_id'
=>
'length-10'
,
'n'
=>
1
,
'data'
=>
new
Binary
(
'efgh'
,
Binary
::
TYPE_GENERIC
)],
[
'_id'
=>
3
,
'files_id'
=>
'length-10'
,
'n'
=>
2
,
'data'
=>
new
Binary
(
'ij'
,
Binary
::
TYPE_GENERIC
)],
]);
}
public
function
testReadableStreamClose
()
{
$stream
=
$this
->
bucket
->
openDownloadStream
(
'length-10'
);
$this
->
assertTrue
(
fclose
(
$stream
));
}
public
function
testReadableStreamEof
()
{
$stream
=
$this
->
bucket
->
openDownloadStream
(
'length-10'
);
$this
->
assertFalse
(
feof
(
$stream
));
$this
->
assertStreamContents
(
'abcdefghij'
,
$stream
);
$this
->
assertTrue
(
feof
(
$stream
));
}
public
function
testReadableStreamRead
()
{
$stream
=
$this
->
bucket
->
openDownloadStream
(
'length-10'
);
$this
->
assertSame
(
'abc'
,
fread
(
$stream
,
3
));
$this
->
assertSame
(
'defghij'
,
fread
(
$stream
,
10
));
$this
->
assertSame
(
''
,
fread
(
$stream
,
3
));
}
public
function
testReadableStreamWrite
()
{
$stream
=
$this
->
bucket
->
openDownloadStream
(
'length-10'
);
$this
->
assertSame
(
0
,
fwrite
(
$stream
,
'foobar'
));
}
public
function
testWritableStreamClose
()
{
$stream
=
$this
->
bucket
->
openUploadStream
(
'filename'
);
$this
->
assertSame
(
6
,
fwrite
(
$stream
,
'foobar'
));
$this
->
assertTrue
(
fclose
(
$stream
));
$this
->
assertStreamContents
(
'foobar'
,
$this
->
bucket
->
openDownloadStreamByName
(
'filename'
));
}
public
function
testWritableStreamEof
()
{
$stream
=
$this
->
bucket
->
openUploadStream
(
'filename'
);
$this
->
assertFalse
(
feof
(
$stream
));
$this
->
assertSame
(
6
,
fwrite
(
$stream
,
'foobar'
));
$this
->
assertFalse
(
feof
(
$stream
));
}
public
function
testWritableStreamRead
()
{
$stream
=
$this
->
bucket
->
openUploadStream
(
'filename'
);
$this
->
assertSame
(
''
,
fread
(
$stream
,
8192
));
$this
->
assertSame
(
6
,
fwrite
(
$stream
,
'foobar'
));
$this
->
assertSame
(
''
,
fread
(
$stream
,
8192
));
}
public
function
testWritableStreamWrite
()
{
$stream
=
$this
->
bucket
->
openUploadStream
(
'filename'
);
$this
->
assertSame
(
6
,
fwrite
(
$stream
,
'foobar'
));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment