2012-05-24 20:22:33 +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-10-08 16:31:13 +04:00
|
|
|
namespace Test\Files\Storage;
|
|
|
|
|
2012-05-24 20:22:33 +04:00
|
|
|
$config=include('apps/files_external/tests/config.php');
|
|
|
|
|
2012-09-22 16:51:15 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!is_array($config) or !isset($config['smb']) or !$config['smb']['run']) {
|
2012-09-22 16:51:15 +04:00
|
|
|
abstract class SMB extends Storage{}
|
2012-05-24 20:22:33 +04:00
|
|
|
return;
|
|
|
|
}else{
|
2012-09-22 16:51:15 +04:00
|
|
|
class SMB extends Storage {
|
2012-05-24 20:22:33 +04:00
|
|
|
private $config;
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function setUp() {
|
2012-05-24 20:22:33 +04:00
|
|
|
$id=uniqid();
|
|
|
|
$this->config=include('apps/files_external/tests/config.php');
|
2012-06-08 03:29:46 +04:00
|
|
|
$this->config['smb']['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\SMB($this->config['smb']);
|
2012-05-24 20:22:33 +04:00
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function tearDown() {
|
2012-09-22 16:51:15 +04:00
|
|
|
\OCP\Files::rmdirr($this->instance->constructUrl(''));
|
2012-05-24 20:22:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|