mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
775 lines
20 KiB
PHP
775 lines
20 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
*
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
*
|
|
* @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 OC\Comments\Comment;
|
|
use OCA\DAV\Comments\CommentsPlugin as CommentsPluginImplementation;
|
|
use OCA\DAV\Comments\EntityCollection;
|
|
use OCP\Comments\IComment;
|
|
use OCP\Comments\ICommentsManager;
|
|
use OCP\IUser;
|
|
use OCP\IUserSession;
|
|
use Sabre\DAV\INode;
|
|
use Sabre\DAV\Tree;
|
|
use Sabre\HTTP\RequestInterface;
|
|
use Sabre\HTTP\ResponseInterface;
|
|
|
|
class CommentsPluginTest extends \Test\TestCase {
|
|
/** @var \Sabre\DAV\Server */
|
|
private $server;
|
|
|
|
/** @var Tree */
|
|
private $tree;
|
|
|
|
/** @var ICommentsManager */
|
|
private $commentsManager;
|
|
|
|
/** @var IUserSession */
|
|
private $userSession;
|
|
|
|
/** @var CommentsPluginImplementation */
|
|
private $plugin;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
$this->tree = $this->getMockBuilder(Tree::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->server = $this->getMockBuilder('\Sabre\DAV\Server')
|
|
->setConstructorArgs([$this->tree])
|
|
->setMethods(['getRequestUri'])
|
|
->getMock();
|
|
|
|
$this->commentsManager = $this->getMockBuilder(ICommentsManager::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$this->userSession = $this->getMockBuilder(IUserSession::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->plugin = new CommentsPluginImplementation($this->commentsManager, $this->userSession);
|
|
}
|
|
|
|
public function testCreateComment() {
|
|
$commentData = [
|
|
'actorType' => 'users',
|
|
'verb' => 'comment',
|
|
'message' => 'my first comment',
|
|
];
|
|
|
|
$comment = new Comment([
|
|
'objectType' => 'files',
|
|
'objectId' => '42',
|
|
'actorType' => 'users',
|
|
'actorId' => 'alice'
|
|
] + $commentData);
|
|
$comment->setId('23');
|
|
|
|
$path = 'comments/files/42';
|
|
|
|
$requestData = json_encode($commentData);
|
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$user->expects($this->once())
|
|
->method('getUID')
|
|
->willReturn('alice');
|
|
|
|
$node = $this->getMockBuilder(EntityCollection::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$node->expects($this->once())
|
|
->method('getName')
|
|
->willReturn('files');
|
|
$node->expects($this->once())
|
|
->method('getId')
|
|
->willReturn('42');
|
|
|
|
$node->expects($this->once())
|
|
->method('setReadMarker')
|
|
->with(null);
|
|
|
|
$this->commentsManager->expects($this->once())
|
|
->method('create')
|
|
->with('users', 'alice', 'files', '42')
|
|
->willReturn($comment);
|
|
|
|
$this->userSession->expects($this->once())
|
|
->method('getUser')
|
|
->willReturn($user);
|
|
|
|
// technically, this is a shortcut. Inbetween EntityTypeCollection would
|
|
// be returned, but doing it exactly right would not be really
|
|
// unit-testing like, as it would require to haul in a lot of other
|
|
// things.
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->willReturn($node);
|
|
|
|
$request = $this->getMockBuilder(RequestInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$response = $this->getMockBuilder(ResponseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$request->expects($this->once())
|
|
->method('getPath')
|
|
->willReturn('/' . $path);
|
|
|
|
$request->expects($this->once())
|
|
->method('getBodyAsString')
|
|
->willReturn($requestData);
|
|
|
|
$request->expects($this->once())
|
|
->method('getHeader')
|
|
->with('Content-Type')
|
|
->willReturn('application/json');
|
|
|
|
$request->expects($this->once())
|
|
->method('getUrl')
|
|
->willReturn('http://example.com/dav/' . $path);
|
|
|
|
$response->expects($this->once())
|
|
->method('setHeader')
|
|
->with('Content-Location', 'http://example.com/dav/' . $path . '/23');
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->httpPost($request, $response);
|
|
}
|
|
|
|
|
|
public function testCreateCommentInvalidObject() {
|
|
$this->expectException(\Sabre\DAV\Exception\NotFound::class);
|
|
|
|
$commentData = [
|
|
'actorType' => 'users',
|
|
'verb' => 'comment',
|
|
'message' => 'my first comment',
|
|
];
|
|
|
|
$comment = new Comment([
|
|
'objectType' => 'files',
|
|
'objectId' => '666',
|
|
'actorType' => 'users',
|
|
'actorId' => 'alice'
|
|
] + $commentData);
|
|
$comment->setId('23');
|
|
|
|
$path = 'comments/files/666';
|
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$user->expects($this->never())
|
|
->method('getUID');
|
|
|
|
$node = $this->getMockBuilder(EntityCollection::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$node->expects($this->never())
|
|
->method('getName');
|
|
$node->expects($this->never())
|
|
->method('getId');
|
|
|
|
$this->commentsManager->expects($this->never())
|
|
->method('create');
|
|
|
|
$this->userSession->expects($this->never())
|
|
->method('getUser');
|
|
|
|
// technically, this is a shortcut. Inbetween EntityTypeCollection would
|
|
// be returned, but doing it exactly right would not be really
|
|
// unit-testing like, as it would require to haul in a lot of other
|
|
// things.
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->will($this->throwException(new \Sabre\DAV\Exception\NotFound()));
|
|
|
|
$request = $this->getMockBuilder(RequestInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$response = $this->getMockBuilder(ResponseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$request->expects($this->once())
|
|
->method('getPath')
|
|
->willReturn('/' . $path);
|
|
|
|
$request->expects($this->never())
|
|
->method('getBodyAsString');
|
|
|
|
$request->expects($this->never())
|
|
->method('getHeader')
|
|
->with('Content-Type');
|
|
|
|
$request->expects($this->never())
|
|
->method('getUrl');
|
|
|
|
$response->expects($this->never())
|
|
->method('setHeader');
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->httpPost($request, $response);
|
|
}
|
|
|
|
|
|
public function testCreateCommentInvalidActor() {
|
|
$this->expectException(\Sabre\DAV\Exception\BadRequest::class);
|
|
|
|
$commentData = [
|
|
'actorType' => 'robots',
|
|
'verb' => 'comment',
|
|
'message' => 'my first comment',
|
|
];
|
|
|
|
$comment = new Comment([
|
|
'objectType' => 'files',
|
|
'objectId' => '42',
|
|
'actorType' => 'users',
|
|
'actorId' => 'alice'
|
|
] + $commentData);
|
|
$comment->setId('23');
|
|
|
|
$path = 'comments/files/42';
|
|
|
|
$requestData = json_encode($commentData);
|
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$user->expects($this->never())
|
|
->method('getUID');
|
|
|
|
$node = $this->getMockBuilder(EntityCollection::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$node->expects($this->once())
|
|
->method('getName')
|
|
->willReturn('files');
|
|
$node->expects($this->once())
|
|
->method('getId')
|
|
->willReturn('42');
|
|
|
|
$this->commentsManager->expects($this->never())
|
|
->method('create');
|
|
|
|
$this->userSession->expects($this->never())
|
|
->method('getUser');
|
|
|
|
// technically, this is a shortcut. Inbetween EntityTypeCollection would
|
|
// be returned, but doing it exactly right would not be really
|
|
// unit-testing like, as it would require to haul in a lot of other
|
|
// things.
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->willReturn($node);
|
|
|
|
$request = $this->getMockBuilder(RequestInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$response = $this->getMockBuilder(ResponseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$request->expects($this->once())
|
|
->method('getPath')
|
|
->willReturn('/' . $path);
|
|
|
|
$request->expects($this->once())
|
|
->method('getBodyAsString')
|
|
->willReturn($requestData);
|
|
|
|
$request->expects($this->once())
|
|
->method('getHeader')
|
|
->with('Content-Type')
|
|
->willReturn('application/json');
|
|
|
|
$request->expects($this->never())
|
|
->method('getUrl');
|
|
|
|
$response->expects($this->never())
|
|
->method('setHeader');
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->httpPost($request, $response);
|
|
}
|
|
|
|
|
|
public function testCreateCommentUnsupportedMediaType() {
|
|
$this->expectException(\Sabre\DAV\Exception\UnsupportedMediaType::class);
|
|
|
|
$commentData = [
|
|
'actorType' => 'users',
|
|
'verb' => 'comment',
|
|
'message' => 'my first comment',
|
|
];
|
|
|
|
$comment = new Comment([
|
|
'objectType' => 'files',
|
|
'objectId' => '42',
|
|
'actorType' => 'users',
|
|
'actorId' => 'alice'
|
|
] + $commentData);
|
|
$comment->setId('23');
|
|
|
|
$path = 'comments/files/42';
|
|
|
|
$requestData = json_encode($commentData);
|
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$user->expects($this->never())
|
|
->method('getUID');
|
|
|
|
$node = $this->getMockBuilder(EntityCollection::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$node->expects($this->once())
|
|
->method('getName')
|
|
->willReturn('files');
|
|
$node->expects($this->once())
|
|
->method('getId')
|
|
->willReturn('42');
|
|
|
|
$this->commentsManager->expects($this->never())
|
|
->method('create');
|
|
|
|
$this->userSession->expects($this->never())
|
|
->method('getUser');
|
|
|
|
// technically, this is a shortcut. Inbetween EntityTypeCollection would
|
|
// be returned, but doing it exactly right would not be really
|
|
// unit-testing like, as it would require to haul in a lot of other
|
|
// things.
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->willReturn($node);
|
|
|
|
$request = $this->getMockBuilder(RequestInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$response = $this->getMockBuilder(ResponseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$request->expects($this->once())
|
|
->method('getPath')
|
|
->willReturn('/' . $path);
|
|
|
|
$request->expects($this->once())
|
|
->method('getBodyAsString')
|
|
->willReturn($requestData);
|
|
|
|
$request->expects($this->once())
|
|
->method('getHeader')
|
|
->with('Content-Type')
|
|
->willReturn('application/trumpscript');
|
|
|
|
$request->expects($this->never())
|
|
->method('getUrl');
|
|
|
|
$response->expects($this->never())
|
|
->method('setHeader');
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->httpPost($request, $response);
|
|
}
|
|
|
|
|
|
public function testCreateCommentInvalidPayload() {
|
|
$this->expectException(\Sabre\DAV\Exception\BadRequest::class);
|
|
|
|
$commentData = [
|
|
'actorType' => 'users',
|
|
'verb' => '',
|
|
'message' => '',
|
|
];
|
|
|
|
$comment = new Comment([
|
|
'objectType' => 'files',
|
|
'objectId' => '42',
|
|
'actorType' => 'users',
|
|
'actorId' => 'alice',
|
|
'message' => 'dummy',
|
|
'verb' => 'dummy'
|
|
]);
|
|
$comment->setId('23');
|
|
|
|
$path = 'comments/files/42';
|
|
|
|
$requestData = json_encode($commentData);
|
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$user->expects($this->once())
|
|
->method('getUID')
|
|
->willReturn('alice');
|
|
|
|
$node = $this->getMockBuilder(EntityCollection::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$node->expects($this->once())
|
|
->method('getName')
|
|
->willReturn('files');
|
|
$node->expects($this->once())
|
|
->method('getId')
|
|
->willReturn('42');
|
|
|
|
$this->commentsManager->expects($this->once())
|
|
->method('create')
|
|
->with('users', 'alice', 'files', '42')
|
|
->willReturn($comment);
|
|
|
|
$this->userSession->expects($this->once())
|
|
->method('getUser')
|
|
->willReturn($user);
|
|
|
|
// technically, this is a shortcut. Inbetween EntityTypeCollection would
|
|
// be returned, but doing it exactly right would not be really
|
|
// unit-testing like, as it would require to haul in a lot of other
|
|
// things.
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->willReturn($node);
|
|
|
|
$request = $this->getMockBuilder(RequestInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$response = $this->getMockBuilder(ResponseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$request->expects($this->once())
|
|
->method('getPath')
|
|
->willReturn('/' . $path);
|
|
|
|
$request->expects($this->once())
|
|
->method('getBodyAsString')
|
|
->willReturn($requestData);
|
|
|
|
$request->expects($this->once())
|
|
->method('getHeader')
|
|
->with('Content-Type')
|
|
->willReturn('application/json');
|
|
|
|
$request->expects($this->never())
|
|
->method('getUrl');
|
|
|
|
$response->expects($this->never())
|
|
->method('setHeader');
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->httpPost($request, $response);
|
|
}
|
|
|
|
|
|
public function testCreateCommentMessageTooLong() {
|
|
$this->expectException(\Sabre\DAV\Exception\BadRequest::class);
|
|
$this->expectExceptionMessage('Message exceeds allowed character limit of');
|
|
|
|
$commentData = [
|
|
'actorType' => 'users',
|
|
'verb' => 'comment',
|
|
'message' => str_pad('', IComment::MAX_MESSAGE_LENGTH + 1, 'x'),
|
|
];
|
|
|
|
$comment = new Comment([
|
|
'objectType' => 'files',
|
|
'objectId' => '42',
|
|
'actorType' => 'users',
|
|
'actorId' => 'alice',
|
|
'verb' => 'comment',
|
|
]);
|
|
$comment->setId('23');
|
|
|
|
$path = 'comments/files/42';
|
|
|
|
$requestData = json_encode($commentData);
|
|
|
|
$user = $this->getMockBuilder(IUser::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$user->expects($this->once())
|
|
->method('getUID')
|
|
->willReturn('alice');
|
|
|
|
$node = $this->getMockBuilder(EntityCollection::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$node->expects($this->once())
|
|
->method('getName')
|
|
->willReturn('files');
|
|
$node->expects($this->once())
|
|
->method('getId')
|
|
->willReturn('42');
|
|
|
|
$node->expects($this->never())
|
|
->method('setReadMarker');
|
|
|
|
$this->commentsManager->expects($this->once())
|
|
->method('create')
|
|
->with('users', 'alice', 'files', '42')
|
|
->willReturn($comment);
|
|
|
|
$this->userSession->expects($this->once())
|
|
->method('getUser')
|
|
->willReturn($user);
|
|
|
|
// technically, this is a shortcut. Inbetween EntityTypeCollection would
|
|
// be returned, but doing it exactly right would not be really
|
|
// unit-testing like, as it would require to haul in a lot of other
|
|
// things.
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->willReturn($node);
|
|
|
|
$request = $this->getMockBuilder(RequestInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$response = $this->getMockBuilder(ResponseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$request->expects($this->once())
|
|
->method('getPath')
|
|
->willReturn('/' . $path);
|
|
|
|
$request->expects($this->once())
|
|
->method('getBodyAsString')
|
|
->willReturn($requestData);
|
|
|
|
$request->expects($this->once())
|
|
->method('getHeader')
|
|
->with('Content-Type')
|
|
->willReturn('application/json');
|
|
|
|
$response->expects($this->never())
|
|
->method('setHeader');
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->httpPost($request, $response);
|
|
}
|
|
|
|
|
|
public function testOnReportInvalidNode() {
|
|
$this->expectException(\Sabre\DAV\Exception\ReportNotSupported::class);
|
|
|
|
$path = 'totally/unrelated/13';
|
|
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->willReturn(
|
|
$this->getMockBuilder(INode::class)
|
|
->disableOriginalConstructor()
|
|
->getMock()
|
|
);
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->onReport(CommentsPluginImplementation::REPORT_NAME, [], '/' . $path);
|
|
}
|
|
|
|
|
|
public function testOnReportInvalidReportName() {
|
|
$this->expectException(\Sabre\DAV\Exception\ReportNotSupported::class);
|
|
|
|
$path = 'comments/files/42';
|
|
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->willReturn(
|
|
$this->getMockBuilder(INode::class)
|
|
->disableOriginalConstructor()
|
|
->getMock()
|
|
);
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->onReport('{whoever}whatever', [], '/' . $path);
|
|
}
|
|
|
|
public function testOnReportDateTimeEmpty() {
|
|
$path = 'comments/files/42';
|
|
|
|
$parameters = [
|
|
[
|
|
'name' => '{http://owncloud.org/ns}limit',
|
|
'value' => 5,
|
|
],
|
|
[
|
|
'name' => '{http://owncloud.org/ns}offset',
|
|
'value' => 10,
|
|
],
|
|
[
|
|
'name' => '{http://owncloud.org/ns}datetime',
|
|
'value' => '',
|
|
]
|
|
];
|
|
|
|
$node = $this->getMockBuilder(EntityCollection::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$node->expects($this->once())
|
|
->method('findChildren')
|
|
->with(5, 10, null)
|
|
->willReturn([]);
|
|
|
|
$response = $this->getMockBuilder(ResponseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$response->expects($this->once())
|
|
->method('setHeader')
|
|
->with('Content-Type', 'application/xml; charset=utf-8');
|
|
|
|
$response->expects($this->once())
|
|
->method('setStatus')
|
|
->with(207);
|
|
|
|
$response->expects($this->once())
|
|
->method('setBody');
|
|
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->willReturn($node);
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->server->httpResponse = $response;
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->onReport(CommentsPluginImplementation::REPORT_NAME, $parameters, '/' . $path);
|
|
}
|
|
|
|
public function testOnReport() {
|
|
$path = 'comments/files/42';
|
|
|
|
$parameters = [
|
|
[
|
|
'name' => '{http://owncloud.org/ns}limit',
|
|
'value' => 5,
|
|
],
|
|
[
|
|
'name' => '{http://owncloud.org/ns}offset',
|
|
'value' => 10,
|
|
],
|
|
[
|
|
'name' => '{http://owncloud.org/ns}datetime',
|
|
'value' => '2016-01-10 18:48:00',
|
|
]
|
|
];
|
|
|
|
$node = $this->getMockBuilder(EntityCollection::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$node->expects($this->once())
|
|
->method('findChildren')
|
|
->with(5, 10, new \DateTime($parameters[2]['value']))
|
|
->willReturn([]);
|
|
|
|
$response = $this->getMockBuilder(ResponseInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$response->expects($this->once())
|
|
->method('setHeader')
|
|
->with('Content-Type', 'application/xml; charset=utf-8');
|
|
|
|
$response->expects($this->once())
|
|
->method('setStatus')
|
|
->with(207);
|
|
|
|
$response->expects($this->once())
|
|
->method('setBody');
|
|
|
|
$this->tree->expects($this->any())
|
|
->method('getNodeForPath')
|
|
->with('/' . $path)
|
|
->willReturn($node);
|
|
|
|
$this->server->expects($this->any())
|
|
->method('getRequestUri')
|
|
->willReturn($path);
|
|
$this->server->httpResponse = $response;
|
|
$this->plugin->initialize($this->server);
|
|
|
|
$this->plugin->onReport(CommentsPluginImplementation::REPORT_NAME, $parameters, '/' . $path);
|
|
}
|
|
}
|