1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 65 66 67 68
|
<?php
declare(strict_types=1);
namespace GuzzleHttp\Tests\Psr7;
use GuzzleHttp\Psr7\LazyOpenStream;
use PHPUnit\Framework\TestCase;
class LazyOpenStreamTest extends TestCase
{
private $fname;
protected function setUp(): void
{
$this->fname = tempnam(sys_get_temp_dir(), 'tfile');
if (file_exists($this->fname)) {
unlink($this->fname);
}
}
protected function tearDown(): void
{
if (file_exists($this->fname)) {
unlink($this->fname);
}
}
public function testOpensLazily(): void
{
$l = new LazyOpenStream($this->fname, 'w+');
$l->write('foo');
self::assertIsArray($l->getMetadata());
self::assertFileExists($this->fname);
self::assertSame('foo', file_get_contents($this->fname));
self::assertSame('foo', (string) $l);
}
public function testProxiesToFile(): void
{
file_put_contents($this->fname, 'foo');
$l = new LazyOpenStream($this->fname, 'r');
self::assertSame('foo', $l->read(4));
self::assertTrue($l->eof());
self::assertSame(3, $l->tell());
self::assertTrue($l->isReadable());
self::assertTrue($l->isSeekable());
self::assertFalse($l->isWritable());
$l->seek(1);
self::assertSame('oo', $l->getContents());
self::assertSame('foo', (string) $l);
self::assertSame(3, $l->getSize());
self::assertIsArray($l->getMetadata());
$l->close();
}
public function testDetachesUnderlyingStream(): void
{
file_put_contents($this->fname, 'foo');
$l = new LazyOpenStream($this->fname, 'r');
$r = $l->detach();
self::assertIsResource($r);
fseek($r, 0);
self::assertSame('foo', stream_get_contents($r));
fclose($r);
}
}
|