blob: 6565fc45924bad105fc5f8ab8dcb6aebfa822487 (
plain) (
blame)
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
|
<?php
declare(strict_types=1);
namespace Sabre\CardDAV;
use Sabre\DAV;
use Sabre\DAVACL;
use Sabre\HTTP;
abstract class AbstractPluginTest extends \PHPUnit\Framework\TestCase
{
/**
* @var Sabre\CardDAV\Plugin
*/
protected $plugin;
/**
* @var Sabre\DAV\Server
*/
protected $server;
/**
* @var Sabre\CardDAV\Backend\Mock;
*/
protected $backend;
public function setup(): void
{
$this->backend = new Backend\Mock();
$principalBackend = new DAVACL\PrincipalBackend\Mock();
$tree = [
new AddressBookRoot($principalBackend, $this->backend),
new DAVACL\PrincipalCollection($principalBackend),
];
$this->plugin = new Plugin();
$this->plugin->directories = ['directory'];
$this->server = new DAV\Server($tree);
$this->server->sapi = new HTTP\SapiMock();
$this->server->addPlugin($this->plugin);
$this->server->debugExceptions = true;
}
}
|