2012-03-23 17:54:38 +00: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-09-22 12:51:15 +00:00
|
|
|
namespace Test\Files\Storage;
|
|
|
|
|
2012-04-13 14:01:20 +00:00
|
|
|
$config=include('apps/files_external/tests/config.php');
|
2012-09-07 13:22:01 +00:00
|
|
|
if(!is_array($config) or !isset($config['webdav']) or !$config['webdav']['run']) {
|
2012-09-22 12:51:15 +00:00
|
|
|
abstract class DAV extends Storage{}
|
2012-04-13 14:01:20 +00:00
|
|
|
return;
|
|
|
|
}else{
|
2012-09-22 12:51:15 +00:00
|
|
|
class DAV extends Storage {
|
2012-04-13 14:01:20 +00:00
|
|
|
private $config;
|
2012-03-23 17:54:38 +00:00
|
|
|
|
2012-09-07 13:22:01 +00:00
|
|
|
public function setUp() {
|
2012-04-13 14:01:20 +00: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
|
2012-09-07 16:30:48 +00:00
|
|
|
$this->instance=new \OC\Files\Storage\DAV($this->config['webdav']);
|
2012-04-13 14:01:20 +00:00
|
|
|
}
|
2012-03-23 17:54:38 +00:00
|
|
|
|
2012-09-07 13:22:01 +00:00
|
|
|
public function tearDown() {
|
2012-04-13 14:01:20 +00:00
|
|
|
$this->instance->rmdir('/');
|
|
|
|
}
|
2012-03-23 17:54:38 +00:00
|
|
|
}
|
|
|
|
}
|