123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <?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);
- }
- }
|