2015-01-21 18:29:52 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2015 Vincent Petry <pvince81@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_trashbin\Tests\Storage;
|
|
|
|
|
|
|
|
use OC\Files\Storage\Home;
|
|
|
|
use OC\Files\Storage\Temporary;
|
|
|
|
use OC\Files\Mount\MountPoint;
|
|
|
|
use OC\Files\Filesystem;
|
|
|
|
|
|
|
|
class Storage extends \Test\TestCase {
|
|
|
|
/**
|
|
|
|
* @var \OCA\Files_trashbin\Storage
|
|
|
|
*/
|
|
|
|
private $wrapper;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage
|
|
|
|
**/
|
|
|
|
private $originalStorage;
|
|
|
|
|
2015-01-23 20:08:59 +03:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\View
|
|
|
|
*/
|
|
|
|
private $rootView;
|
|
|
|
|
2015-01-21 18:29:52 +03:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\View
|
|
|
|
*/
|
|
|
|
private $userView;
|
|
|
|
|
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->user = $this->getUniqueId('user');
|
|
|
|
\OC_User::createUser($this->user, $this->user);
|
|
|
|
|
|
|
|
// this will setup the FS
|
|
|
|
$this->loginAsUser($this->user);
|
|
|
|
|
|
|
|
$this->originalStorage = \OC\Files\Filesystem::getStorage('/');
|
|
|
|
|
2015-01-23 20:08:59 +03:00
|
|
|
\OCA\Files_Trashbin\Storage::setupStorage();
|
2015-01-21 18:29:52 +03:00
|
|
|
|
2015-01-23 20:08:59 +03:00
|
|
|
$this->rootView = new \OC\Files\View('/');
|
2015-01-21 18:29:52 +03:00
|
|
|
$this->userView = new \OC\Files\View('/' . $this->user . '/files/');
|
|
|
|
$this->userView->file_put_contents('test.txt', 'foo');
|
2015-01-23 20:08:59 +03:00
|
|
|
|
2015-01-21 18:29:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function tearDown() {
|
2015-01-23 20:08:59 +03:00
|
|
|
\OC\Files\Filesystem::getLoader()->removeStorageWrapper('oc_trashbin');
|
2015-01-21 18:29:52 +03:00
|
|
|
\OC\Files\Filesystem::mount($this->originalStorage, array(), '/');
|
|
|
|
$this->logout();
|
2015-01-23 20:08:59 +03:00
|
|
|
\OC_User::deleteUser($this->user);
|
2015-01-21 18:29:52 +03:00
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSingleStorageDelete() {
|
2015-01-23 20:08:59 +03:00
|
|
|
$this->assertTrue($this->userView->file_exists('test.txt'));
|
2015-01-21 18:29:52 +03:00
|
|
|
$this->userView->unlink('test.txt');
|
2015-01-23 20:08:59 +03:00
|
|
|
list($storage, ) = $this->userView->resolvePath('test.txt');
|
|
|
|
$storage->getScanner()->scan(''); // make sure we check the storage
|
2015-01-21 18:29:52 +03:00
|
|
|
$this->assertFalse($this->userView->getFileInfo('test.txt'));
|
|
|
|
|
|
|
|
// check if file is in trashbin
|
2015-01-23 20:08:59 +03:00
|
|
|
$results = $this->rootView->getDirectoryContent($this->user . '/files_trashbin/files/');
|
2015-01-21 18:29:52 +03:00
|
|
|
$this->assertEquals(1, count($results));
|
|
|
|
$name = $results[0]->getName();
|
|
|
|
$this->assertEquals('test.txt', substr($name, 0, strrpos($name, '.')));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCrossStorageDelete() {
|
|
|
|
$storage2 = new Temporary(array());
|
2015-01-23 20:08:59 +03:00
|
|
|
\OC\Files\Filesystem::mount($storage2, array(), $this->user . '/files/substorage');
|
2015-01-21 18:29:52 +03:00
|
|
|
|
|
|
|
$this->userView->file_put_contents('substorage/subfile.txt', 'foo');
|
|
|
|
$storage2->getScanner()->scan('');
|
|
|
|
$this->assertTrue($storage2->file_exists('subfile.txt'));
|
|
|
|
$this->userView->unlink('substorage/subfile.txt');
|
|
|
|
|
|
|
|
$storage2->getScanner()->scan('');
|
|
|
|
$this->assertFalse($this->userView->getFileInfo('substorage/subfile.txt'));
|
|
|
|
$this->assertFalse($storage2->file_exists('subfile.txt'));
|
|
|
|
|
|
|
|
// check if file is in trashbin
|
2015-01-23 20:08:59 +03:00
|
|
|
$results = $this->rootView->getDirectoryContent($this->user . '/files_trashbin/files');
|
2015-01-21 18:29:52 +03:00
|
|
|
$this->assertEquals(1, count($results));
|
|
|
|
$name = $results[0]->getName();
|
|
|
|
$this->assertEquals('subfile.txt', substr($name, 0, strrpos($name, '.')));
|
|
|
|
}
|
|
|
|
}
|