nextcloud/apps/files_external/tests/webdav.php

31 lines
823 B
PHP
Raw Normal View History

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