nextcloud/tests/lib/files/storage/wrapper/wrapper.php

35 lines
930 B
PHP
Raw Normal View History

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.
*/
namespace Test\Files\Storage\Wrapper;
2013-05-07 21:42:46 +04:00
class Wrapper extends \Test\Files\Storage\Storage {
2013-05-07 21:42:46 +04:00
/**
* @var string tmpDir
*/
private $tmpDir;
protected function setUp() {
parent::setUp();
2013-05-07 21:42:46 +04:00
$this->tmpDir = \OC_Helper::tmpFolder();
$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
}
protected function tearDown() {
2013-05-07 21:42:46 +04:00
\OC_Helper::rmdirr($this->tmpDir);
parent::tearDown();
2013-05-07 21:42:46 +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
}