mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-29 07:51:47 +00:00
Initial Release of the calendar plugin
This commit is contained in:
parent
45cc9885fc
commit
7115197a33
561 changed files with 189494 additions and 0 deletions
60
dav/SabreDAV/tests/Sabre/DAV/AbstractServer.php
Normal file
60
dav/SabreDAV/tests/Sabre/DAV/AbstractServer.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
|
||||
require_once 'Sabre/HTTP/ResponseMock.php';
|
||||
|
||||
abstract class Sabre_DAV_AbstractServer extends PHPUnit_Framework_TestCase {
|
||||
|
||||
/**
|
||||
* @var Sabre_HTTP_ResponseMock
|
||||
*/
|
||||
protected $response;
|
||||
protected $request;
|
||||
/**
|
||||
* @var Sabre_DAV_Server
|
||||
*/
|
||||
protected $server;
|
||||
protected $tempDir = SABRE_TEMPDIR;
|
||||
|
||||
function setUp() {
|
||||
|
||||
$this->response = new Sabre_HTTP_ResponseMock();
|
||||
$this->server = new Sabre_DAV_Server($this->getRootNode());
|
||||
$this->server->httpResponse = $this->response;
|
||||
$this->server->debugExceptions = true;
|
||||
file_put_contents(SABRE_TEMPDIR . '/test.txt', 'Test contents');
|
||||
mkdir(SABRE_TEMPDIR . '/dir');
|
||||
file_put_contents(SABRE_TEMPDIR . '/dir/child.txt', 'Child contents');
|
||||
|
||||
|
||||
}
|
||||
|
||||
function tearDown() {
|
||||
|
||||
$this->deleteTree(SABRE_TEMPDIR,false);
|
||||
|
||||
}
|
||||
|
||||
protected function getRootNode() {
|
||||
|
||||
return new Sabre_DAV_FS_Directory(SABRE_TEMPDIR);
|
||||
|
||||
}
|
||||
|
||||
private function deleteTree($path,$deleteRoot = true) {
|
||||
|
||||
foreach(scandir($path) as $node) {
|
||||
|
||||
if ($node=='.' || $node=='.svn' || $node=='..') continue;
|
||||
$myPath = $path.'/'. $node;
|
||||
if (is_file($myPath)) {
|
||||
unlink($myPath);
|
||||
} else {
|
||||
$this->deleteTree($myPath);
|
||||
}
|
||||
|
||||
}
|
||||
if ($deleteRoot) rmdir($path);
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue