getGridFS(); $gridfs->storeBytes('foo', ['filename' => 'foo.txt']); $gridfs->storeBytes('bar', ['filename' => 'bar.txt']); $cursor = $gridfs->find(['filename' => 'foo.txt']); $this->assertIsString(serialize($cursor)); } public function testCursorItems() { $gridfs = $this->getGridFS(); $id = $gridfs->storeBytes('foo', ['filename' => 'foo.txt']); $gridfs->storeBytes('bar', ['filename' => 'bar.txt']); $cursor = $gridfs->find(['filename' => 'foo.txt']); $this->assertCount(1, $cursor); foreach ($cursor as $key => $value) { $this->assertSame((string) $id, $key); $this->assertInstanceOf('MongoGridFSFile', $value); $this->assertSame('foo', $value->getBytes()); $this->assertArraySubset([ 'filename' => 'foo.txt', 'chunkSize' => 261120, 'length' => 3, 'md5' => 'acbd18db4cc2f85cedef654fccc4a4d8' ], $value->file); } } public function testInterfaces() { $this->skipTestIf(extension_loaded('mongo')); $gridfs = $this->getGridFS(); $id = $gridfs->storeBytes('foo', ['filename' => 'foo.txt']); $gridfs->storeBytes('bar', ['filename' => 'bar.txt']); $cursor = $gridfs->find(['filename' => 'foo.txt']); $this->assertInstanceOf(Countable::class, $cursor); } }