Files
FHC-Core/include/sabredav/tests/Sabre/DAV/ServerPluginTest.php
T
Paolo 0bc0a09bf4 - Removed file system execute permission for all files (no directories)
- application/extensions file system permission now is 775
- application/logs file system permission now is 775
- Added extensions directory in application/: config, controllers, helpers, hooks, libraries, models, views and widgets
- Added view views/extensions/manage.php
- Added controller controllers/system/extensions/Manager.php
- Added library ExtensionsLib to manage extensions
- Added model models/system/Extensions_model.php
- Moved code related to print out info from MigrationLib to EPrintfLib
2017-11-13 10:45:49 +01:00

99 lines
2.2 KiB
PHP

<?php
namespace Sabre\DAV;
use Sabre\HTTP;
require_once 'Sabre/DAV/AbstractServer.php';
require_once 'Sabre/DAV/TestPlugin.php';
class ServerPluginTest extends AbstractServer {
/**
* @var Sabre\DAV\TestPlugin
*/
protected $testPlugin;
function setUp() {
parent::setUp();
$testPlugin = new TestPlugin();
$this->server->addPlugin($testPlugin);
$this->testPlugin = $testPlugin;
}
/**
* @covers \Sabre\DAV\ServerPlugin
*/
function testBaseClass() {
$p = new ServerPluginMock();
$this->assertEquals(array(),$p->getFeatures());
$this->assertEquals(array(),$p->getHTTPMethods(''));
}
function testOptions() {
$serverVars = array(
'REQUEST_URI' => '/',
'REQUEST_METHOD' => 'OPTIONS',
);
$request = new 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' => 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 ServerPluginMock extends ServerPlugin {
function initialize(Server $s) { }
}