0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-07 09:59:46 +00:00
nextcloud_server/apps/user_ldap/tests/User_ProxyTest.php
Christoph Wurst 49dd79eabb
refactor: Add void return type to PHPUnit test methods
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2024-09-15 22:32:31 +02:00

90 lines
2.7 KiB
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\User_LDAP\Tests;
use OCA\User_LDAP\AccessFactory;
use OCA\User_LDAP\Helper;
use OCA\User_LDAP\ILDAPWrapper;
use OCA\User_LDAP\User\DeletedUsersIndex;
use OCA\User_LDAP\User_Proxy;
use OCA\User_LDAP\UserPluginManager;
use OCP\Notification\IManager as INotificationManager;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
use Test\TestCase;
class User_ProxyTest extends TestCase {
/** @var Helper|MockObject */
protected $helper;
/** @var ILDAPWrapper|MockObject */
private $ldapWrapper;
/** @var AccessFactory|MockObject */
private $accessFactory;
/** @var INotificationManager|MockObject */
private $notificationManager;
/** @var User_Proxy|MockObject */
private $proxy;
/** @var UserPluginManager|MockObject */
private $userPluginManager;
/** @var LoggerInterface|MockObject */
protected $logger;
/** @var DeletedUsersIndex|MockObject */
protected $deletedUsersIndex;
protected function setUp(): void {
parent::setUp();
$this->helper = $this->createMock(Helper::class);
$this->ldapWrapper = $this->createMock(ILDAPWrapper::class);
$this->accessFactory = $this->createMock(AccessFactory::class);
$this->notificationManager = $this->createMock(INotificationManager::class);
$this->userPluginManager = $this->createMock(UserPluginManager::class);
$this->logger = $this->createMock(LoggerInterface::class);
$this->deletedUsersIndex = $this->createMock(DeletedUsersIndex::class);
$this->proxy = $this->getMockBuilder(User_Proxy::class)
->setConstructorArgs([
$this->helper,
$this->ldapWrapper,
$this->accessFactory,
$this->notificationManager,
$this->userPluginManager,
$this->logger,
$this->deletedUsersIndex,
])
->setMethods(['handleRequest'])
->getMock();
}
public function testSetPassword(): void {
$this->proxy
->expects($this->once())
->method('handleRequest')
->with('MyUid', 'setPassword', ['MyUid', 'MyPassword'])
->willReturn(true);
$this->assertTrue($this->proxy->setPassword('MyUid', 'MyPassword'));
}
public function testSetDisplayName(): void {
$this->proxy
->expects($this->once())
->method('handleRequest')
->with('MyUid', 'setDisplayName', ['MyUid', 'MyPassword'])
->willReturn(true);
$this->assertTrue($this->proxy->setDisplayName('MyUid', 'MyPassword'));
}
public function testCreateUser(): void {
$this->proxy
->expects($this->once())
->method('handleRequest')
->with('MyUid', 'createUser', ['MyUid', 'MyPassword'])
->willReturn(true);
$this->assertTrue($this->proxy->createUser('MyUid', 'MyPassword'));
}
}