161 lines
4.2 KiB
PHP
161 lines
4.2 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
||
|
*
|
||
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
||
|
* @license AGPL-3.0
|
||
|
*
|
||
|
* This code is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Affero General Public License, version 3,
|
||
|
* as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
namespace OCA\DAV\Tests\Unit\Comments;
|
||
|
|
||
|
use OCA\DAV\Comments\EntityTypeCollection as EntityTypeCollectionImplementation;
|
||
|
|
||
|
class RootCollection extends \Test\TestCase {
|
||
|
|
||
|
protected $commentsManager;
|
||
|
protected $userManager;
|
||
|
protected $logger;
|
||
|
protected $collection;
|
||
|
protected $userSession;
|
||
|
protected $rootFolder;
|
||
|
protected $user;
|
||
|
|
||
|
public function setUp() {
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->user = $this->getMock('\OCP\IUser');
|
||
|
|
||
|
$this->commentsManager = $this->getMock('\OCP\Comments\ICommentsManager');
|
||
|
$this->userManager = $this->getMock('\OCP\IUserManager');
|
||
|
$this->userSession = $this->getMock('\OCP\IUserSession');
|
||
|
$this->rootFolder = $this->getMock('\OCP\Files\IRootFolder');
|
||
|
$this->logger = $this->getMock('\OCP\ILogger');
|
||
|
|
||
|
$this->collection = new \OCA\DAV\Comments\RootCollection(
|
||
|
$this->commentsManager,
|
||
|
$this->userManager,
|
||
|
$this->userSession,
|
||
|
$this->rootFolder,
|
||
|
$this->logger
|
||
|
);
|
||
|
}
|
||
|
|
||
|
protected function prepareForInitCollections() {
|
||
|
$this->user->expects($this->any())
|
||
|
->method('getUID')
|
||
|
->will($this->returnValue('alice'));
|
||
|
|
||
|
$this->userSession->expects($this->once())
|
||
|
->method('getUser')
|
||
|
->will($this->returnValue($this->user));
|
||
|
|
||
|
$this->rootFolder->expects($this->once())
|
||
|
->method('getUserFolder')
|
||
|
->with('alice')
|
||
|
->will($this->returnValue($this->getMock('\OCP\Files\Folder')));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException \Sabre\DAV\Exception\Forbidden
|
||
|
*/
|
||
|
public function testCreateFile() {
|
||
|
$this->collection->createFile('foo');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException \Sabre\DAV\Exception\Forbidden
|
||
|
*/
|
||
|
public function testCreateDirectory() {
|
||
|
$this->collection->createDirectory('foo');
|
||
|
}
|
||
|
|
||
|
public function testGetChild() {
|
||
|
$this->prepareForInitCollections();
|
||
|
$etc = $this->collection->getChild('files');
|
||
|
$this->assertTrue($etc instanceof EntityTypeCollectionImplementation);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException \Sabre\DAV\Exception\NotFound
|
||
|
*/
|
||
|
public function testGetChildInvalid() {
|
||
|
$this->prepareForInitCollections();
|
||
|
$this->collection->getChild('robots');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException \Sabre\DAV\Exception\NotAuthenticated
|
||
|
*/
|
||
|
public function testGetChildNoAuth() {
|
||
|
$this->collection->getChild('files');
|
||
|
}
|
||
|
|
||
|
public function testGetChildren() {
|
||
|
$this->prepareForInitCollections();
|
||
|
$children = $this->collection->getChildren();
|
||
|
$this->assertFalse(empty($children));
|
||
|
foreach($children as $child) {
|
||
|
$this->assertTrue($child instanceof EntityTypeCollectionImplementation);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException \Sabre\DAV\Exception\NotAuthenticated
|
||
|
*/
|
||
|
public function testGetChildrenNoAuth() {
|
||
|
$this->collection->getChildren();
|
||
|
}
|
||
|
|
||
|
public function testChildExistsYes() {
|
||
|
$this->prepareForInitCollections();
|
||
|
$this->assertTrue($this->collection->childExists('files'));
|
||
|
}
|
||
|
|
||
|
public function testChildExistsNo() {
|
||
|
$this->prepareForInitCollections();
|
||
|
$this->assertFalse($this->collection->childExists('robots'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException \Sabre\DAV\Exception\NotAuthenticated
|
||
|
*/
|
||
|
public function testChildExistsNoAuth() {
|
||
|
$this->collection->childExists('files');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException \Sabre\DAV\Exception\Forbidden
|
||
|
*/
|
||
|
public function testDelete() {
|
||
|
$this->collection->delete();
|
||
|
}
|
||
|
|
||
|
public function testGetName() {
|
||
|
$this->assertSame('comments', $this->collection->getName());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException \Sabre\DAV\Exception\Forbidden
|
||
|
*/
|
||
|
public function testSetName() {
|
||
|
$this->collection->setName('foobar');
|
||
|
}
|
||
|
|
||
|
public function testGetLastModified() {
|
||
|
$this->assertSame(null, $this->collection->getLastModified());
|
||
|
}
|
||
|
}
|