moved deprecated communityhome, dav and yourls to the deprecated-addons repository

This commit is contained in:
Tobias Diekershoff 2018-06-02 11:23:11 +02:00
commit 31520f804d
675 changed files with 195144 additions and 0 deletions

View file

@ -0,0 +1,73 @@
<?php
require_once 'Sabre/DAV/AbstractServer.php';
class Sabre_DAV_ServerEventsTest extends Sabre_DAV_AbstractServer {
private $tempPath;
private $exception;
function testAfterBind() {
$this->server->subscribeEvent('afterBind',array($this,'afterBindHandler'));
$newPath = 'afterBind';
$this->tempPath = '';
$this->server->createFile($newPath,'body');
$this->assertEquals($newPath, $this->tempPath);
}
function afterBindHandler($path) {
$this->tempPath = $path;
}
function testBeforeBindCancel() {
$this->server->subscribeEvent('beforeBind', array($this,'beforeBindCancelHandler'));
$this->assertFalse($this->server->createFile('bla','body'));
// Also testing put()
$req = new Sabre_HTTP_Request(array(
'REQUEST_METHOD' => 'PUT',
'REQUEST_URI' => '/foobar',
));
$this->server->httpRequest = $req;
$this->server->exec();
$this->assertEquals('',$this->server->httpResponse->status);
}
function beforeBindCancelHandler() {
return false;
}
function testException() {
$this->server->subscribeEvent('exception', array($this, 'exceptionHandler'));
$req = new Sabre_HTTP_Request(array(
'REQUEST_METHOD' => 'GET',
'REQUEST_URI' => '/not/exisitng',
));
$this->server->httpRequest = $req;
$this->server->exec();
$this->assertInstanceOf('Sabre_DAV_Exception_NotFound', $this->exception);
}
function exceptionHandler(Exception $exception) {
$this->exception = $exception;
}
}