| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace League\Flysystem\Adapter;
- use League\Flysystem\Stub\StreamedCopyStub;
- use PHPUnit\Framework\TestCase;
- class StreamedCopyPolyfilTests extends TestCase
- {
- public function testReadFail()
- {
- $copy = new StreamedCopyStub(false, null);
- $this->assertFalse($copy->copy('from', 'to'));
- }
- public function testWriteFail()
- {
- $stream = tmpfile();
- $readResponse = compact('stream');
- $copy = new StreamedCopyStub($readResponse, false);
- $this->assertFalse($copy->copy('from', 'to'));
- fclose($stream);
- }
- public function testSuccess()
- {
- $stream = tmpfile();
- $readResponse = compact('stream');
- $copy = new StreamedCopyStub($readResponse, $readResponse);
- $this->assertTrue($copy->copy('from', 'to'));
- if (is_resource($stream)) {
- fclose($stream);
- }
- }
- }
|