2012-06-05 21:58:30 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2012 Robin Appelman icewind@owncloud.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-09-17 19:46:33 +04:00
|
|
|
namespace Test\Cache;
|
|
|
|
|
|
|
|
class FileCache extends \Test_Cache {
|
2014-11-12 17:54:41 +03:00
|
|
|
/** @var string */
|
2012-07-24 00:32:07 +04:00
|
|
|
private $user;
|
2014-11-12 17:54:41 +03:00
|
|
|
/** @var string */
|
2013-04-27 00:14:38 +04:00
|
|
|
private $datadir;
|
2014-11-12 17:54:41 +03:00
|
|
|
/** @var \OC\Files\Storage\Storage */
|
|
|
|
private $storage;
|
2013-04-27 00:14:38 +04:00
|
|
|
|
2012-06-30 03:14:01 +04:00
|
|
|
function skip() {
|
2012-07-24 00:07:42 +04:00
|
|
|
//$this->skipUnless(OC_User::isLoggedIn());
|
2012-06-30 03:14:01 +04:00
|
|
|
}
|
2014-11-11 00:59:50 +03:00
|
|
|
|
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2012-06-30 03:14:01 +04:00
|
|
|
//clear all proxies and hooks so we can do clean testing
|
2013-09-17 19:46:33 +04:00
|
|
|
\OC_FileProxy::clearProxies();
|
|
|
|
\OC_Hook::clear('OC_Filesystem');
|
2013-05-15 12:20:52 +04:00
|
|
|
|
|
|
|
//disabled atm
|
2012-07-20 19:57:18 +04:00
|
|
|
//enable only the encryption hook if needed
|
2013-05-15 12:20:52 +04:00
|
|
|
//if(OC_App::isEnabled('files_encryption')) {
|
|
|
|
// OC_FileProxy::register(new OC_FileProxy_Encryption());
|
|
|
|
//}
|
|
|
|
|
2012-06-30 03:14:01 +04:00
|
|
|
//set up temporary storage
|
2014-11-12 17:54:41 +03:00
|
|
|
$this->storage = \OC\Files\Filesystem::getStorage('/');
|
2012-10-10 15:18:36 +04:00
|
|
|
\OC\Files\Filesystem::clearMounts();
|
2013-04-27 00:14:38 +04:00
|
|
|
$storage = new \OC\Files\Storage\Temporary(array());
|
|
|
|
\OC\Files\Filesystem::mount($storage,array(),'/');
|
|
|
|
$datadir = str_replace('local::', '', $storage->getId());
|
2014-09-22 21:38:46 +04:00
|
|
|
$this->datadir = \OC_Config::getValue('cachedirectory', \OC::$SERVERROOT.'/data/cache');
|
|
|
|
\OC_Config::setValue('cachedirectory', $datadir);
|
2012-06-30 03:14:01 +04:00
|
|
|
|
2013-09-17 19:46:33 +04:00
|
|
|
\OC_User::clearBackends();
|
|
|
|
\OC_User::useBackend(new \OC_User_Dummy());
|
2012-07-24 00:32:07 +04:00
|
|
|
|
2012-07-24 00:07:42 +04:00
|
|
|
//login
|
2013-09-17 19:46:33 +04:00
|
|
|
\OC_User::createUser('test', 'test');
|
2012-07-24 00:32:07 +04:00
|
|
|
|
2013-09-17 19:46:33 +04:00
|
|
|
$this->user = \OC_User::getUser();
|
|
|
|
\OC_User::setUserId('test');
|
2012-07-24 00:07:42 +04:00
|
|
|
|
2012-06-30 03:14:01 +04:00
|
|
|
//set up the users dir
|
2013-09-17 19:46:33 +04:00
|
|
|
$rootView = new \OC\Files\View('');
|
2012-07-24 00:32:07 +04:00
|
|
|
$rootView->mkdir('/test');
|
2012-06-30 03:14:01 +04:00
|
|
|
|
2013-09-17 19:46:33 +04:00
|
|
|
$this->instance=new \OC\Cache\File();
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
2012-07-24 00:32:07 +04:00
|
|
|
|
2014-11-11 00:59:50 +03:00
|
|
|
protected function tearDown() {
|
2013-09-17 19:46:33 +04:00
|
|
|
\OC_User::setUserId($this->user);
|
2014-09-22 21:38:46 +04:00
|
|
|
\OC_Config::setValue('cachedirectory', $this->datadir);
|
2014-11-12 17:54:41 +03:00
|
|
|
|
|
|
|
// Restore the original mount point
|
|
|
|
\OC\Files\Filesystem::clearMounts();
|
|
|
|
\OC\Files\Filesystem::mount($this->storage, array(), '/');
|
|
|
|
|
|
|
|
parent::tearDown();
|
2012-07-24 00:32:07 +04:00
|
|
|
}
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|