blob: 9ab16df743b1c262919fb0b718612b4f142c0d3e (
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
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
|
<?php
declare(strict_types=1);
namespace Sabre\DAVACL;
use Sabre\DAV;
use Sabre\HTTP;
require_once 'Sabre/DAVACL/MockACLNode.php';
require_once 'Sabre/HTTP/ResponseMock.php';
class PluginAdminTest extends \PHPUnit\Framework\TestCase
{
public $server;
public function setUp()
{
$principalBackend = new PrincipalBackend\Mock();
$tree = [
new MockACLNode('adminonly', []),
new PrincipalCollection($principalBackend),
];
$this->server = new DAV\Server($tree);
$this->server->sapi = new HTTP\SapiMock();
$plugin = new DAV\Auth\Plugin(new DAV\Auth\Backend\Mock());
$this->server->addPlugin($plugin);
}
public function testNoAdminAccess()
{
$plugin = new Plugin();
$this->server->addPlugin($plugin);
$request = HTTP\Sapi::createFromServerArray([
'REQUEST_METHOD' => 'OPTIONS',
'HTTP_DEPTH' => 1,
'REQUEST_URI' => '/adminonly',
]);
$response = new HTTP\ResponseMock();
$this->server->httpRequest = $request;
$this->server->httpResponse = $response;
$this->server->exec();
$this->assertEquals(403, $response->status);
}
/**
* @depends testNoAdminAccess
*/
public function testAdminAccess()
{
$plugin = new Plugin();
$plugin->adminPrincipals = [
'principals/admin',
];
$this->server->addPlugin($plugin);
$request = HTTP\Sapi::createFromServerArray([
'REQUEST_METHOD' => 'OPTIONS',
'HTTP_DEPTH' => 1,
'REQUEST_URI' => '/adminonly',
]);
$response = new HTTP\ResponseMock();
$this->server->httpRequest = $request;
$this->server->httpResponse = $response;
$this->server->exec();
$this->assertEquals(200, $response->status);
}
}
|