mirror of
https://github.com/nextcloud/server.git
synced 2026-02-14 08:14:47 -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>
422 lines
12 KiB
PHP
422 lines
12 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
*
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
* @author Thomas Citharel <nextcloud@tcit.fr>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* 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
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace OCA\DAV\Tests\Command;
|
|
|
|
use InvalidArgumentException;
|
|
use OCA\DAV\CalDAV\CalDavBackend;
|
|
use OCA\DAV\Command\MoveCalendar;
|
|
use OCP\IConfig;
|
|
use OCP\IGroupManager;
|
|
use OCP\IL10N;
|
|
use OCP\IUserManager;
|
|
use OCP\Share\IManager;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
use Test\TestCase;
|
|
|
|
/**
|
|
* Class MoveCalendarTest
|
|
*
|
|
* @package OCA\DAV\Tests\Command
|
|
*/
|
|
class MoveCalendarTest extends TestCase {
|
|
|
|
/** @var \OCP\IUserManager|\PHPUnit\Framework\MockObject\MockObject $userManager */
|
|
private $userManager;
|
|
|
|
/** @var \OCP\IGroupManager|\PHPUnit\Framework\MockObject\MockObject $groupManager */
|
|
private $groupManager;
|
|
|
|
/** @var \OCP\Share\IManager|\PHPUnit_Framework_MockObject_MockObject $shareManager */
|
|
private $shareManager;
|
|
|
|
/** @var IConfig|\PHPUnit_Framework_MockObject_MockObject $l10n */
|
|
private $config;
|
|
|
|
/** @var IL10N|\PHPUnit_Framework_MockObject_MockObject $l10n */
|
|
private $l10n;
|
|
|
|
/** @var CalDavBackend|\PHPUnit_Framework_MockObject_MockObject $l10n */
|
|
private $calDav;
|
|
|
|
/** @var MoveCalendar */
|
|
private $command;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->userManager = $this->createMock(IUserManager::class);
|
|
$this->groupManager = $this->createMock(IGroupManager::class);
|
|
$this->shareManager = $this->createMock(IManager::class);
|
|
$this->config = $this->createMock(IConfig::class);
|
|
$this->l10n = $this->createMock(IL10N::class);
|
|
$this->calDav = $this->createMock(CalDavBackend::class);
|
|
|
|
$this->command = new MoveCalendar(
|
|
$this->userManager,
|
|
$this->groupManager,
|
|
$this->shareManager,
|
|
$this->config,
|
|
$this->l10n,
|
|
$this->calDav
|
|
);
|
|
}
|
|
|
|
public function dataExecute() {
|
|
return [
|
|
[false, true],
|
|
[true, false]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataExecute
|
|
*
|
|
* @param $userOriginExists
|
|
* @param $userDestinationExists
|
|
*/
|
|
public function testWithBadUserOrigin($userOriginExists, $userDestinationExists) {
|
|
$this->expectException(\InvalidArgumentException::class);
|
|
|
|
$this->userManager->expects($this->at(0))
|
|
->method('userExists')
|
|
->with('user')
|
|
->willReturn($userOriginExists);
|
|
|
|
if (!$userDestinationExists) {
|
|
$this->userManager->expects($this->at(1))
|
|
->method('userExists')
|
|
->with('user2')
|
|
->willReturn($userDestinationExists);
|
|
}
|
|
|
|
$commandTester = new CommandTester($this->command);
|
|
$commandTester->execute([
|
|
'name' => $this->command->getName(),
|
|
'sourceuid' => 'user',
|
|
'destinationuid' => 'user2',
|
|
]);
|
|
}
|
|
|
|
|
|
public function testMoveWithInexistantCalendar() {
|
|
$this->expectException(\InvalidArgumentException::class);
|
|
$this->expectExceptionMessage('User <user> has no calendar named <personal>. You can run occ dav:list-calendars to list calendars URIs for this user.');
|
|
|
|
$this->userManager->expects($this->at(0))
|
|
->method('userExists')
|
|
->with('user')
|
|
->willReturn(true);
|
|
|
|
$this->userManager->expects($this->at(1))
|
|
->method('userExists')
|
|
->with('user2')
|
|
->willReturn(true);
|
|
|
|
$this->calDav->expects($this->once())->method('getCalendarByUri')
|
|
->with('principals/users/user', 'personal')
|
|
->willReturn(null);
|
|
|
|
$commandTester = new CommandTester($this->command);
|
|
$commandTester->execute([
|
|
'name' => 'personal',
|
|
'sourceuid' => 'user',
|
|
'destinationuid' => 'user2',
|
|
]);
|
|
}
|
|
|
|
|
|
public function testMoveWithExistingDestinationCalendar() {
|
|
$this->expectException(\InvalidArgumentException::class);
|
|
$this->expectExceptionMessage('User <user2> already has a calendar named <personal>.');
|
|
|
|
$this->userManager->expects($this->at(0))
|
|
->method('userExists')
|
|
->with('user')
|
|
->willReturn(true);
|
|
|
|
$this->userManager->expects($this->at(1))
|
|
->method('userExists')
|
|
->with('user2')
|
|
->willReturn(true);
|
|
|
|
$this->calDav->expects($this->at(0))->method('getCalendarByUri')
|
|
->with('principals/users/user', 'personal')
|
|
->willReturn([
|
|
'id' => 1234,
|
|
]);
|
|
|
|
$this->calDav->expects($this->at(1))->method('getCalendarByUri')
|
|
->with('principals/users/user2', 'personal')
|
|
->willReturn([
|
|
'id' => 1234,
|
|
]);
|
|
|
|
$commandTester = new CommandTester($this->command);
|
|
$commandTester->execute([
|
|
'name' => 'personal',
|
|
'sourceuid' => 'user',
|
|
'destinationuid' => 'user2',
|
|
]);
|
|
}
|
|
|
|
public function testMove() {
|
|
$this->userManager->expects($this->at(0))
|
|
->method('userExists')
|
|
->with('user')
|
|
->willReturn(true);
|
|
|
|
$this->userManager->expects($this->at(1))
|
|
->method('userExists')
|
|
->with('user2')
|
|
->willReturn(true);
|
|
|
|
$this->calDav->expects($this->at(0))->method('getCalendarByUri')
|
|
->with('principals/users/user', 'personal')
|
|
->willReturn([
|
|
'id' => 1234,
|
|
]);
|
|
|
|
$this->calDav->expects($this->at(1))->method('getCalendarByUri')
|
|
->with('principals/users/user2', 'personal')
|
|
->willReturn(null);
|
|
|
|
$this->calDav->expects($this->once())->method('getShares')
|
|
->with(1234)
|
|
->willReturn([]);
|
|
|
|
$commandTester = new CommandTester($this->command);
|
|
$commandTester->execute([
|
|
'name' => 'personal',
|
|
'sourceuid' => 'user',
|
|
'destinationuid' => 'user2',
|
|
]);
|
|
|
|
$this->assertContains("[OK] Calendar <personal> was moved from user <user> to <user2>", $commandTester->getDisplay());
|
|
}
|
|
|
|
public function dataTestMoveWithDestinationNotPartOfGroup(): array {
|
|
return [
|
|
[true],
|
|
[false]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataTestMoveWithDestinationNotPartOfGroup
|
|
*/
|
|
public function testMoveWithDestinationNotPartOfGroup(bool $shareWithGroupMembersOnly) {
|
|
$this->userManager->expects($this->at(0))
|
|
->method('userExists')
|
|
->with('user')
|
|
->willReturn(true);
|
|
|
|
$this->userManager->expects($this->at(1))
|
|
->method('userExists')
|
|
->with('user2')
|
|
->willReturn(true);
|
|
|
|
$this->calDav->expects($this->at(0))->method('getCalendarByUri')
|
|
->with('principals/users/user', 'personal')
|
|
->willReturn([
|
|
'id' => 1234,
|
|
'uri' => 'personal'
|
|
]);
|
|
|
|
$this->calDav->expects($this->at(1))->method('getCalendarByUri')
|
|
->with('principals/users/user2', 'personal')
|
|
->willReturn(null);
|
|
|
|
$this->shareManager->expects($this->once())->method('shareWithGroupMembersOnly')
|
|
->willReturn($shareWithGroupMembersOnly);
|
|
|
|
$this->calDav->expects($this->once())->method('getShares')
|
|
->with(1234)
|
|
->willReturn([
|
|
['href' => 'principal:principals/groups/nextclouders']
|
|
]);
|
|
if ($shareWithGroupMembersOnly === true) {
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$this->expectExceptionMessage("User <user2> is not part of the group <nextclouders> with whom the calendar <personal> was shared. You may use -f to move the calendar while deleting this share.");
|
|
}
|
|
|
|
$commandTester = new CommandTester($this->command);
|
|
$commandTester->execute([
|
|
'name' => 'personal',
|
|
'sourceuid' => 'user',
|
|
'destinationuid' => 'user2',
|
|
]);
|
|
}
|
|
|
|
public function testMoveWithDestinationPartOfGroup() {
|
|
$this->userManager->expects($this->at(0))
|
|
->method('userExists')
|
|
->with('user')
|
|
->willReturn(true);
|
|
|
|
$this->userManager->expects($this->at(1))
|
|
->method('userExists')
|
|
->with('user2')
|
|
->willReturn(true);
|
|
|
|
$this->calDav->expects($this->at(0))->method('getCalendarByUri')
|
|
->with('principals/users/user', 'personal')
|
|
->willReturn([
|
|
'id' => 1234,
|
|
'uri' => 'personal'
|
|
]);
|
|
|
|
$this->calDav->expects($this->at(1))->method('getCalendarByUri')
|
|
->with('principals/users/user2', 'personal')
|
|
->willReturn(null);
|
|
|
|
$this->shareManager->expects($this->once())->method('shareWithGroupMembersOnly')
|
|
->willReturn(true);
|
|
|
|
$this->calDav->expects($this->once())->method('getShares')
|
|
->with(1234)
|
|
->willReturn([
|
|
['href' => 'principal:principals/groups/nextclouders']
|
|
]);
|
|
|
|
$this->groupManager->expects($this->once())->method('isInGroup')
|
|
->with('user2', 'nextclouders')
|
|
->willReturn(true);
|
|
|
|
$commandTester = new CommandTester($this->command);
|
|
$commandTester->execute([
|
|
'name' => 'personal',
|
|
'sourceuid' => 'user',
|
|
'destinationuid' => 'user2',
|
|
]);
|
|
|
|
$this->assertContains("[OK] Calendar <personal> was moved from user <user> to <user2>", $commandTester->getDisplay());
|
|
}
|
|
|
|
public function testMoveWithDestinationNotPartOfGroupAndForce() {
|
|
$this->userManager->expects($this->at(0))
|
|
->method('userExists')
|
|
->with('user')
|
|
->willReturn(true);
|
|
|
|
$this->userManager->expects($this->at(1))
|
|
->method('userExists')
|
|
->with('user2')
|
|
->willReturn(true);
|
|
|
|
$this->calDav->expects($this->at(0))->method('getCalendarByUri')
|
|
->with('principals/users/user', 'personal')
|
|
->willReturn([
|
|
'id' => 1234,
|
|
'uri' => 'personal',
|
|
'{DAV:}displayname' => 'Personal'
|
|
]);
|
|
|
|
$this->calDav->expects($this->at(1))->method('getCalendarByUri')
|
|
->with('principals/users/user2', 'personal')
|
|
->willReturn(null);
|
|
|
|
$this->shareManager->expects($this->once())->method('shareWithGroupMembersOnly')
|
|
->willReturn(true);
|
|
|
|
$this->calDav->expects($this->once())->method('getShares')
|
|
->with(1234)
|
|
->willReturn([
|
|
[
|
|
'href' => 'principal:principals/groups/nextclouders',
|
|
'{DAV:}displayname' => 'Personal'
|
|
]
|
|
]);
|
|
$this->calDav->expects($this->once())->method('updateShares');
|
|
|
|
$commandTester = new CommandTester($this->command);
|
|
$commandTester->execute([
|
|
'name' => 'personal',
|
|
'sourceuid' => 'user',
|
|
'destinationuid' => 'user2',
|
|
'--force' => true
|
|
]);
|
|
|
|
$this->assertContains("[OK] Calendar <personal> was moved from user <user> to <user2>", $commandTester->getDisplay());
|
|
}
|
|
|
|
public function dataTestMoveWithCalendarAlreadySharedToDestination(): array {
|
|
return [
|
|
[true],
|
|
[false]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataTestMoveWithCalendarAlreadySharedToDestination
|
|
*/
|
|
public function testMoveWithCalendarAlreadySharedToDestination(bool $force) {
|
|
$this->userManager->expects($this->at(0))
|
|
->method('userExists')
|
|
->with('user')
|
|
->willReturn(true);
|
|
|
|
$this->userManager->expects($this->at(1))
|
|
->method('userExists')
|
|
->with('user2')
|
|
->willReturn(true);
|
|
|
|
$this->calDav->expects($this->at(0))->method('getCalendarByUri')
|
|
->with('principals/users/user', 'personal')
|
|
->willReturn([
|
|
'id' => 1234,
|
|
'uri' => 'personal',
|
|
'{DAV:}displayname' => 'Personal',
|
|
]);
|
|
|
|
$this->calDav->expects($this->at(1))->method('getCalendarByUri')
|
|
->with('principals/users/user2', 'personal')
|
|
->willReturn(null);
|
|
|
|
$this->calDav->expects($this->once())->method('getShares')
|
|
->with(1234)
|
|
->willReturn([
|
|
[
|
|
'href' => 'principal:principals/users/user2',
|
|
'{DAV:}displayname' => 'Personal'
|
|
]
|
|
]);
|
|
|
|
if ($force === false) {
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$this->expectExceptionMessage("The calendar <personal> is already shared to user <user2>.You may use -f to move the calendar while deleting this share.");
|
|
} else {
|
|
$this->calDav->expects($this->once())->method('updateShares');
|
|
}
|
|
|
|
$commandTester = new CommandTester($this->command);
|
|
$commandTester->execute([
|
|
'name' => 'personal',
|
|
'sourceuid' => 'user',
|
|
'destinationuid' => 'user2',
|
|
'--force' => $force,
|
|
]);
|
|
}
|
|
}
|