user_saml/tests/unit/UserBackendTest.php
Arthur Schiwon b13a9983e2
adjust to recent merged changes
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2021-01-26 19:03:03 +01:00

291 lines
8.5 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\User_SAML\Tests\Settings;
use OCA\User_SAML\SAMLSettings;
use OCA\User_SAML\UserBackend;
use OCA\User_SAML\UserData;
use OCP\IConfig;
use OCP\IDBConnection;
use OCP\IGroup;
use OCP\IGroupManager;
use OCP\ILogger;
use OCP\ISession;
use OCP\IURLGenerator;
use OCP\IUser;
use OCP\IUserManager;
use Test\TestCase;
class UserBackendTest extends TestCase {
/** @var UserData|\PHPUnit\Framework\MockObject\MockObject */
private $userData;
/** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
private $config;
/** @var IURLGenerator|\PHPUnit_Framework_MockObject_MockObject */
private $urlGenerator;
/** @var ISession|\PHPUnit_Framework_MockObject_MockObject */
private $session;
/** @var IDBConnection|\PHPUnit_Framework_MockObject_MockObject */
private $db;
/** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
private $userManager;
/** @var IGroupManager|\PHPUnit_Framework_MockObject_MockObject */
private $groupManager;
/** @var UserBackend|\PHPUnit_Framework_MockObject_MockObject */
private $userBackend;
/** @var \PHPUnit_Framework_MockObject_MockObject|SAMLSettings */
private $SAMLSettings;
/** @var \PHPUnit_Framework_MockObject_MockObject|ILogger */
private $logger;
protected function setUp(): void {
parent::setUp();
$this->config = $this->createMock(IConfig::class);
$this->urlGenerator = $this->createMock(IURLGenerator::class);
$this->session = $this->createMock(ISession::class);
$this->db = $this->createMock(IDBConnection::class);
$this->userManager = $this->createMock(IUserManager::class);
$this->groupManager = $this->createMock(IGroupManager::class);
$this->SAMLSettings = $this->getMockBuilder(SAMLSettings::class)->disableOriginalConstructor()->getMock();
$this->logger = $this->createMock(ILogger::class);
$this->userData = $this->createMock(UserData::class);
}
public function getMockedBuilder(array $mockedFunctions = []) {
if($mockedFunctions !== []) {
$this->userBackend = $this->getMockBuilder(UserBackend::class)
->setConstructorArgs([
$this->config,
$this->urlGenerator,
$this->session,
$this->db,
$this->userManager,
$this->groupManager,
$this->SAMLSettings,
$this->logger,
$this->userData,
])
->setMethods($mockedFunctions)
->getMock();
} else {
$this->userBackend = new UserBackend(
$this->config,
$this->urlGenerator,
$this->session,
$this->db,
$this->userManager,
$this->groupManager,
$this->SAMLSettings,
$this->logger,
$this->userData
);
}
}
public function testGetBackendName() {
$this->getMockedBuilder();
$this->assertSame('user_saml', $this->userBackend->getBackendName());
}
public function testUpdateAttributesWithoutAttributes() {
$this->getMockedBuilder(['getDisplayName']);
/** @var IUser|\PHPUnit_Framework_MockObject_MockObject $user */
$user = $this->createMock(IUser::class);
$this->userManager
->expects($this->once())
->method('get')
->with('ExistingUser')
->willReturn($user);
$user
->expects($this->once())
->method('getEMailAddress')
->willReturn(null);
$user
->expects($this->never())
->method('setEMailAddress');
$this->userBackend
->expects($this->once())
->method('getDisplayName')
->with('ExistingUser')
->willReturn('');
$this->userBackend->updateAttributes('ExistingUser', []);
}
public function testUpdateAttributesWithoutValidUser() {
$this->getMockedBuilder();
$this->userManager
->expects($this->once())
->method('get')
->with('ExistingUser')
->willReturn(null);
$this->userBackend->updateAttributes('ExistingUser', []);
}
public function testUpdateAttributes() {
$this->getMockedBuilder(['getDisplayName', 'setDisplayName']);
/** @var IUser|\PHPUnit_Framework_MockObject_MockObject $user */
$user = $this->createMock(IUser::class);
$groupA = $this->createMock(IGroup::class);
$groupC = $this->createMock(IGroup::class);
$this->config
->expects($this->at(0))
->method('getAppValue')
->with('user_saml', 'saml-attribute-mapping-email_mapping', '')
->willReturn('email');
$this->config
->expects($this->at(1))
->method('getAppValue')
->with('user_saml', 'saml-attribute-mapping-displayName_mapping', '')
->willReturn('displayname');
$this->config
->expects($this->at(2))
->method('getAppValue')
->with('user_saml', 'saml-attribute-mapping-quota_mapping', '')
->willReturn('quota');
$this->config
->expects($this->at(3))
->method('getAppValue')
->with('user_saml', 'saml-attribute-mapping-group_mapping', '')
->willReturn('groups');
$this->userManager
->expects($this->once())
->method('get')
->with('ExistingUser')
->willReturn($user);
$user
->expects($this->once())
->method('getEMailAddress')
->willReturn('old@example.com');
$user
->expects($this->once())
->method('setEMailAddress')
->with('new@example.com');
$user
->expects($this->once())
->method('setQuota')
->with('50MB');
$this->userBackend
->expects($this->once())
->method('getDisplayName')
->with('ExistingUser')
->willReturn('');
$this->userBackend
->expects($this->once())
->method('setDisplayName')
->with('ExistingUser', 'New Displayname');
$this->groupManager
->expects($this->once())
->method('getUserGroupIds')
->with($user)
->willReturn(['groupA', 'groupB']);
$this->groupManager
->expects($this->once())
->method('groupExists')
->with('groupC')
->willReturn(false);
$this->groupManager
->expects($this->once())
->method('createGroup')
->with('groupC');
// updateAttributes first adds new groups, then removes old ones
// In this test groupA is removed from the user, groupB is unchanged
// and groupC is added
$this->groupManager
->expects($this->exactly(2))
->method('get')
->withConsecutive(['groupC'], ['groupA'])
->willReturnOnConsecutiveCalls($groupC, $groupA);
$groupA
->expects($this->once())
->method('removeUser')
->with($user);
$groupC
->expects($this->once())
->method('addUser')
->with($user);
$this->userBackend->updateAttributes('ExistingUser', [
'email' => 'new@example.com',
'displayname' => 'New Displayname',
'quota' => '50MB',
'groups' => ['groupB', 'groupC'],
]);
}
public function testUpdateAttributesQuotaDefaultFallback() {
$this->getMockedBuilder(['getDisplayName', 'setDisplayName']);
/** @var IUser|\PHPUnit_Framework_MockObject_MockObject $user */
$user = $this->createMock(IUser::class);
$this->config
->expects($this->at(0))
->method('getAppValue')
->with('user_saml', 'saml-attribute-mapping-email_mapping', '')
->willReturn('email');
$this->config
->expects($this->at(1))
->method('getAppValue')
->with('user_saml', 'saml-attribute-mapping-displayName_mapping', '')
->willReturn('displayname');
$this->config
->expects($this->at(2))
->method('getAppValue')
->with('user_saml', 'saml-attribute-mapping-quota_mapping', '')
->willReturn('quota');
$this->userManager
->expects($this->once())
->method('get')
->with('ExistingUser')
->willReturn($user);
$user
->expects($this->once())
->method('getEMailAddress')
->willReturn('old@example.com');
$user
->expects($this->once())
->method('setEMailAddress')
->with('new@example.com');
$user
->expects($this->once())
->method('setQuota')
->with('default');
$this->userBackend
->expects($this->once())
->method('getDisplayName')
->with('ExistingUser')
->willReturn('');
$this->userBackend
->expects($this->once())
->method('setDisplayName')
->with('ExistingUser', 'New Displayname');
$this->userBackend->updateAttributes('ExistingUser', ['email' => 'new@example.com', 'displayname' => 'New Displayname', 'quota' => '']);
}
}