diff options
author | Georg Ehrke <developer@georgehrke.com> | 2017-10-31 17:06:01 +0100 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2017-11-09 15:14:50 +0100 |
commit | 556b2a2b6facb147295abebb18d1b391afa3f184 (patch) | |
tree | 5284d59d23f46b75d35fab326b2b706c2b8d4c8c /tests/lib | |
parent | 5d206eec69760afe33b9febcd3173dec2fab989d (diff) | |
download | nextcloud-server-556b2a2b6facb147295abebb18d1b391afa3f184.tar.gz nextcloud-server-556b2a2b6facb147295abebb18d1b391afa3f184.zip |
implement CalendarManager
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/Calendar/ManagerTest.php | 214 |
1 files changed, 214 insertions, 0 deletions
diff --git a/tests/lib/Calendar/ManagerTest.php b/tests/lib/Calendar/ManagerTest.php new file mode 100644 index 00000000000..657a50a3d88 --- /dev/null +++ b/tests/lib/Calendar/ManagerTest.php @@ -0,0 +1,214 @@ +<?php +/** + * @copyright 2017, Georg Ehrke <oc.list@georgehrke.com> + * + * @author Georg Ehrke <oc.list@georgehrke.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 <http://www.gnu.org/licenses/>. + * + */ + +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); + } + +} |