You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/dav/tests/unit/Upload/ChunkingPluginTest.php

189 lines
5.3 KiB

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2017 ownCloud GmbH
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\DAV\Tests\unit\Upload;
use OCA\DAV\Connector\Sabre\Directory;
use OCA\DAV\Upload\ChunkingPlugin;
use OCA\DAV\Upload\FutureFile;
use PHPUnit\Framework\MockObject\MockObject;
use Sabre\DAV\Exception\NotFound;
use Sabre\HTTP\RequestInterface;
use Sabre\HTTP\ResponseInterface;
use Test\TestCase;
class ChunkingPluginTest extends TestCase {
private \Sabre\DAV\Server&MockObject $server;
private \Sabre\DAV\Tree&MockObject $tree;
private ChunkingPlugin $plugin;
private RequestInterface&MockObject $request;
private ResponseInterface&MockObject $response;
protected function setUp(): void {
parent::setUp();
$this->server = $this->createMock('\Sabre\DAV\Server');
$this->tree = $this->createMock('\Sabre\DAV\Tree');
$this->server->tree = $this->tree;
$this->plugin = new ChunkingPlugin();
$this->request = $this->createMock(RequestInterface::class);
$this->response = $this->createMock(ResponseInterface::class);
$this->server->httpRequest = $this->request;
$this->server->httpResponse = $this->response;
$this->plugin->initialize($this->server);
}
public function testBeforeMoveFutureFileSkip(): void {
$node = $this->createMock(Directory::class);
$this->tree->expects($this->any())
->method('getNodeForPath')
->with('source')
->willReturn($node);
$this->response->expects($this->never())
->method('setStatus');
$this->assertNull($this->plugin->beforeMove('source', 'target'));
}
public function testBeforeMoveDestinationIsDirectory(): void {
$this->expectException(\Sabre\DAV\Exception\BadRequest::class);
$this->expectExceptionMessage('The given destination target is a directory.');
$sourceNode = $this->createMock(FutureFile::class);
$targetNode = $this->createMock(Directory::class);
$this->tree->expects($this->exactly(2))
->method('getNodeForPath')
->willReturnMap([
['source', $sourceNode],
['target', $targetNode],
]);
$this->response->expects($this->never())
->method('setStatus');
$this->assertNull($this->plugin->beforeMove('source', 'target'));
}
public function testBeforeMoveFutureFileSkipNonExisting(): void {
$sourceNode = $this->createMock(FutureFile::class);
$sourceNode->expects($this->once())
->method('getSize')
->willReturn(4);
$calls = [
['source', $sourceNode],
['target', new NotFound()],
];
$this->tree->expects($this->exactly(2))
->method('getNodeForPath')
->willReturnCallback(function (string $path) use (&$calls) {
$expected = array_shift($calls);
$this->assertSame($expected[0], $path);
if ($expected[1] instanceof \Throwable) {
throw $expected[1];
}
return $expected[1];
});
$this->tree->expects($this->any())
->method('nodeExists')
->with('target')
->willReturn(false);
$this->response->expects($this->once())
->method('setHeader')
->with('Content-Length', '0');
$this->response->expects($this->once())
->method('setStatus')
->with(201);
$this->request->expects($this->once())
->method('getHeader')
->with('OC-Total-Length')
->willReturn(4);
$this->assertFalse($this->plugin->beforeMove('source', 'target'));
}
public function testBeforeMoveFutureFileMoveIt(): void {
$sourceNode = $this->createMock(FutureFile::class);
$sourceNode->expects($this->once())
->method('getSize')
->willReturn(4);
$calls = [
['source', $sourceNode],
['target', new NotFound()],
];
$this->tree->expects($this->exactly(2))
->method('getNodeForPath')
->willReturnCallback(function (string $path) use (&$calls) {
$expected = array_shift($calls);
$this->assertSame($expected[0], $path);
if ($expected[1] instanceof \Throwable) {
throw $expected[1];
}
return $expected[1];
});
$this->tree->expects($this->any())
->method('nodeExists')
->with('target')
->willReturn(true);
$this->tree->expects($this->once())
->method('move')
->with('source', 'target');
$this->response->expects($this->once())
->method('setHeader')
->with('Content-Length', '0');
$this->response->expects($this->once())
->method('setStatus')
->with(204);
$this->request->expects($this->once())
->method('getHeader')
->with('OC-Total-Length')
->willReturn('4');
$this->assertFalse($this->plugin->beforeMove('source', 'target'));
}
public function testBeforeMoveSizeIsWrong(): void {
$this->expectException(\Sabre\DAV\Exception\BadRequest::class);
$this->expectExceptionMessage('Chunks on server do not sum up to 4 but to 3 bytes');
$sourceNode = $this->createMock(FutureFile::class);
$sourceNode->expects($this->once())
->method('getSize')
->willReturn(3);
$calls = [
['source', $sourceNode],
['target', new NotFound()],
];
$this->tree->expects($this->exactly(2))
->method('getNodeForPath')
->willReturnCallback(function (string $path) use (&$calls) {
$expected = array_shift($calls);
$this->assertSame($expected[0], $path);
if ($expected[1] instanceof \Throwable) {
throw $expected[1];
}
return $expected[1];
});
$this->request->expects($this->once())
->method('getHeader')
->with('OC-Total-Length')
->willReturn('4');
$this->assertFalse($this->plugin->beforeMove('source', 'target'));
}
}