123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- /**
- * @copyright Copyright (c) 2016 Georg Ehrke <oc.list@georgehrke.com>
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @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 OCA\DAV\CalDAV\BirthdayService;
- use OCA\DAV\CalDAV\CalDavBackend;
- use OCA\DAV\Command\ListCalendars;
- use OCP\IUserManager;
- use Symfony\Component\Console\Tester\CommandTester;
- use Test\TestCase;
- /**
- * Class ListCalendarsTest
- *
- * @package OCA\DAV\Tests\Command
- */
- class ListCalendarsTest extends TestCase {
- /** @var \OCP\IUserManager|\PHPUnit\Framework\MockObject\MockObject $userManager */
- private $userManager;
- /** @var CalDavBackend|\PHPUnit\Framework\MockObject\MockObject $l10n */
- private $calDav;
- /** @var ListCalendars */
- private $command;
- public const USERNAME = 'username';
- protected function setUp(): void {
- parent::setUp();
- $this->userManager = $this->createMock(IUserManager::class);
- $this->calDav = $this->createMock(CalDavBackend::class);
- $this->command = new ListCalendars(
- $this->userManager,
- $this->calDav
- );
- }
- public function testWithBadUser(): void {
- $this->expectException(\InvalidArgumentException::class);
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USERNAME)
- ->willReturn(false);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USERNAME,
- ]);
- $this->assertStringContainsString("User <" . self::USERNAME . "> in unknown", $commandTester->getDisplay());
- }
- public function testWithCorrectUserWithNoCalendars(): void {
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USERNAME)
- ->willReturn(true);
- $this->calDav->expects($this->once())
- ->method('getCalendarsForUser')
- ->with('principals/users/' . self::USERNAME)
- ->willReturn([]);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USERNAME,
- ]);
- $this->assertStringContainsString("User <" . self::USERNAME . "> has no calendars\n", $commandTester->getDisplay());
- }
- public function dataExecute() {
- return [
- [false, '✓'],
- [true, 'x']
- ];
- }
- /**
- * @dataProvider dataExecute
- */
- public function testWithCorrectUser(bool $readOnly, string $output): void {
- $this->userManager->expects($this->once())
- ->method('userExists')
- ->with(self::USERNAME)
- ->willReturn(true);
- $this->calDav->expects($this->once())
- ->method('getCalendarsForUser')
- ->with('principals/users/' . self::USERNAME)
- ->willReturn([
- [
- 'uri' => BirthdayService::BIRTHDAY_CALENDAR_URI,
- ],
- [
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only' => $readOnly,
- 'uri' => 'test',
- '{DAV:}displayname' => 'dp',
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => 'owner-principal',
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}owner-displayname' => 'owner-dp',
- ]
- ]);
- $commandTester = new CommandTester($this->command);
- $commandTester->execute([
- 'uid' => self::USERNAME,
- ]);
- $this->assertStringContainsString($output, $commandTester->getDisplay());
- $this->assertStringNotContainsString(BirthdayService::BIRTHDAY_CALENDAR_URI, $commandTester->getDisplay());
- }
- }
|