expectExceptionGuzzle('BadMethodCallException', 'seek() is not implemented in the FnStream'); (new FnStream([]))->seek(1); } public function testProxiesToFunction() { $s = new FnStream([ 'read' => function ($len) { $this->assertSame(3, $len); return 'foo'; } ]); self::assertSame('foo', $s->read(3)); } public function testCanCloseOnDestruct() { $called = false; $s = new FnStream([ 'close' => function () use (&$called) { $called = true; } ]); unset($s); self::assertTrue($called); } public function testDoesNotRequireClose() { $s = new FnStream([]); unset($s); self::assertTrue(true); // strict mode requires an assertion } public function testDecoratesStream() { $a = Psr7\Utils::streamFor('foo'); $b = FnStream::decorate($a, []); self::assertSame(3, $b->getSize()); self::assertSame($b->isWritable(), true); self::assertSame($b->isReadable(), true); self::assertSame($b->isSeekable(), true); self::assertSame($b->read(3), 'foo'); self::assertSame($b->tell(), 3); self::assertSame($a->tell(), 3); self::assertSame('', $a->read(1)); self::assertSame($b->eof(), true); self::assertSame($a->eof(), true); $b->seek(0); self::assertSame('foo', (string) $b); $b->seek(0); self::assertSame('foo', $b->getContents()); self::assertSame($a->getMetadata(), $b->getMetadata()); $b->seek(0, SEEK_END); $b->write('bar'); self::assertSame('foobar', (string) $b); $this->assertInternalTypeGuzzle('resource', $b->detach()); $b->close(); } public function testDecoratesWithCustomizations() { $called = false; $a = Psr7\Utils::streamFor('foo'); $b = FnStream::decorate($a, [ 'read' => function ($len) use (&$called, $a) { $called = true; return $a->read($len); } ]); self::assertSame('foo', $b->read(3)); self::assertTrue($called); } public function testDoNotAllowUnserialization() { $a = new FnStream([]); $b = serialize($a); $this->expectExceptionGuzzle('\LogicException', 'FnStream should never be unserialized'); unserialize($b); } }