2013-05-07 21:42:46 +04:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
2013-07-02 19:58:21 +04:00
|
|
|
namespace Test\Files\Storage\Wrapper;
|
2013-05-07 21:42:46 +04:00
|
|
|
|
2016-05-20 16:38:20 +03:00
|
|
|
class WrapperTest extends \Test\Files\Storage\Storage {
|
2013-05-07 21:42:46 +04:00
|
|
|
/**
|
|
|
|
* @var string tmpDir
|
|
|
|
*/
|
|
|
|
private $tmpDir;
|
|
|
|
|
2014-11-07 17:23:15 +03:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2015-12-18 13:19:53 +03:00
|
|
|
$this->tmpDir = \OC::$server->getTempManager()->getTemporaryFolder();
|
2013-05-07 21:42:46 +04:00
|
|
|
$storage = new \OC\Files\Storage\Local(array('datadir' => $this->tmpDir));
|
2013-06-28 20:18:12 +04:00
|
|
|
$this->instance = new \OC\Files\Storage\Wrapper\Wrapper(array('storage' => $storage));
|
2013-05-07 21:42:46 +04:00
|
|
|
}
|
|
|
|
|
2014-11-07 17:23:15 +03:00
|
|
|
protected function tearDown() {
|
2013-05-07 21:42:46 +04:00
|
|
|
\OC_Helper::rmdirr($this->tmpDir);
|
2014-11-07 17:23:15 +03:00
|
|
|
parent::tearDown();
|
2013-05-07 21:42:46 +04:00
|
|
|
}
|
2014-05-29 15:45:50 +04:00
|
|
|
|
|
|
|
public function testInstanceOfStorageWrapper() {
|
|
|
|
$this->assertTrue($this->instance->instanceOfStorage('\OC\Files\Storage\Local'));
|
|
|
|
$this->assertTrue($this->instance->instanceOfStorage('\OC\Files\Storage\Wrapper\Wrapper'));
|
|
|
|
}
|
2013-05-07 21:42:46 +04:00
|
|
|
}
|