server/apps/files_external/tests/webdav.php

31 lines
823 B
PHP
Raw Normal View History

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.
*/
namespace Test\Files\Storage;
$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']) {
abstract class DAV extends Storage{}
return;
}else{
class DAV extends Storage {
private $config;
2012-03-23 17:54:38 +00:00
2012-09-07 13:22:01 +00:00
public function setUp() {
$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-03-23 17:54:38 +00:00
2012-09-07 13:22:01 +00:00
public function tearDown() {
$this->instance->rmdir('/');
}
2012-03-23 17:54:38 +00:00
}
}