1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<?php
/**
* @copyright Copyright (c) 2017 Georg Ehrke <oc.list@georgehrke.com>
*
* @author Georg Ehrke <georg@owncloud.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 OCA\DAV\Tests\unit\CalDAV\Search;
use OCA\DAV\CalDAV\CalendarHome;
use OCA\DAV\CalDAV\Search\SearchPlugin;
use OCA\DAV\CalDAV\Search\Xml\Request\CalendarSearchReport;
use Test\TestCase;
class SearchPluginTest extends TestCase {
protected $server;
/** @var \OCA\DAV\CalDAV\Search\SearchPlugin $plugin */
protected $plugin;
public function setUp() {
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->plugin = new SearchPlugin();
$this->plugin->initialize($this->server);
}
public function testGetFeatures() {
$this->assertEquals(['nc-calendar-search'], $this->plugin->getFeatures());
}
public function testGetName() {
$this->assertEquals('nc-calendar-search', $this->plugin->getPluginName());
}
public function testInitialize() {
$server = $this->createMock(\Sabre\DAV\Server::class);
$plugin = new SearchPlugin();
$server->expects($this->at(0))
->method('on')
->with('report', [$plugin, 'report']);
$plugin->initialize($server);
$this->assertEquals(
$server->xml->elementMap['{http://nextcloud.com/ns}calendar-search'],
'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport'
);
}
public function testReportUnknown() {
$result = $this->plugin->report('{urn:ietf:params:xml:ns:caldav}calendar-query', 'REPORT', null);
$this->assertEquals($result, null);
$this->assertNotEquals($this->server->transactionType, 'report-nc-calendar-search');
}
public function testReport() {
$report = $this->createMock(CalendarSearchReport::class);
$report->filters = [];
$calendarHome = $this->createMock(CalendarHome::class);
$this->server->expects($this->at(0))
->method('getRequestUri')
->with()
->will($this->returnValue('/re/quest/u/r/i'));
$this->server->tree->expects($this->at(0))
->method('getNodeForPath')
->with('/re/quest/u/r/i')
->will($this->returnValue($calendarHome));
$this->server->expects($this->at(1))
->method('getHTTPDepth')
->with(2)
->will($this->returnValue(2));
$calendarHome->expects($this->at(0))
->method('calendarSearch')
->will($this->returnValue([]));
$this->plugin->report('{http://nextcloud.com/ns}calendar-search', $report, '');
}
public function testSupportedReportSetNoCalendarHome() {
$this->server->tree->expects($this->once())
->method('getNodeForPath')
->with('/foo/bar')
->will($this->returnValue(null));
$reports = $this->plugin->getSupportedReportSet('/foo/bar');
$this->assertEquals([], $reports);
}
public function testSupportedReportSet() {
$calendarHome = $this->createMock(CalendarHome::class);
$this->server->tree->expects($this->once())
->method('getNodeForPath')
->with('/bar/foo')
->will($this->returnValue($calendarHome));
$reports = $this->plugin->getSupportedReportSet('/bar/foo');
$this->assertEquals([
'{http://nextcloud.com/ns}calendar-search'
], $reports);
}
}
|