* * @author Georg Ehrke * * @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 . * */ namespace Test\Calendar; use \OC\Calendar\Manager; use OCP\Calendar\ICalendar; use \Test\TestCase; class ManagerTest extends TestCase { /** @var Manager */ private $manager; protected function setUp() { parent::setUp(); $this->manager = new Manager(); } /** * @dataProvider searchProvider */ public function testSearch($search1, $search2, $expected) { /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar1 */ $calendar1 = $this->createMock(ICalendar::class); $calendar1->method('getKey')->will($this->returnValue('simple:1')); $calendar1->expects($this->once()) ->method('search') ->with('', [], [], null, null) ->will($this->returnValue($search1)); /** @var ICalendar | PHPUnit_Framework_MockObject_MockObject $calendar2 */ $calendar2 = $this->createMock(ICalendar::class); $calendar2->method('getKey')->will($this->returnValue('simple:2')); $calendar2->expects($this->once()) ->method('search') ->with('', [], [], null, null) ->will($this->returnValue($search2)); $this->manager->registerCalendar($calendar1); $this->manager->registerCalendar($calendar2); $result = $this->manager->search(''); $this->assertEquals($expected, $result); } /** * @dataProvider searchProvider */ public function testSearchOptions($search1, $search2, $expected) { /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar1 */ $calendar1 = $this->createMock(ICalendar::class); $calendar1->method('getKey')->will($this->returnValue('simple:1')); $calendar1->expects($this->once()) ->method('search') ->with('searchTerm', ['SUMMARY', 'DESCRIPTION'], ['timerange' => ['start' => null, 'end' => null]], 5, 20) ->will($this->returnValue($search1)); /** @var ICalendar | PHPUnit_Framework_MockObject_MockObject $calendar2 */ $calendar2 = $this->createMock(ICalendar::class); $calendar2->method('getKey')->will($this->returnValue('simple:2')); $calendar2->expects($this->once()) ->method('search') ->with('searchTerm', ['SUMMARY', 'DESCRIPTION'], ['timerange' => ['start' => null, 'end' => null]], 5, 20) ->will($this->returnValue($search2)); $this->manager->registerCalendar($calendar1); $this->manager->registerCalendar($calendar2); $result = $this->manager->search('searchTerm', ['SUMMARY', 'DESCRIPTION'], ['timerange' => ['start' => null, 'end' => null]], 5, 20); $this->assertEquals($expected, $result); } public function searchProvider() { $search1 = [ [ 'id' => 1, 'data' => 'foobar', ], [ 'id' => 2, 'data' => 'barfoo', ] ]; $search2 = [ [ 'id' => 3, 'data' => 'blablub', ], [ 'id' => 4, 'data' => 'blubbla', ] ]; $expected = [ [ 'id' => 1, 'data' => 'foobar', 'calendar-key' => 'simple:1', ], [ 'id' => 2, 'data' => 'barfoo', 'calendar-key' => 'simple:1', ], [ 'id' => 3, 'data' => 'blablub', 'calendar-key' => 'simple:2', ], [ 'id' => 4, 'data' => 'blubbla', 'calendar-key' => 'simple:2', ] ]; return [ [ $search1, $search2, $expected ] ]; } public function testRegisterUnregister() { /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar1 */ $calendar1 = $this->createMock(ICalendar::class); $calendar1->method('getKey')->will($this->returnValue('key1')); /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar2 */ $calendar2 = $this->createMock(ICalendar::class); $calendar2->method('getKey')->will($this->returnValue('key2')); $this->manager->registerCalendar($calendar1); $this->manager->registerCalendar($calendar2); $result = $this->manager->getCalendars(); $this->assertCount(2, $result); $this->assertContains($calendar1, $result); $this->assertContains($calendar2, $result); $this->manager->unregisterCalendar($calendar1); $result = $this->manager->getCalendars(); $this->assertCount(1, $result); $this->assertContains($calendar2, $result); } public function testGetCalendars() { /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar1 */ $calendar1 = $this->createMock(ICalendar::class); $calendar1->method('getKey')->will($this->returnValue('key1')); /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar2 */ $calendar2 = $this->createMock(ICalendar::class); $calendar2->method('getKey')->will($this->returnValue('key2')); $this->manager->registerCalendar($calendar1); $this->manager->registerCalendar($calendar2); $result = $this->manager->getCalendars(); $this->assertCount(2, $result); $this->assertContains($calendar1, $result); $this->assertContains($calendar2, $result); $this->manager->clear(); $result = $this->manager->getCalendars(); $this->assertCount(0, $result); } public function testEnabledIfNot() { $isEnabled = $this->manager->isEnabled(); $this->assertFalse($isEnabled); } public function testIfEnabledIfSo() { /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar */ $calendar = $this->createMock(ICalendar::class); $this->manager->registerCalendar($calendar); $isEnabled = $this->manager->isEnabled(); $this->assertTrue($isEnabled); } }