123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <?php
- /**
- * @copyright Copyright (c) 2017 Georg Ehrke <oc.list@georgehrke.com>
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author François Freitag <mail@franek.fr>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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\unit\CalDAV\BirthdayCalendar;
- use OCA\DAV\CalDAV\BirthdayCalendar\EnablePlugin;
- use OCA\DAV\CalDAV\BirthdayService;
- use OCA\DAV\CalDAV\Calendar;
- use OCA\DAV\CalDAV\CalendarHome;
- use OCP\IConfig;
- use OCP\IUser;
- use Test\TestCase;
- class EnablePluginTest extends TestCase {
- /** @var \Sabre\DAV\Server|\PHPUnit\Framework\MockObject\MockObject */
- protected $server;
- /** @var \OCP\IConfig|\PHPUnit\Framework\MockObject\MockObject */
- protected $config;
- /** @var BirthdayService |\PHPUnit\Framework\MockObject\MockObject */
- protected $birthdayService;
- /** @var IUser|\PHPUnit\Framework\MockObject\MockObject */
- protected $user;
- /** @var \OCA\DAV\CalDAV\BirthdayCalendar\EnablePlugin $plugin */
- protected $plugin;
- protected $request;
- protected $response;
- protected function setUp(): void {
- parent::setUp();
- $this->server = $this->createMock(\Sabre\DAV\Server::class);
- $this->server->tree = $this->createMock(\Sabre\DAV\Tree::class);
- $this->server->httpResponse = $this->createMock(\Sabre\HTTP\Response::class);
- $this->server->xml = $this->createMock(\Sabre\DAV\Xml\Service::class);
- $this->config = $this->createMock(IConfig::class);
- $this->birthdayService = $this->createMock(BirthdayService::class);
- $this->user = $this->createMock(IUser::class);
- $this->plugin = new EnablePlugin($this->config, $this->birthdayService, $this->user);
- $this->plugin->initialize($this->server);
- $this->request = $this->createMock(\Sabre\HTTP\RequestInterface::class);
- $this->response = $this->createMock(\Sabre\HTTP\ResponseInterface::class);
- }
- public function testGetFeatures(): void {
- $this->assertEquals(['nc-enable-birthday-calendar'], $this->plugin->getFeatures());
- }
- public function testGetName(): void {
- $this->assertEquals('nc-enable-birthday-calendar', $this->plugin->getPluginName());
- }
- public function testInitialize(): void {
- $server = $this->createMock(\Sabre\DAV\Server::class);
- $plugin = new EnablePlugin($this->config, $this->birthdayService, $this->user);
- $server->expects($this->once())
- ->method('on')
- ->with('method:POST', [$plugin, 'httpPost']);
- $plugin->initialize($server);
- }
- public function testHttpPostNoCalendarHome(): void {
- $calendar = $this->createMock(Calendar::class);
- $this->server->expects($this->once())
- ->method('getRequestUri')
- ->willReturn('/bar/foo');
- $this->server->tree->expects($this->once())
- ->method('getNodeForPath')
- ->with('/bar/foo')
- ->willReturn($calendar);
- $this->config->expects($this->never())
- ->method('setUserValue');
- $this->birthdayService->expects($this->never())
- ->method('syncUser');
- $this->plugin->httpPost($this->request, $this->response);
- }
- public function testHttpPostWrongRequest(): void {
- $calendarHome = $this->createMock(CalendarHome::class);
- $this->server->expects($this->once())
- ->method('getRequestUri')
- ->willReturn('/bar/foo');
- $this->server->tree->expects($this->once())
- ->method('getNodeForPath')
- ->with('/bar/foo')
- ->willReturn($calendarHome);
- $this->request->expects($this->once())
- ->method('getBodyAsString')
- ->willReturn('<nc:disable-birthday-calendar xmlns:nc="http://nextcloud.com/ns"/>');
- $this->request->expects($this->once())
- ->method('getUrl')
- ->willReturn('url_abc');
- $this->server->xml->expects($this->once())
- ->method('parse')
- ->willReturnCallback(function ($requestBody, $url, &$documentType): void {
- $documentType = '{http://nextcloud.com/ns}disable-birthday-calendar';
- });
- $this->config->expects($this->never())
- ->method('setUserValue');
- $this->birthdayService->expects($this->never())
- ->method('syncUser');
- $this->plugin->httpPost($this->request, $this->response);
- }
- public function testHttpPostNotAuthorized(): void {
- $calendarHome = $this->createMock(CalendarHome::class);
- $this->server->expects($this->once())
- ->method('getRequestUri')
- ->willReturn('/bar/foo');
- $this->server->tree->expects($this->once())
- ->method('getNodeForPath')
- ->with('/bar/foo')
- ->willReturn($calendarHome);
- $calendarHome->expects($this->once())
- ->method('getOwner')
- ->willReturn('principals/users/BlaBlub');
- $this->request->expects($this->once())
- ->method('getBodyAsString')
- ->willReturn('<nc:enable-birthday-calendar xmlns:nc="http://nextcloud.com/ns"/>');
- $this->request->expects($this->once())
- ->method('getUrl')
- ->willReturn('url_abc');
- $this->server->xml->expects($this->once())
- ->method('parse')
- ->willReturnCallback(function ($requestBody, $url, &$documentType): void {
- $documentType = '{http://nextcloud.com/ns}enable-birthday-calendar';
- });
- $this->user->expects(self::once())
- ->method('getUID')
- ->willReturn('admin');
- $this->server->httpResponse->expects($this->once())
- ->method('setStatus')
- ->with(403);
- $this->config->expects($this->never())
- ->method('setUserValue');
- $this->birthdayService->expects($this->never())
- ->method('syncUser');
- $result = $this->plugin->httpPost($this->request, $this->response);
- $this->assertEquals(false, $result);
- }
- public function testHttpPost(): void {
- $calendarHome = $this->createMock(CalendarHome::class);
- $this->server->expects($this->once())
- ->method('getRequestUri')
- ->willReturn('/bar/foo');
- $this->server->tree->expects($this->once())
- ->method('getNodeForPath')
- ->with('/bar/foo')
- ->willReturn($calendarHome);
- $calendarHome->expects($this->once())
- ->method('getOwner')
- ->willReturn('principals/users/BlaBlub');
- $this->request->expects($this->once())
- ->method('getBodyAsString')
- ->willReturn('<nc:enable-birthday-calendar xmlns:nc="http://nextcloud.com/ns"/>');
- $this->request->expects($this->once())
- ->method('getUrl')
- ->willReturn('url_abc');
- $this->server->xml->expects($this->once())
- ->method('parse')
- ->willReturnCallback(function ($requestBody, $url, &$documentType): void {
- $documentType = '{http://nextcloud.com/ns}enable-birthday-calendar';
- });
- $this->user->expects(self::exactly(3))
- ->method('getUID')
- ->willReturn('BlaBlub');
- $this->config->expects($this->once())
- ->method('setUserValue')
- ->with('BlaBlub', 'dav', 'generateBirthdayCalendar', 'yes');
- $this->birthdayService->expects($this->once())
- ->method('syncUser')
- ->with('BlaBlub');
- $this->server->httpResponse->expects($this->once())
- ->method('setStatus')
- ->with(204);
- $result = $this->plugin->httpPost($this->request, $this->response);
- $this->assertEquals(false, $result);
- }
- }
|