2012-03-23 21:54:38 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2012-04-13 18:01:20 +04:00
|
|
|
$config=include('apps/files_external/tests/config.php');
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!is_array($config) or !isset($config['webdav']) or !$config['webdav']['run']) {
|
2012-04-13 18:01:20 +04:00
|
|
|
abstract class Test_Filestorage_DAV extends Test_FileStorage{}
|
|
|
|
return;
|
|
|
|
}else{
|
|
|
|
class Test_Filestorage_DAV extends Test_FileStorage {
|
|
|
|
private $config;
|
2012-03-23 21:54:38 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function setUp() {
|
2012-04-13 18:01:20 +04:00
|
|
|
$id=uniqid();
|
|
|
|
$this->config=include('apps/files_external/tests/config.php');
|
|
|
|
$this->config['webdav']['root'].='/'.$id;//make sure we have an new empty folder to work in
|
|
|
|
$this->instance=new OC_Filestorage_DAV($this->config['webdav']);
|
|
|
|
}
|
2012-03-23 21:54:38 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function tearDown() {
|
2012-04-13 18:01:20 +04:00
|
|
|
$this->instance->rmdir('/');
|
|
|
|
}
|
2012-03-23 21:54:38 +04:00
|
|
|
}
|
|
|
|
}
|