123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- <?php
- declare(strict_types=1);
- /**
- *
- * @copyright Copyright (c) 2021, Mattia Narducci (mattianarducci1@gmail.com)
- *
- * @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 <https://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\DAV\Tests\Command;
- use OCA\DAV\CalDAV\BirthdayService;
- use OCA\DAV\CalDAV\CalDavBackend;
- use OCA\DAV\Command\DeleteCalendar;
- use OCP\IConfig;
- use OCP\IL10N;
- use OCP\IUserManager;
- use PHPUnit\Framework\MockObject\MockObject;
- use Psr\Log\LoggerInterface;
- use Symfony\Component\Console\Tester\CommandTester;
- use Test\TestCase;
- /**
- * Class DeleteCalendarTest
- *
- * @package OCA\DAV\Tests\Command
- */
- class DeleteCalendarTest extends TestCase {
- public const USER = 'user';
- public const NAME = 'calendar';
- /** @var CalDavBackend|MockObject */
- private $calDav;
- /** @var IConfig|MockObject */
- private $config;
- /** @var IL10N|MockObject */
- private $l10n;
- /** @var IUserManager|MockObject */
- private $userManager;
- /** @var DeleteCalendar */
- private $command;
-
- /** @var MockObject|LoggerInterface */
- private $logger;
- protected function setUp(): void {
- parent::setUp();
- $this->calDav = $this->createMock(CalDavBackend::class);
- $this->config = $this->createMock(IConfig::class);
- $this->l10n = $this->createMock(IL10N::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->logger = $this->createMock(LoggerInterface::class);
- $this->command = new DeleteCalendar(
- $this->calDav,
- $this->config,
- $this->l10n,
- $this->userManager,
- $this->logger
- );
- }
- public function testInvalidUser(): void {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage(
- 'User <' . self::USER . '> is unknown.');
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USER)
- ->willReturn(false);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USER,
- 'name' => self::NAME,
- ]);
- }
- public function testNoCalendarName(): void {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage(
- 'Please specify a calendar name or --birthday');
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USER)
- ->willReturn(true);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USER,
- ]);
- }
- public function testInvalidCalendar(): void {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage(
- 'User <' . self::USER . '> has no calendar named <' . self::NAME . '>.');
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USER)
- ->willReturn(true);
- $this->calDav->expects($this->once())
- ->method('getCalendarByUri')
- ->with(
- 'principals/users/' . self::USER,
- self::NAME
- )
- ->willReturn(null);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USER,
- 'name' => self::NAME,
- ]);
- }
- public function testDelete(): void {
- $id = 1234;
- $calendar = [
- 'id' => $id,
- 'principaluri' => 'principals/users/' . self::USER,
- 'uri' => self::NAME
- ];
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USER)
- ->willReturn(true);
- $this->calDav->expects($this->once())
- ->method('getCalendarByUri')
- ->with(
- 'principals/users/' . self::USER,
- self::NAME
- )
- ->willReturn($calendar);
- $this->calDav->expects($this->once())
- ->method('deleteCalendar')
- ->with($id, false);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USER,
- 'name' => self::NAME,
- ]);
- }
- public function testForceDelete(): void {
- $id = 1234;
- $calendar = [
- 'id' => $id,
- 'principaluri' => 'principals/users/' . self::USER,
- 'uri' => self::NAME
- ];
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USER)
- ->willReturn(true);
- $this->calDav->expects($this->once())
- ->method('getCalendarByUri')
- ->with(
- 'principals/users/' . self::USER,
- self::NAME
- )
- ->willReturn($calendar);
- $this->calDav->expects($this->once())
- ->method('deleteCalendar')
- ->with($id, true);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USER,
- 'name' => self::NAME,
- '-f' => true
- ]);
- }
- public function testDeleteBirthday(): void {
- $id = 1234;
- $calendar = [
- 'id' => $id,
- 'principaluri' => 'principals/users/' . self::USER,
- 'uri' => BirthdayService::BIRTHDAY_CALENDAR_URI
- ];
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USER)
- ->willReturn(true);
- $this->calDav->expects($this->once())
- ->method('getCalendarByUri')
- ->with(
- 'principals/users/' . self::USER,
- BirthdayService::BIRTHDAY_CALENDAR_URI
- )
- ->willReturn($calendar);
- $this->calDav->expects($this->once())
- ->method('deleteCalendar')
- ->with($id);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USER,
- '--birthday' => true,
- ]);
- }
- public function testBirthdayHasPrecedence(): void {
- $calendar = [
- 'id' => 1234,
- 'principaluri' => 'principals/users/' . self::USER,
- 'uri' => BirthdayService::BIRTHDAY_CALENDAR_URI
- ];
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USER)
- ->willReturn(true);
- $this->calDav->expects($this->once())
- ->method('getCalendarByUri')
- ->with(
- 'principals/users/' . self::USER,
- BirthdayService::BIRTHDAY_CALENDAR_URI
- )
- ->willReturn($calendar);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USER,
- 'name' => self::NAME,
- '--birthday' => true,
- ]);
- }
- }
|