2012-02-27 06:04:04 -05:00
|
|
|
<?php
|
2015-02-26 05:37:37 -05:00
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2020-04-29 05:57:22 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Felix Moeller <mail@felixmoeller.de>
|
|
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
|
*
|
|
|
|
|
* @license AGPL-3.0
|
|
|
|
|
*
|
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program 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, version 3,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2012-02-27 06:04:04 -05:00
|
|
|
/**
|
2015-02-26 05:37:37 -05:00
|
|
|
* test implementation for \OC\Files\Storage\Common with \OC\Files\Storage\Local
|
2012-02-27 06:04:04 -05:00
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2012-09-07 12:30:48 -04:00
|
|
|
namespace OC\Files\Storage;
|
|
|
|
|
|
2020-04-10 08:19:56 -04:00
|
|
|
class CommonTest extends \OC\Files\Storage\Common {
|
2012-02-27 06:04:04 -05:00
|
|
|
/**
|
|
|
|
|
* underlying local storage used for missing functions
|
2012-09-07 12:30:48 -04:00
|
|
|
* @var \OC\Files\Storage\Local
|
2012-02-27 06:04:04 -05:00
|
|
|
*/
|
|
|
|
|
private $storage;
|
2012-08-29 02:38:33 -04:00
|
|
|
|
2012-09-07 09:22:01 -04:00
|
|
|
public function __construct($params) {
|
2020-10-05 09:12:57 -04:00
|
|
|
$this->storage = new \OC\Files\Storage\Local($params);
|
2012-02-27 06:04:04 -05:00
|
|
|
}
|
2012-08-29 02:38:33 -04:00
|
|
|
|
2020-04-09 07:53:40 -04:00
|
|
|
public function getId() {
|
2012-09-12 16:50:10 -04:00
|
|
|
return 'test::'.$this->storage->getId();
|
|
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function mkdir($path) {
|
2012-02-27 06:04:04 -05:00
|
|
|
return $this->storage->mkdir($path);
|
|
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function rmdir($path) {
|
2012-02-27 06:04:04 -05:00
|
|
|
return $this->storage->rmdir($path);
|
|
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function opendir($path) {
|
2012-02-27 06:04:04 -05:00
|
|
|
return $this->storage->opendir($path);
|
|
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function stat($path) {
|
2012-02-27 06:04:04 -05:00
|
|
|
return $this->storage->stat($path);
|
|
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function filetype($path) {
|
2013-11-20 09:25:29 -05:00
|
|
|
return @$this->storage->filetype($path);
|
2012-02-27 06:04:04 -05:00
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function isReadable($path) {
|
2012-08-15 11:55:54 -04:00
|
|
|
return $this->storage->isReadable($path);
|
2012-02-27 06:04:04 -05:00
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function isUpdatable($path) {
|
2012-08-15 11:55:54 -04:00
|
|
|
return $this->storage->isUpdatable($path);
|
2012-02-27 06:04:04 -05:00
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function file_exists($path) {
|
2012-02-27 06:04:04 -05:00
|
|
|
return $this->storage->file_exists($path);
|
|
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function unlink($path) {
|
2012-02-27 06:04:04 -05:00
|
|
|
return $this->storage->unlink($path);
|
|
|
|
|
}
|
2012-11-02 14:53:02 -04:00
|
|
|
public function fopen($path, $mode) {
|
|
|
|
|
return $this->storage->fopen($path, $mode);
|
2012-02-27 06:04:04 -05:00
|
|
|
}
|
2012-09-07 09:22:01 -04:00
|
|
|
public function free_space($path) {
|
2012-02-27 06:04:04 -05:00
|
|
|
return $this->storage->free_space($path);
|
|
|
|
|
}
|
2020-10-05 09:12:57 -04:00
|
|
|
public function touch($path, $mtime = null) {
|
2012-11-02 14:53:02 -04:00
|
|
|
return $this->storage->touch($path, $mtime);
|
2012-02-29 17:42:40 -05:00
|
|
|
}
|
2013-08-18 05:02:08 -04:00
|
|
|
}
|