mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-08 17:38:49 +00:00
Initial Release of the calendar plugin
This commit is contained in:
parent
45cc9885fc
commit
7115197a33
561 changed files with 189494 additions and 0 deletions
134
dav/SabreDAV/tests/Sabre/DAVACL/AllowAccessTest.php
Normal file
134
dav/SabreDAV/tests/Sabre/DAVACL/AllowAccessTest.php
Normal file
|
@ -0,0 +1,134 @@
|
|||
<?php
|
||||
|
||||
class Sabre_DAVACL_AllowAccessTest extends PHPUnit_Framework_TestCase {
|
||||
|
||||
/**
|
||||
* @var Sabre_DAV_Server
|
||||
*/
|
||||
protected $server;
|
||||
|
||||
function setUp() {
|
||||
|
||||
$nodes = array(
|
||||
new Sabre_DAV_SimpleCollection('testdir'),
|
||||
);
|
||||
|
||||
$this->server = new Sabre_DAV_Server($nodes);
|
||||
$aclPlugin = new Sabre_DAVACL_Plugin();
|
||||
$aclPlugin->allowAccessToNodesWithoutACL = true;
|
||||
$this->server->addPlugin($aclPlugin);
|
||||
|
||||
}
|
||||
|
||||
function testGet() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeMethod',array('GET','testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testGetDoesntExist() {
|
||||
|
||||
$r = $this->server->broadcastEvent('beforeMethod',array('GET','foo'));
|
||||
$this->assertTrue($r);
|
||||
|
||||
}
|
||||
|
||||
function testHEAD() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeMethod',array('HEAD','testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testOPTIONS() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeMethod',array('OPTIONS','testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testPUT() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeMethod',array('PUT','testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testACL() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeMethod',array('ACL','testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testPROPPATCH() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeMethod',array('PROPPATCH','testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testCOPY() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeMethod',array('COPY','testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testMOVE() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeMethod',array('MOVE','testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testLOCK() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeMethod',array('LOCK','testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testBeforeBind() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeBind',array('testdir/file')));
|
||||
|
||||
}
|
||||
|
||||
|
||||
function testBeforeUnbind() {
|
||||
|
||||
$this->assertTrue($this->server->broadcastEvent('beforeUnbind',array('testdir')));
|
||||
|
||||
}
|
||||
|
||||
function testAfterGetProperties() {
|
||||
|
||||
$properties = array(
|
||||
'href' => 'foo',
|
||||
'200' => array(
|
||||
'{DAV:}displayname' => 'foo',
|
||||
'{DAV:}getcontentlength' => 500,
|
||||
),
|
||||
'404' => array(
|
||||
'{DAV:}bar' => null,
|
||||
),
|
||||
'403' => array(
|
||||
'{DAV:}owner' => null,
|
||||
),
|
||||
);
|
||||
|
||||
$expected = array(
|
||||
'href' => 'foo',
|
||||
'200' => array(
|
||||
'{DAV:}displayname' => 'foo',
|
||||
'{DAV:}getcontentlength' => 500,
|
||||
),
|
||||
'404' => array(
|
||||
'{DAV:}bar' => null,
|
||||
),
|
||||
'403' => array(
|
||||
'{DAV:}owner' => null,
|
||||
),
|
||||
);
|
||||
|
||||
$r = $this->server->broadcastEvent('afterGetProperties',array('testdir',&$properties));
|
||||
$this->assertTrue($r);
|
||||
|
||||
$this->assertEquals($expected, $properties);
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue