-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Expand file tree
/
Copy pathRemoveUserTest.php
More file actions
173 lines (136 loc) · 4.75 KB
/
RemoveUserTest.php
File metadata and controls
173 lines (136 loc) · 4.75 KB
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
<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\Core\Command\Group;
use OC\Core\Command\Group\RemoveUser;
use OCP\IGroup;
use OCP\IGroupManager;
use OCP\IUser;
use OCP\IUserManager;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Test\TestCase;
class RemoveUserTest extends TestCase {
/** @var IGroupManager|\PHPUnit\Framework\MockObject\MockObject */
private $groupManager;
/** @var IUserManager|\PHPUnit\Framework\MockObject\MockObject */
private $userManager;
/** @var RemoveUser */
private $command;
/** @var InputInterface|\PHPUnit\Framework\MockObject\MockObject */
private $input;
/** @var OutputInterface|\PHPUnit\Framework\MockObject\MockObject */
private $output;
#[\Override]
protected function setUp(): void {
parent::setUp();
$this->groupManager = $this->createMock(IGroupManager::class);
$this->userManager = $this->createMock(IUserManager::class);
$this->command = new RemoveUser($this->userManager, $this->groupManager);
$this->output = $this->createMock(OutputInterface::class);
}
protected function configureInput(array|string $returnGroup, array|string $returnUser): void {
$this->input = $this->createMock(InputInterface::class);
$this->input->method('getArgument')
->willReturnCallback(function ($arg) use ($returnGroup, $returnUser) {
if ($arg === 'group') {
return $returnGroup;
}
if ($arg === 'user') {
return $returnUser;
}
throw new \Exception();
});
}
public function testNoGroup(): void {
$this->configureInput('myGroup', 'myUser');
$this->groupManager->method('get')
->with('myGroup')
->willReturn(null);
$this->output->expects($this->once())
->method('writeln')
->with('<error>group not found</error>');
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
}
public function testNoUser(): void {
$this->configureInput('myGroup', 'myUser');
$group = $this->createMock(IGroup::class);
$this->groupManager->method('get')
->with('myGroup')
->willReturn($group);
$this->userManager->method('get')
->with('myUser')
->willReturn(null);
$this->output->expects($this->once())
->method('writeln')
->with('<error>user myUser not found</error>');
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
}
public function testRemove(): void {
$this->configureInput('myGroup', 'myUser');
$group = $this->createMock(IGroup::class);
$this->groupManager->method('get')
->with('myGroup')
->willReturn($group);
$user = $this->createMock(IUser::class);
$this->userManager->method('get')
->with('myUser')
->willReturn($user);
$group->expects($this->once())
->method('removeUser')
->with($user);
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
}
public function testRemoveMultiple(): void {
$this->configureInput('myGroup', ['myUser', 'myOtherUser']);
$group = $this->createMock(IGroup::class);
$this->groupManager->method('get')
->with('myGroup')
->willReturn($group);
$user1 = $this->createMock(IUser::class);
$user2 = $this->createMock(IUser::class);
$this->userManager->method('get')
->willReturnMap([
['myUser', $user1],
['myOtherUser', $user2],
]);
$group->expects($this->exactly(2))
->method('removeUser')
->with($this->callback(static fn (IUser $user): bool => in_array($user, [$user1, $user2], true)));
$this->output->expects($this->exactly(2))
->method('writeln')
->with($this->callback(static fn (string $message): bool => in_array($message,
[
'<info>user myUser removed</info>',
'<info>user myOtherUser removed</info>',
], true)));
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
}
public function testRemoveMultiplePartialSuccess(): void {
$this->configureInput('myGroup', ['myUser', 'myOtherUser']);
$group = $this->createMock(IGroup::class);
$this->groupManager->method('get')
->with('myGroup')
->willReturn($group);
$user = $this->createMock(IUser::class);
$this->userManager->method('get')
->willReturnMap([
['myUser', $user],
['myOtherUser', null],
]);
$group->expects($this->once())
->method('removeUser')
->with($user);
$this->output->expects($this->exactly(3))
->method('writeln')
->with($this->callback(static fn (string $message): bool => in_array($message,
[
'<info>user myUser removed</info>',
'<error>user myOtherUser not found</error>',
'<error>Some users were not found, all others where removed from the group.</error>',
], true)));
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
}
}