Blame view
sources/3rdparty/sabre/dav/tests/Sabre/DAVServerTest.php
5.05 KB
|
6d9380f96
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 |
<?php
namespace Sabre;
require_once 'Sabre/HTTP/ResponseMock.php';
require_once 'Sabre/DAV/Auth/Backend/Mock.php';
require_once 'Sabre/DAV/Mock/File.php';
require_once 'Sabre/DAV/Mock/Collection.php';
require_once 'Sabre/DAVACL/PrincipalBackend/Mock.php';
require_once 'Sabre/CalDAV/Backend/Mock.php';
require_once 'Sabre/CardDAV/Backend/Mock.php';
/**
* This class may be used as a basis for other webdav-related unittests.
*
* This class is supposed to provide a reasonably big framework to quickly get
* a testing environment running.
*
* @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
abstract class DAVServerTest extends \PHPUnit_Framework_TestCase {
protected $setupCalDAV = false;
protected $setupCardDAV = false;
protected $setupACL = false;
protected $setupCalDAVSharing = false;
protected $caldavCalendars = array();
protected $caldavCalendarObjects = array();
protected $carddavAddressBooks = array();
protected $carddavCards = array();
/**
* @var Sabre\DAV\Server
*/
protected $server;
protected $tree = array();
protected $caldavBackend;
protected $carddavBackend;
protected $principalBackend;
/**
* @var Sabre\CalDAV\Plugin
*/
protected $caldavPlugin;
/**
* @var Sabre\CardDAV\Plugin
*/
protected $carddavPlugin;
/**
* @var Sabre\DAVACL\Plugin
*/
protected $aclPlugin;
/**
* @var Sabre\CalDAV\SharingPlugin
*/
protected $caldavSharingPlugin;
/**
* @var Sabre\DAV\Auth\Plugin
*/
protected $authPlugin;
/**
* If this string is set, we will automatically log in the user with this
* name.
*/
protected $autoLogin = null;
function setUp() {
$this->setUpBackends();
$this->setUpTree();
$this->server = new DAV\Server($this->tree);
$this->server->debugExceptions = true;
if ($this->setupCalDAV) {
$this->caldavPlugin = new CalDAV\Plugin();
$this->server->addPlugin($this->caldavPlugin);
}
if ($this->setupCalDAVSharing) {
$this->caldavSharingPlugin = new CalDAV\SharingPlugin();
$this->server->addPlugin($this->caldavSharingPlugin);
}
if ($this->setupCardDAV) {
$this->carddavPlugin = new CardDAV\Plugin();
$this->server->addPlugin($this->carddavPlugin);
}
if ($this->setupACL) {
$this->aclPlugin = new DAVACL\Plugin();
$this->server->addPlugin($this->aclPlugin);
}
if ($this->autoLogin) {
$authBackend = new DAV\Auth\Backend\Mock();
$authBackend->defaultUser = $this->autoLogin;
$this->authPlugin = new DAV\Auth\Plugin($authBackend, 'SabreDAV');
$this->server->addPlugin($this->authPlugin);
// This will trigger the actual login procedure
$this->authPlugin->beforeMethod('OPTIONS','/');
}
}
/**
* Makes a request, and returns a response object.
*
* You can either pass an instance of Sabre\HTTP\Request, or an array,
* which will then be used as the _SERVER array.
*
* @param array|\Sabre\HTTP\Request $request
* @return \Sabre\HTTP\Response
*/
function request($request) {
if (is_array($request)) {
$request = new HTTP\Request($request);
}
$this->server->httpRequest = $request;
$this->server->httpResponse = new HTTP\ResponseMock();
$this->server->exec();
return $this->server->httpResponse;
}
function setUpTree() {
if ($this->setupCalDAV) {
$this->tree[] = new CalDAV\CalendarRootNode(
$this->principalBackend,
$this->caldavBackend
);
}
if ($this->setupCardDAV) {
$this->tree[] = new CardDAV\AddressBookRoot(
$this->principalBackend,
$this->carddavBackend
);
}
if ($this->setupCardDAV || $this->setupCalDAV) {
$this->tree[] = new DAVACL\PrincipalCollection(
$this->principalBackend
);
}
}
function setUpBackends() {
if ($this->setupCalDAV && is_null($this->caldavBackend)) {
$this->caldavBackend = new CalDAV\Backend\Mock($this->caldavCalendars, $this->caldavCalendarObjects);
}
if ($this->setupCardDAV && is_null($this->carddavBackend)) {
$this->carddavBackend = new CardDAV\Backend\Mock($this->carddavAddressBooks, $this->carddavCards);
}
if ($this->setupCardDAV || $this->setupCalDAV) {
$this->principalBackend = new DAVACL\PrincipalBackend\Mock();
}
}
function assertHTTPStatus($expectedStatus, HTTP\Request $req) {
$resp = $this->request($req);
$this->assertEquals($resp->getStatusMessage($expectedStatus), $resp->status,'Incorrect HTTP status received: ' . $resp->body);
}
}
|