streams/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalCollectionTest.php

61 lines
1.5 KiB
PHP

<?php
namespace Sabre\DAVACL;
use Sabre\DAV;
use Sabre\HTTP;
class PrincipalCollectionTest extends \PHPUnit_Framework_TestCase {
public function testBasic() {
$backend = new PrincipalBackend\Mock();
$pc = new PrincipalCollection($backend);
$this->assertTrue($pc instanceof PrincipalCollection);
$this->assertEquals('principals',$pc->getName());
}
/**
* @depends testBasic
*/
public function testGetChildren() {
$backend = new PrincipalBackend\Mock();
$pc = new PrincipalCollection($backend);
$children = $pc->getChildren();
$this->assertTrue(is_array($children));
foreach($children as $child) {
$this->assertTrue($child instanceof IPrincipal);
}
}
/**
* @depends testBasic
* @expectedException Sabre\DAV\Exception\MethodNotAllowed
*/
public function testGetChildrenDisable() {
$backend = new PrincipalBackend\Mock();
$pc = new PrincipalCollection($backend);
$pc->disableListing = true;
$children = $pc->getChildren();
}
public function testFindByUri() {
$backend = new PrincipalBackend\Mock();
$pc = new PrincipalCollection($backend);
$this->assertEquals('principals/user1', $pc->findByUri('mailto:user1.sabredav@sabredav.org'));
$this->assertNull($pc->findByUri('mailto:fake.user.sabredav@sabredav.org'));
$this->assertNull($pc->findByUri(''));
}
}