| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- use League\Flysystem\Plugin\ForcedRename;
- use PHPUnit\Framework\TestCase;
- class ForcedRenamePluginTests extends TestCase
- {
- protected $filesystem;
- protected $plugin;
- public function setUp(): void
- {
- $this->filesystem = $this->prophesize('League\Flysystem\FilesystemInterface');
- $this->plugin = new ForcedRename();
- $this->plugin->setFilesystem($this->filesystem->reveal());
- }
- public function testPluginSuccess()
- {
- $this->assertSame('forceRename', $this->plugin->getMethod());
- $this->filesystem->delete('newpath')->willReturn(true)->shouldBeCalled();
- $this->filesystem->rename('path', 'newpath')->willReturn(true)->shouldBeCalled();
- $this->assertTrue($this->plugin->handle('path', 'newpath'));
- }
- public function testPluginDeleteNotExists()
- {
- $this->filesystem->delete('newpath')
- ->willThrow('League\Flysystem\FileNotFoundException', 'newpath')
- ->shouldBeCalled();
- $this->filesystem->rename('path', 'newpath')->willReturn(true)->shouldBeCalled();
- $this->assertTrue($this->plugin->handle('path', 'newpath'));
- }
- public function testPluginDeleteFail()
- {
- $this->filesystem->delete('newpath')->willReturn(false)->shouldBeCalled();
- $this->assertFalse($this->plugin->handle('path', 'newpath'));
- }
- }
|