mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(tests): Fix tests with new LazyUser usage in DefaultShareProvider
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
7f6a891110
commit
de6bb33d99
1 changed files with 19 additions and 11 deletions
|
|
@ -38,31 +38,31 @@ class DefaultShareProviderTest extends \Test\TestCase {
|
|||
/** @var IDBConnection */
|
||||
protected $dbConn;
|
||||
|
||||
/** @var IUserManager | \PHPUnit\Framework\MockObject\MockObject */
|
||||
/** @var IUserManager | MockObject */
|
||||
protected $userManager;
|
||||
|
||||
/** @var IGroupManager | \PHPUnit\Framework\MockObject\MockObject */
|
||||
/** @var IGroupManager | MockObject */
|
||||
protected $groupManager;
|
||||
|
||||
/** @var IRootFolder | \PHPUnit\Framework\MockObject\MockObject */
|
||||
/** @var IRootFolder | MockObject */
|
||||
protected $rootFolder;
|
||||
|
||||
/** @var DefaultShareProvider */
|
||||
protected $provider;
|
||||
|
||||
/** @var \PHPUnit\Framework\MockObject\MockObject|IMailer */
|
||||
/** @var MockObject|IMailer */
|
||||
protected $mailer;
|
||||
|
||||
/** @var IFactory|MockObject */
|
||||
protected $l10nFactory;
|
||||
|
||||
/** @var \PHPUnit\Framework\MockObject\MockObject|IL10N */
|
||||
/** @var MockObject|IL10N */
|
||||
protected $l10n;
|
||||
|
||||
/** @var \PHPUnit\Framework\MockObject\MockObject|Defaults */
|
||||
/** @var MockObject|Defaults */
|
||||
protected $defaults;
|
||||
|
||||
/** @var \PHPUnit\Framework\MockObject\MockObject|IURLGenerator */
|
||||
/** @var MockObject|IURLGenerator */
|
||||
protected $urlGenerator;
|
||||
|
||||
/** @var ITimeFactory|MockObject */
|
||||
|
|
@ -1035,7 +1035,9 @@ class DefaultShareProviderTest extends \Test\TestCase {
|
|||
['shareOwner', $owner],
|
||||
['sharedBy', $initiator],
|
||||
]);
|
||||
$this->groupManager->method('getUserGroupIds')->with($user)->willReturn($groups);
|
||||
$this->groupManager
|
||||
->method('getUserGroupIds')
|
||||
->willReturnCallback(fn (IUser $user) => ($user->getUID() === 'sharedWith' ? $groups : []));
|
||||
|
||||
$file = $this->createMock(File::class);
|
||||
$this->rootFolder->method('getUserFolder')->with('shareOwner')->willReturnSelf();
|
||||
|
|
@ -1123,7 +1125,9 @@ class DefaultShareProviderTest extends \Test\TestCase {
|
|||
['shareOwner', $owner],
|
||||
['sharedBy', $initiator],
|
||||
]);
|
||||
$this->groupManager->method('getUserGroupIds')->with($user)->willReturn($groups);
|
||||
$this->groupManager
|
||||
->method('getUserGroupIds')
|
||||
->willReturnCallback(fn (IUser $user) => ($user->getUID() === 'user' ? $groups : []));
|
||||
|
||||
$file = $this->createMock(File::class);
|
||||
$this->rootFolder->method('getUserFolder')->with('shareOwner')->willReturnSelf();
|
||||
|
|
@ -1206,7 +1210,9 @@ class DefaultShareProviderTest extends \Test\TestCase {
|
|||
['user1', $user1],
|
||||
]);
|
||||
|
||||
$this->groupManager->method('getUserGroupIds')->with($user0)->willReturn(['group0']);
|
||||
$this->groupManager
|
||||
->method('getUserGroupIds')
|
||||
->willReturnCallback(fn (IUser $user) => ($user->getUID() === 'user0' ? ['group0'] : []));
|
||||
|
||||
$node = $this->createMock(Folder::class);
|
||||
$node->method('getId')->willReturn($fileId2);
|
||||
|
|
@ -1283,7 +1289,9 @@ class DefaultShareProviderTest extends \Test\TestCase {
|
|||
['shareOwner', $owner],
|
||||
['sharedBy', $initiator],
|
||||
]);
|
||||
$this->groupManager->method('getUserGroupIds')->with($user)->willReturn($groups);
|
||||
$this->groupManager
|
||||
->method('getUserGroupIds')
|
||||
->willReturnCallback(fn (IUser $user) => ($user->getUID() === 'sharedWith' ? $groups : []));
|
||||
|
||||
$share = $this->provider->getSharedWith('sharedWith', $shareType, null, 1, 0);
|
||||
$this->assertCount(0, $share);
|
||||
|
|
|
|||
Loading…
Reference in a new issue