StreamWrapperFunctionalTest.php 6.92 KB
Newer Older
1 2 3 4 5
<?php

namespace MongoDB\Tests\GridFS;

use MongoDB\BSON\Binary;
6
use MongoDB\BSON\UTCDateTime;
7
use Symfony\Bridge\PhpUnit\SetUpTearDownTrait;
8 9 10 11 12 13 14 15 16
use function fclose;
use function feof;
use function fread;
use function fseek;
use function fstat;
use function fwrite;
use const SEEK_CUR;
use const SEEK_END;
use const SEEK_SET;
17 18 19 20 21 22

/**
 * Functional tests for the internal StreamWrapper class.
 */
class StreamWrapperFunctionalTest extends FunctionalTestCase
{
23 24 25
    use SetUpTearDownTrait;

    private function doSetUp()
26 27 28 29
    {
        parent::setUp();

        $this->filesCollection->insertMany([
30
            ['_id' => 'length-10', 'length' => 10, 'chunkSize' => 4, 'uploadDate' => new UTCDateTime('1484202200000')],
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
        ]);

        $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));
    }

65 66 67 68
    public function testReadableStreamSeek()
    {
        $stream = $this->bucket->openDownloadStream('length-10');

69
        $this->assertSame(0, fseek($stream, 2, SEEK_SET));
70
        $this->assertSame('cde', fread($stream, 3));
71
        $this->assertSame(0, fseek($stream, 10, SEEK_SET));
72
        $this->assertSame('', fread($stream, 3));
73 74
        $this->assertSame(-1, fseek($stream, -1, SEEK_SET));
        $this->assertSame(-1, fseek($stream, 11, SEEK_SET));
75

76
        $this->assertSame(0, fseek($stream, -5, SEEK_CUR));
77
        $this->assertSame('fgh', fread($stream, 3));
78
        $this->assertSame(0, fseek($stream, 1, SEEK_CUR));
79
        $this->assertSame('j', fread($stream, 3));
80 81
        $this->assertSame(-1, fseek($stream, 1, SEEK_CUR));
        $this->assertSame(-1, fseek($stream, -11, SEEK_CUR));
82

83
        $this->assertSame(0, fseek($stream, 0, SEEK_END));
84
        $this->assertSame('', fread($stream, 3));
85
        $this->assertSame(0, fseek($stream, -8, SEEK_END));
86
        $this->assertSame('cde', fread($stream, 3));
87 88
        $this->assertSame(-1, fseek($stream, -11, SEEK_END));
        $this->assertSame(-1, fseek($stream, 1, SEEK_END));
89 90
    }

91 92 93 94 95 96 97
    public function testReadableStreamStat()
    {
        $stream = $this->bucket->openDownloadStream('length-10');

        $stat = fstat($stream);
        $this->assertSame(0100444, $stat[2]);
        $this->assertSame(0100444, $stat['mode']);
98 99
        $this->assertSame(10, $stat[7]);
        $this->assertSame(10, $stat['size']);
100 101 102 103
        $this->assertSame(1484202200, $stat[9]);
        $this->assertSame(1484202200, $stat['mtime']);
        $this->assertSame(1484202200, $stat[10]);
        $this->assertSame(1484202200, $stat['ctime']);
104 105
        $this->assertSame(4, $stat[11]);
        $this->assertSame(4, $stat['blksize']);
106 107
    }

108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
    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));
    }

143 144 145 146 147 148
    public function testWritableStreamSeek()
    {
        $stream = $this->bucket->openUploadStream('filename');

        $this->assertSame(6, fwrite($stream, 'foobar'));

149 150 151
        $this->assertSame(-1, fseek($stream, 0, SEEK_SET));
        $this->assertSame(-1, fseek($stream, 7, SEEK_SET));
        $this->assertSame(0, fseek($stream, 6, SEEK_SET));
152

153 154 155
        $this->assertSame(0, fseek($stream, 0, SEEK_CUR));
        $this->assertSame(-1, fseek($stream, -1, SEEK_CUR));
        $this->assertSame(-1, fseek($stream, 1, SEEK_CUR));
156

157 158 159
        $this->assertSame(0, fseek($stream, 0, SEEK_END));
        $this->assertSame(-1, fseek($stream, -1, SEEK_END));
        $this->assertSame(-1, fseek($stream, 1, SEEK_END));
160 161
    }

162
    public function testWritableStreamStatBeforeSaving()
163
    {
164
        $stream = $this->bucket->openUploadStream('filename', ['chunkSizeBytes' => 1024]);
165 166 167 168

        $stat = fstat($stream);
        $this->assertSame(0100222, $stat[2]);
        $this->assertSame(0100222, $stat['mode']);
169 170
        $this->assertSame(0, $stat[7]);
        $this->assertSame(0, $stat['size']);
171 172 173 174
        $this->assertSame(0, $stat[9]);
        $this->assertSame(0, $stat['mtime']);
        $this->assertSame(0, $stat[10]);
        $this->assertSame(0, $stat['ctime']);
175 176
        $this->assertSame(1024, $stat[11]);
        $this->assertSame(1024, $stat['blksize']);
177 178 179 180 181 182

        $this->assertSame(6, fwrite($stream, 'foobar'));

        $stat = fstat($stream);
        $this->assertSame(6, $stat[7]);
        $this->assertSame(6, $stat['size']);
183
    }
184 185 186

    public function testWritableStreamStatAfterSaving()
    {
187
        $stream = $this->bucket->openDownloadStream('length-10');
188 189 190 191

        $stat = fstat($stream);
        $this->assertSame(0100444, $stat[2]);
        $this->assertSame(0100444, $stat['mode']);
192 193
        $this->assertSame(10, $stat[7]);
        $this->assertSame(10, $stat['size']);
194 195 196 197
        $this->assertSame(1484202200, $stat[9]);
        $this->assertSame(1484202200, $stat['mtime']);
        $this->assertSame(1484202200, $stat[10]);
        $this->assertSame(1484202200, $stat['ctime']);
198 199
        $this->assertSame(4, $stat[11]);
        $this->assertSame(4, $stat['blksize']);
200 201
    }

202 203 204 205 206 207 208
    public function testWritableStreamWrite()
    {
        $stream = $this->bucket->openUploadStream('filename');

        $this->assertSame(6, fwrite($stream, 'foobar'));
    }
}