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
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\TwoFactorBackupCodes\Tests\Unit\BackgroundJob;
use OC\Authentication\TwoFactorAuth\Manager;
use OCA\TwoFactorBackupCodes\BackgroundJob\CheckBackupCodes;
use OCA\TwoFactorBackupCodes\BackgroundJob\RememberBackupCodesJob;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\Authentication\TwoFactorAuth\IRegistry;
use OCP\BackgroundJob\IJobList;
use OCP\IUser;
use OCP\IUserManager;
use PHPUnit\Framework\MockObject\MockObject;
use Test\TestCase;
class CheckBackupCodeTest extends TestCase {
private IUserManager&MockObject $userManager;
private IJobList&MockObject $jobList;
private IRegistry&MockObject $registry;
private Manager&MockObject $manager;
private IUser&MockObject $user;
private CheckBackupCodes $checkBackupCodes;
protected function setUp(): void {
parent::setUp();
$this->userManager = $this->createMock(IUserManager::class);
$this->jobList = $this->createMock(IJobList::class);
$this->registry = $this->createMock(IRegistry::class);
$this->manager = $this->createMock(Manager::class);
$this->user = $this->createMock(IUser::class);
$this->userManager->method('callForSeenUsers')
->willReturnCallback(function (\Closure $e): void {
$e($this->user);
});
$this->checkBackupCodes = new CheckBackupCodes(
$this->createMock(ITimeFactory::class),
$this->userManager,
$this->jobList,
$this->manager,
$this->registry
);
}
public function testRunAlreadyGenerated(): void {
$this->user->method('isEnabled')
->willReturn(true);
$this->registry->method('getProviderStates')
->with($this->user)
->willReturn(['backup_codes' => true]);
$this->manager->method('isTwoFactorAuthenticated')
->with($this->user)
->willReturn(true);
$this->jobList->expects($this->never())
->method($this->anything());
$this->invokePrivate($this->checkBackupCodes, 'run', [[]]);
}
public function testRun(): void {
$this->user->method('getUID')
->willReturn('myUID');
$this->user->method('isEnabled')
->willReturn(true);
$this->registry->expects($this->once())
->method('getProviderStates')
->with($this->user)
->willReturn([
'backup_codes' => false,
]);
$this->jobList->expects($this->once())
->method('add')
->with(
$this->equalTo(RememberBackupCodesJob::class),
['uid' => 'myUID']
);
$this->manager->method('isTwoFactorAuthenticated')
->with($this->user)
->willReturn(true);
$this->invokePrivate($this->checkBackupCodes, 'run', [[]]);
}
public function testRunDisabledUser(): void {
$this->user->method('getUID')
->willReturn('myUID');
$this->user->method('isEnabled')
->willReturn(false);
$this->registry->expects($this->never())
->method('getProviderStates')
->with($this->user);
$this->jobList->expects($this->never())
->method('add');
$this->invokePrivate($this->checkBackupCodes, 'run', [[]]);
}
public function testRunNoProviders(): void {
$this->user->method('isEnabled')
->willReturn(true);
$this->registry->expects($this->once())
->method('getProviderStates')
->with($this->user)
->willReturn([
'backup_codes' => false,
]);
$this->jobList->expects($this->never())
->method($this->anything());
$this->manager->method('isTwoFactorAuthenticated')
->with($this->user)
->willReturn(false);
$this->invokePrivate($this->checkBackupCodes, 'run', [[]]);
}
}
|