123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?php
- /**
- * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
- namespace Test\Files\Node;
- use OC\Files\Node\Root;
- use OC\Files\Storage\Temporary;
- use OC\Files\View;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\Files\Mount\IMountManager;
- use OCP\IUserManager;
- use Psr\Log\LoggerInterface;
- use Test\Traits\UserTrait;
- /**
- * Class IntegrationTest
- *
- * @group DB
- *
- * @package Test\Files\Node
- */
- class IntegrationTest extends \Test\TestCase {
- use UserTrait;
- /**
- * @var \OC\Files\Node\Root $root
- */
- private $root;
- /**
- * @var \OC\Files\Storage\Storage[]
- */
- private $storages;
- /**
- * @var \OC\Files\View $view
- */
- private $view;
- protected function setUp(): void {
- parent::setUp();
- /** @var IMountManager $manager */
- $manager = \OC::$server->get(IMountManager::class);
- \OC_Hook::clear('OC_Filesystem');
- $user = $this->createUser($this->getUniqueID('user'), '');
- $this->loginAsUser($user->getUID());
- $this->view = new View();
- $this->root = new Root(
- $manager,
- $this->view,
- $user,
- \OC::$server->getUserMountCache(),
- $this->createMock(LoggerInterface::class),
- $this->createMock(IUserManager::class),
- $this->createMock(IEventDispatcher::class)
- );
- $storage = new Temporary([]);
- $subStorage = new Temporary([]);
- $this->storages[] = $storage;
- $this->storages[] = $subStorage;
- $this->root->mount($storage, '/');
- $this->root->mount($subStorage, '/substorage/');
- $manager->removeMount('/' . $user->getUID());
- }
- protected function tearDown(): void {
- foreach ($this->storages as $storage) {
- $storage->getCache()->clear();
- }
- $this->logout();
- parent::tearDown();
- }
- public function testBasicFile() {
- $file = $this->root->newFile('/foo.txt');
- $this->assertCount(2, $this->root->getDirectoryListing());
- $this->assertTrue($this->root->nodeExists('/foo.txt'));
- $id = $file->getId();
- $this->assertInstanceOf('\OC\Files\Node\File', $file);
- $file->putContent('qwerty');
- $this->assertEquals('text/plain', $file->getMimeType());
- $this->assertEquals('qwerty', $file->getContent());
- $this->assertFalse($this->root->nodeExists('/bar.txt'));
- $target = $file->move('/bar.txt');
- $this->assertEquals($id, $target->getId());
- $this->assertEquals($id, $file->getId());
- $this->assertFalse($this->root->nodeExists('/foo.txt'));
- $this->assertTrue($this->root->nodeExists('/bar.txt'));
- $this->assertEquals('bar.txt', $file->getName());
- $this->assertEquals('bar.txt', $file->getInternalPath());
- $file->move('/substorage/bar.txt');
- $this->assertEquals($id, $file->getId());
- $this->assertEquals('qwerty', $file->getContent());
- }
- public function testBasicFolder() {
- $folder = $this->root->newFolder('/foo');
- $this->assertTrue($this->root->nodeExists('/foo'));
- $file = $folder->newFile('/bar');
- $this->assertTrue($this->root->nodeExists('/foo/bar'));
- $file->putContent('qwerty');
- $listing = $folder->getDirectoryListing();
- $this->assertEquals(1, count($listing));
- $this->assertEquals($file->getId(), $listing[0]->getId());
- $this->assertEquals($file->getStorage(), $listing[0]->getStorage());
- $rootListing = $this->root->getDirectoryListing();
- $this->assertEquals(2, count($rootListing));
- $folder->move('/asd');
- /**
- * @var \OC\Files\Node\File $file
- */
- $file = $folder->get('/bar');
- $this->assertInstanceOf('\OC\Files\Node\File', $file);
- $this->assertFalse($this->root->nodeExists('/foo/bar'));
- $this->assertTrue($this->root->nodeExists('/asd/bar'));
- $this->assertEquals('qwerty', $file->getContent());
- $folder->move('/substorage/foo');
- /**
- * @var \OC\Files\Node\File $file
- */
- $file = $folder->get('/bar');
- $this->assertInstanceOf('\OC\Files\Node\File', $file);
- $this->assertTrue($this->root->nodeExists('/substorage/foo/bar'));
- $this->assertEquals('qwerty', $file->getContent());
- }
- }
|