forked from friendica/friendica-addons
96 lines
2.3 KiB
PHP
96 lines
2.3 KiB
PHP
|
<?php
|
||
|
|
||
|
require_once 'Sabre/DAV/AbstractServer.php';
|
||
|
require_once 'Sabre/DAV/TestPlugin.php';
|
||
|
|
||
|
class Sabre_DAV_ServerPluginTest extends Sabre_DAV_AbstractServer {
|
||
|
|
||
|
/**
|
||
|
* @var Sabre_DAV_TestPlugin
|
||
|
*/
|
||
|
protected $testPlugin;
|
||
|
|
||
|
function setUp() {
|
||
|
|
||
|
parent::setUp();
|
||
|
|
||
|
$testPlugin = new Sabre_DAV_TestPlugin();
|
||
|
$this->server->addPlugin($testPlugin);
|
||
|
$this->testPlugin = $testPlugin;
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers Sabre_DAV_ServerPlugin
|
||
|
*/
|
||
|
function testBaseClass() {
|
||
|
|
||
|
$p = new Sabre_DAV_ServerPluginMock();
|
||
|
$this->assertEquals(array(),$p->getFeatures());
|
||
|
$this->assertEquals(array(),$p->getHTTPMethods(''));
|
||
|
|
||
|
}
|
||
|
|
||
|
function testOptions() {
|
||
|
|
||
|
$serverVars = array(
|
||
|
'REQUEST_URI' => '/',
|
||
|
'REQUEST_METHOD' => 'OPTIONS',
|
||
|
);
|
||
|
|
||
|
$request = new Sabre_HTTP_Request($serverVars);
|
||
|
$this->server->httpRequest = ($request);
|
||
|
$this->server->exec();
|
||
|
|
||
|
$this->assertEquals(array(
|
||
|
'DAV' => '1, 3, extended-mkcol, drinking',
|
||
|
'MS-Author-Via' => 'DAV',
|
||
|
'Allow' => 'OPTIONS, GET, HEAD, DELETE, PROPFIND, PUT, PROPPATCH, COPY, MOVE, REPORT, BEER, WINE',
|
||
|
'Accept-Ranges' => 'bytes',
|
||
|
'Content-Length' => '0',
|
||
|
'X-Sabre-Version' => Sabre_DAV_Version::VERSION,
|
||
|
),$this->response->headers);
|
||
|
|
||
|
$this->assertEquals('HTTP/1.1 200 OK',$this->response->status);
|
||
|
$this->assertEquals('', $this->response->body);
|
||
|
$this->assertEquals('OPTIONS',$this->testPlugin->beforeMethod);
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
function testGetPlugin() {
|
||
|
|
||
|
$this->assertEquals($this->testPlugin,$this->server->getPlugin(get_class($this->testPlugin)));
|
||
|
|
||
|
}
|
||
|
|
||
|
function testUnknownPlugin() {
|
||
|
|
||
|
$this->assertNull($this->server->getPlugin('SomeRandomClassName'));
|
||
|
|
||
|
}
|
||
|
|
||
|
function testGetSupportedReportSet() {
|
||
|
|
||
|
$this->assertEquals(array(), $this->testPlugin->getSupportedReportSet('/'));
|
||
|
|
||
|
}
|
||
|
|
||
|
function testGetPlugins() {
|
||
|
|
||
|
$this->assertEquals(
|
||
|
array(get_class($this->testPlugin) => $this->testPlugin),
|
||
|
$this->server->getPlugins()
|
||
|
);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
class Sabre_DAV_ServerPluginMock extends Sabre_DAV_ServerPlugin {
|
||
|
|
||
|
function initialize(Sabre_DAV_Server $s) { }
|
||
|
|
||
|
}
|