aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Authentication/Listeners/RemoteWipeEmailListenerTest.php
blob: 1c45add4e3184b233c76fb5c7325be2f786f2060 (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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<?php

declare(strict_types=1);

/**
 * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

namespace lib\Authentication\Listeners;

use Exception;
use OC\Authentication\Events\RemoteWipeFinished;
use OC\Authentication\Events\RemoteWipeStarted;
use OC\Authentication\Listeners\RemoteWipeEmailListener;
use OC\Authentication\Token\IToken;
use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventListener;
use OCP\IL10N;
use OCP\IUser;
use OCP\IUserManager;
use OCP\L10N\IFactory;
use OCP\Mail\IMailer;
use OCP\Mail\IMessage;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
use Test\TestCase;

class RemoteWipeEmailListenerTest extends TestCase {
	/** @var IMailer|MockObject */
	private $mailer;

	/** @var IUserManager|MockObject */
	private $userManager;

	/** @var IFactory|MockObject */
	private $l10nFactory;

	/** @var IL10N|MockObject */
	private $l10n;

	/** @var LoggerInterface|MockObject */
	private $logger;

	/** @var IEventListener */
	private $listener;

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

		$this->mailer = $this->createMock(IMailer::class);
		$this->userManager = $this->createMock(IUserManager::class);
		$this->l10nFactory = $this->createMock(IFactory::class);
		$this->l10n = $this->createMock(IL10N::class);
		$this->logger = $this->createMock(LoggerInterface::class);

		$this->l10nFactory->method('get')->with('core')->willReturn($this->l10n);
		$this->l10n->method('t')->willReturnArgument(0);

		$this->listener = new RemoteWipeEmailListener(
			$this->mailer,
			$this->userManager,
			$this->l10nFactory,
			$this->logger
		);
	}


	public function testHandleUnrelated(): void {
		$event = new Event();
		$this->mailer->expects($this->never())->method('send');

		$this->listener->handle($event);
	}

	public function testHandleRemoteWipeStartedInvalidUser(): void {
		/** @var IToken|MockObject $token */
		$token = $this->createMock(IToken::class);
		$event = new RemoteWipeStarted($token);
		$token->method('getUID')->willReturn('nope');
		$this->userManager->expects($this->once())
			->method('get')
			->with('nope')
			->willReturn(null);
		$this->mailer->expects($this->never())->method('send');

		$this->listener->handle($event);
	}

	public function testHandleRemoteWipeStartedNoEmailSet(): void {
		/** @var IToken|MockObject $token */
		$token = $this->createMock(IToken::class);
		$event = new RemoteWipeStarted($token);
		$token->method('getUID')->willReturn('nope');
		$user = $this->createMock(IUser::class);
		$this->userManager->expects($this->once())
			->method('get')
			->with('nope')
			->willReturn($user);
		$user->method('getEMailAddress')->willReturn(null);
		$this->mailer->expects($this->never())->method('send');

		$this->listener->handle($event);
	}

	public function testHandleRemoteWipeStartedTransmissionError(): void {
		/** @var IToken|MockObject $token */
		$token = $this->createMock(IToken::class);
		$event = new RemoteWipeStarted($token);
		$token->method('getUID')->willReturn('nope');
		$user = $this->createMock(IUser::class);
		$this->userManager->expects($this->once())
			->method('get')
			->with('nope')
			->willReturn($user);
		$user->method('getEMailAddress')->willReturn('user@domain.org');
		$this->mailer->expects($this->once())
			->method('send')
			->willThrowException(new Exception());
		$this->logger->expects($this->once())
			->method('error');

		$this->listener->handle($event);
	}

	public function testHandleRemoteWipeStarted(): void {
		/** @var IToken|MockObject $token */
		$token = $this->createMock(IToken::class);
		$event = new RemoteWipeStarted($token);
		$token->method('getUID')->willReturn('nope');
		$user = $this->createMock(IUser::class);
		$this->userManager->expects($this->once())
			->method('get')
			->with('nope')
			->willReturn($user);
		$user->method('getEMailAddress')->willReturn('user@domain.org');
		$message = $this->createMock(IMessage::class);
		$this->mailer->expects($this->once())
			->method('createMessage')
			->willReturn($message);
		$message->expects($this->once())
			->method('setTo')
			->with($this->equalTo(['user@domain.org']));
		$this->mailer->expects($this->once())
			->method('send')
			->with($message);

		$this->listener->handle($event);
	}

	public function testHandleRemoteWipeFinishedInvalidUser(): void {
		/** @var IToken|MockObject $token */
		$token = $this->createMock(IToken::class);
		$event = new RemoteWipeFinished($token);
		$token->method('getUID')->willReturn('nope');
		$this->userManager->expects($this->once())
			->method('get')
			->with('nope')
			->willReturn(null);
		$this->mailer->expects($this->never())->method('send');

		$this->listener->handle($event);
	}

	public function testHandleRemoteWipeFinishedNoEmailSet(): void {
		/** @var IToken|MockObject $token */
		$token = $this->createMock(IToken::class);
		$event = new RemoteWipeFinished($token);
		$token->method('getUID')->willReturn('nope');
		$user = $this->createMock(IUser::class);
		$this->userManager->expects($this->once())
			->method('get')
			->with('nope')
			->willReturn($user);
		$user->method('getEMailAddress')->willReturn(null);
		$this->mailer->expects($this->never())->method('send');

		$this->listener->handle($event);
	}

	public function testHandleRemoteWipeFinishedTransmissionError(): void {
		/** @var IToken|MockObject $token */
		$token = $this->createMock(IToken::class);
		$event = new RemoteWipeFinished($token);
		$token->method('getUID')->willReturn('nope');
		$user = $this->createMock(IUser::class);
		$this->userManager->expects($this->once())
			->method('get')
			->with('nope')
			->willReturn($user);
		$user->method('getEMailAddress')->willReturn('user@domain.org');
		$this->mailer->expects($this->once())
			->method('send')
			->willThrowException(new Exception());
		$this->logger->expects($this->once())
			->method('error');

		$this->listener->handle($event);
	}

	public function testHandleRemoteWipeFinished(): void {
		/** @var IToken|MockObject $token */
		$token = $this->createMock(IToken::class);
		$event = new RemoteWipeFinished($token);
		$token->method('getUID')->willReturn('nope');
		$user = $this->createMock(IUser::class);
		$this->userManager->expects($this->once())
			->method('get')
			->with('nope')
			->willReturn($user);
		$user->method('getEMailAddress')->willReturn('user@domain.org');
		$message = $this->createMock(IMessage::class);
		$this->mailer->expects($this->once())
			->method('createMessage')
			->willReturn($message);
		$message->expects($this->once())
			->method('setTo')
			->with($this->equalTo(['user@domain.org']));
		$this->mailer->expects($this->once())
			->method('send')
			->with($message);

		$this->listener->handle($event);
	}
}