aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/unit/BackgroundJob/UserStatusAutomationTest.php
blob: 59438c7cd28e4625d2cb6743a6f77f2221c57a89 (plain)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<?php

declare(strict_types=1);

/**
 * @copyright Copyright (c) 2023 Joas Schilling <coding@schilljs.com>
 *
 * @author Joas Schilling <coding@schilljs.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\BackgroundJob;

use OCA\DAV\BackgroundJob\UserStatusAutomation;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\BackgroundJob\IJobList;
use OCP\IConfig;
use OCP\UserStatus\IManager;
use OCP\UserStatus\IUserStatus;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
use Test\TestCase;

/**
 * @group DB
 */
class UserStatusAutomationTest extends TestCase {

	protected MockObject|ITimeFactory $time;
	protected MockObject|IJobList $jobList;
	protected MockObject|LoggerInterface $logger;
	protected MockObject|IManager $statusManager;
	protected MockObject|IConfig $config;

	protected function setUp(): void {
		parent::setUp();

		$this->time = $this->createMock(ITimeFactory::class);
		$this->jobList = $this->createMock(IJobList::class);
		$this->logger = $this->createMock(LoggerInterface::class);
		$this->statusManager = $this->createMock(IManager::class);
		$this->config = $this->createMock(IConfig::class);

	}

	protected function getAutomationMock(array $methods): MockObject|UserStatusAutomation {
		if (empty($methods)) {
			return new UserStatusAutomation(
				$this->time,
				\OC::$server->getDatabaseConnection(),
				$this->jobList,
				$this->logger,
				$this->statusManager,
				$this->config,
			);
		}

		return $this->getMockBuilder(UserStatusAutomation::class)
			->setConstructorArgs([
				$this->time,
				\OC::$server->getDatabaseConnection(),
				$this->jobList,
				$this->logger,
				$this->statusManager,
				$this->config,
			])
			->setMethods($methods)
			->getMock();
	}

	public function dataRun(): array {
		return [
			['20230217', '2023-02-24 10:49:36.613834', true],
			['20230224', '2023-02-24 10:49:36.613834', true],
			['20230217', '2023-02-24 13:58:24.479357', false],
			['20230224', '2023-02-24 13:58:24.479357', false],
		];
	}

	/**
	 * @dataProvider dataRun
	 */
	public function testRun(string $ruleDay, string $currentTime, bool $isAvailable): void {
		$this->config->method('getUserValue')
			->with('user', 'dav', 'user_status_automation', 'no')
			->willReturn('yes');

		$this->time->method('getDateTime')
			->willReturn(new \DateTime($currentTime, new \DateTimeZone('UTC')));

		$automation = $this->getAutomationMock(['getAvailabilityFromPropertiesTable']);
		$automation->method('getAvailabilityFromPropertiesTable')
			->with('user')
			->willReturn('BEGIN:VCALENDAR
PRODID:Nextcloud DAV app
BEGIN:VTIMEZONE
TZID:Europe/Berlin
BEGIN:STANDARD
TZNAME:CET
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
DTSTART:19701025T030000
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU
END:STANDARD
BEGIN:DAYLIGHT
TZNAME:CEST
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
DTSTART:19700329T020000
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU
END:DAYLIGHT
END:VTIMEZONE
BEGIN:VAVAILABILITY
BEGIN:AVAILABLE
DTSTART;TZID=Europe/Berlin:' . $ruleDay . 'T090000
DTEND;TZID=Europe/Berlin:' . $ruleDay . 'T170000
UID:3e6feeec-8e00-4265-b822-b73174e8b39f
RRULE:FREQ=WEEKLY;BYDAY=TH
END:AVAILABLE
BEGIN:AVAILABLE
DTSTART;TZID=Europe/Berlin:' . $ruleDay . 'T090000
DTEND;TZID=Europe/Berlin:' . $ruleDay . 'T120000
UID:8a634e99-07cf-443b-b480-005a0e1db323
RRULE:FREQ=WEEKLY;BYDAY=FR
END:AVAILABLE
END:VAVAILABILITY
END:VCALENDAR');

		if ($isAvailable) {
			$this->statusManager->expects($this->once())
				->method('revertUserStatus')
				->with('user', IUserStatus::MESSAGE_AVAILABILITY, IUserStatus::DND);
		} else {
			$this->statusManager->expects($this->once())
				->method('revertUserStatus')
				->with('user', IUserStatus::MESSAGE_CALL, IUserStatus::AWAY);
			$this->statusManager->expects($this->once())
				->method('setUserStatus')
				->with('user', IUserStatus::MESSAGE_AVAILABILITY, IUserStatus::DND, true);
		}

		self::invokePrivate($automation, 'run', [['userId' => 'user']]);
	}

	public function testRunNoMoreAvailabilityDefined(): void {
		$this->config->method('getUserValue')
			->with('user', 'dav', 'user_status_automation', 'no')
			->willReturn('yes');

		$this->time->method('getDateTime')
			->willReturn(new \DateTime('2023-02-24 13:58:24.479357', new \DateTimeZone('UTC')));

		$automation = $this->getAutomationMock(['getAvailabilityFromPropertiesTable']);
		$automation->method('getAvailabilityFromPropertiesTable')
			->with('user')
			->willReturn('BEGIN:VCALENDAR
PRODID:Nextcloud DAV app
BEGIN:VTIMEZONE
TZID:Europe/Berlin
BEGIN:STANDARD
TZNAME:CET
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
DTSTART:19701025T030000
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU
END:STANDARD
BEGIN:DAYLIGHT
TZNAME:CEST
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
DTSTART:19700329T020000
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU
END:DAYLIGHT
END:VTIMEZONE
BEGIN:VAVAILABILITY
END:VAVAILABILITY
END:VCALENDAR');

		$this->statusManager->expects($this->once())
			->method('revertUserStatus')
			->with('user', IUserStatus::MESSAGE_AVAILABILITY, IUserStatus::DND);

		$this->jobList->expects($this->once())
			->method('remove')
			->with(UserStatusAutomation::class, ['userId' => 'user']);

		self::invokePrivate($automation, 'run', [['userId' => 'user']]);
	}
}