Skip to content

Commit a6ee935

Browse files
committed
test: adjust tests to new tag rename rule
Signed-off-by: Robin Appelman <robin@icewind.nl>
1 parent ed051b0 commit a6ee935

1 file changed

Lines changed: 21 additions & 14 deletions

File tree

apps/dav/tests/unit/SystemTag/SystemTagNodeTest.php

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -70,36 +70,43 @@ public static function tagNodeProvider(): array {
7070
[
7171
true,
7272
new SystemTag('1', 'Original', true, true),
73-
['Renamed', true, true, null]
73+
['Renamed', true, true, null],
74+
true,
7475
],
7576
[
7677
true,
7778
new SystemTag('1', 'Original', true, true),
78-
['Original', false, false, null]
79+
['Original', false, false, null],
80+
true,
7981
],
8082
// non-admin
8183
[
82-
// renaming allowed
84+
// renaming not allowed
8385
false,
8486
new SystemTag('1', 'Original', true, true),
85-
['Rename', true, true, '0082c9']
87+
['Renamed', true, true, null],
88+
false,
8689
],
8790
];
8891
}
8992

9093
#[\PHPUnit\Framework\Attributes\DataProvider(methodName: 'tagNodeProvider')]
91-
public function testUpdateTag(bool $isAdmin, ISystemTag $originalTag, array $changedArgs): void {
92-
$this->tagManager->expects($this->once())
93-
->method('canUserSeeTag')
94+
public function testUpdateTag(bool $isAdmin, ISystemTag $originalTag, $changedArgs, $allowed): void {
95+
$this->tagManager->method('canUserSeeTag')
9496
->with($originalTag)
9597
->willReturn($originalTag->isUserVisible() || $isAdmin);
96-
$this->tagManager->expects($this->once())
97-
->method('canUserAssignTag')
98+
$this->tagManager->method('canUserAssignTag')
9899
->with($originalTag)
99100
->willReturn($originalTag->isUserAssignable() || $isAdmin);
100-
$this->tagManager->expects($this->once())
101-
->method('updateTag')
102-
->with(1, $changedArgs[0], $changedArgs[1], $changedArgs[2], $changedArgs[3]);
101+
if ($allowed) {
102+
$this->tagManager->expects($this->once())
103+
->method('updateTag')
104+
->with(1, $changedArgs[0], $changedArgs[1], $changedArgs[2], $changedArgs[3]);
105+
} else {
106+
$this->expectException(\Sabre\DAV\Exception\Forbidden::class);
107+
$this->tagManager->expects($this->never())
108+
->method('updateTag');
109+
}
103110
$this->getTagNode($isAdmin, $originalTag)
104111
->update($changedArgs[0], $changedArgs[1], $changedArgs[2], $changedArgs[3]);
105112
}
@@ -186,7 +193,7 @@ public function testUpdateTagAlreadyExists(): void {
186193
->method('updateTag')
187194
->with(1, 'Renamed', true, true)
188195
->willThrowException(new TagAlreadyExistsException());
189-
$this->getTagNode(false, $tag)->update('Renamed', true, true, null);
196+
$this->getTagNode(true, $tag)->update('Renamed', true, true, null);
190197
}
191198

192199
public function testUpdateTagNotFound(): void {
@@ -205,7 +212,7 @@ public function testUpdateTagNotFound(): void {
205212
->method('updateTag')
206213
->with(1, 'Renamed', true, true)
207214
->willThrowException(new TagNotFoundException());
208-
$this->getTagNode(false, $tag)->update('Renamed', true, true, null);
215+
$this->getTagNode(true, $tag)->update('Renamed', true, true, null);
209216
}
210217

211218
#[\PHPUnit\Framework\Attributes\DataProvider(methodName: 'adminFlagProvider')]

0 commit comments

Comments
 (0)