nextcloud/lib/private/Files/Storage/CommonTest.php

61 lines
1.5 KiB
PHP
Raw Normal View History

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2015-03-26 06:44:34 -04:00
*/
2012-09-07 12:30:48 -04:00
namespace OC\Files\Storage;
class CommonTest extends \OC\Files\Storage\Common {
/**
* underlying local storage used for missing functions
2012-09-07 12:30:48 -04:00
* @var \OC\Files\Storage\Local
*/
private $storage;
2012-08-29 02:38:33 -04:00
2012-09-07 09:22:01 -04:00
public function __construct($params) {
$this->storage = new \OC\Files\Storage\Local($params);
}
2012-08-29 02:38:33 -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) {
return $this->storage->mkdir($path);
}
2012-09-07 09:22:01 -04:00
public function rmdir($path) {
return $this->storage->rmdir($path);
}
2012-09-07 09:22:01 -04:00
public function opendir($path) {
return $this->storage->opendir($path);
}
2012-09-07 09:22:01 -04:00
public function stat($path) {
return $this->storage->stat($path);
}
2012-09-07 09:22:01 -04:00
public function filetype($path) {
return @$this->storage->filetype($path);
}
2012-09-07 09:22:01 -04:00
public function isReadable($path) {
return $this->storage->isReadable($path);
}
2012-09-07 09:22:01 -04:00
public function isUpdatable($path) {
return $this->storage->isUpdatable($path);
}
2012-09-07 09:22:01 -04:00
public function file_exists($path) {
return $this->storage->file_exists($path);
}
2012-09-07 09:22:01 -04:00
public function unlink($path) {
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-09-07 09:22:01 -04:00
public function free_space($path) {
return $this->storage->free_space($path);
}
public function touch($path, $mtime = null) {
2012-11-02 14:53:02 -04:00
return $this->storage->touch($path, $mtime);
}
}