123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @copyright Copyright (c) 2016, Lukas Reschke <lukas@statuscode.ch>
- *
- * @author Andreas Fischer <bantu@owncloud.com>
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Lukas Reschke <lukas@statuscode.ch>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\User_LDAP\Tests;
- use OCA\User_LDAP\Access;
- use OCA\User_LDAP\Connection;
- use OCA\User_LDAP\Exceptions\ConstraintViolationException;
- use OCA\User_LDAP\FilesystemHelper;
- use OCA\User_LDAP\Helper;
- use OCA\User_LDAP\ILDAPWrapper;
- use OCA\User_LDAP\LDAP;
- use OCA\User_LDAP\LogWrapper;
- use OCA\User_LDAP\User\Manager;
- use OCP\IAvatarManager;
- use OCP\IConfig;
- use OCP\IDBConnection;
- use OCP\Image;
- use OCP\IUserManager;
- /**
- * Class AccessTest
- *
- * @group DB
- *
- * @package OCA\User_LDAP\Tests
- */
- class AccessTest extends \Test\TestCase {
- /** @var Connection|\PHPUnit_Framework_MockObject_MockObject */
- private $connection;
- /** @var LDAP|\PHPUnit_Framework_MockObject_MockObject */
- private $ldap;
- /** @var Manager|\PHPUnit_Framework_MockObject_MockObject */
- private $userManager;
- /** @var Helper|\PHPUnit_Framework_MockObject_MockObject */
- private $helper;
- /** @var Access */
- private $access;
- public function setUp() {
- $this->connection = $this->createMock(Connection::class);
- $this->ldap = $this->createMock(LDAP::class);
- $this->userManager = $this->createMock(Manager::class);
- $this->helper = $this->createMock(Helper::class);
- $this->access = new Access(
- $this->connection,
- $this->ldap,
- $this->userManager,
- $this->helper
- );
- }
- private function getConnectorAndLdapMock() {
- $lw = $this->createMock(ILDAPWrapper::class);
- $connector = $this->getMockBuilder(Connection::class)
- ->setConstructorArgs([$lw, null, null])
- ->getMock();
- $um = $this->getMockBuilder(Manager::class)
- ->setConstructorArgs([
- $this->createMock(IConfig::class),
- $this->createMock(FilesystemHelper::class),
- $this->createMock(LogWrapper::class),
- $this->createMock(IAvatarManager::class),
- $this->createMock(Image::class),
- $this->createMock(IDBConnection::class),
- $this->createMock(IUserManager::class)])
- ->getMock();
- $helper = new Helper(\OC::$server->getConfig());
- return array($lw, $connector, $um, $helper);
- }
- public function testEscapeFilterPartValidChars() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $input = 'okay';
- $this->assertTrue($input === $access->escapeFilterPart($input));
- }
- public function testEscapeFilterPartEscapeWildcard() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $input = '*';
- $expected = '\\\\*';
- $this->assertTrue($expected === $access->escapeFilterPart($input));
- }
- public function testEscapeFilterPartEscapeWildcard2() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $input = 'foo*bar';
- $expected = 'foo\\\\*bar';
- $this->assertTrue($expected === $access->escapeFilterPart($input));
- }
- /** @dataProvider convertSID2StrSuccessData */
- public function testConvertSID2StrSuccess(array $sidArray, $sidExpected) {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $sidBinary = implode('', $sidArray);
- $this->assertSame($sidExpected, $access->convertSID2Str($sidBinary));
- }
- public function convertSID2StrSuccessData() {
- return array(
- array(
- array(
- "\x01",
- "\x04",
- "\x00\x00\x00\x00\x00\x05",
- "\x15\x00\x00\x00",
- "\xa6\x81\xe5\x0e",
- "\x4d\x6c\x6c\x2b",
- "\xca\x32\x05\x5f",
- ),
- 'S-1-5-21-249921958-728525901-1594176202',
- ),
- array(
- array(
- "\x01",
- "\x02",
- "\xFF\xFF\xFF\xFF\xFF\xFF",
- "\xFF\xFF\xFF\xFF",
- "\xFF\xFF\xFF\xFF",
- ),
- 'S-1-281474976710655-4294967295-4294967295',
- ),
- );
- }
- public function testConvertSID2StrInputError() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $sidIllegal = 'foobar';
- $sidExpected = '';
- $this->assertSame($sidExpected, $access->convertSID2Str($sidIllegal));
- }
- public function testGetDomainDNFromDNSuccess() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $inputDN = 'uid=zaphod,cn=foobar,dc=my,dc=server,dc=com';
- $domainDN = 'dc=my,dc=server,dc=com';
- $lw->expects($this->once())
- ->method('explodeDN')
- ->with($inputDN, 0)
- ->will($this->returnValue(explode(',', $inputDN)));
- $this->assertSame($domainDN, $access->getDomainDNFromDN($inputDN));
- }
- public function testGetDomainDNFromDNError() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $inputDN = 'foobar';
- $expected = '';
- $lw->expects($this->once())
- ->method('explodeDN')
- ->with($inputDN, 0)
- ->will($this->returnValue(false));
- $this->assertSame($expected, $access->getDomainDNFromDN($inputDN));
- }
- private function getResemblesDNInputData() {
- return $cases = array(
- array(
- 'input' => 'foo=bar,bar=foo,dc=foobar',
- 'interResult' => array(
- 'count' => 3,
- 0 => 'foo=bar',
- 1 => 'bar=foo',
- 2 => 'dc=foobar'
- ),
- 'expectedResult' => true
- ),
- array(
- 'input' => 'foobarbarfoodcfoobar',
- 'interResult' => false,
- 'expectedResult' => false
- )
- );
- }
- public function testStringResemblesDN() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $cases = $this->getResemblesDNInputData();
- $lw->expects($this->exactly(2))
- ->method('explodeDN')
- ->will($this->returnCallback(function ($dn) use ($cases) {
- foreach($cases as $case) {
- if($dn === $case['input']) {
- return $case['interResult'];
- }
- }
- return null;
- }));
- foreach($cases as $case) {
- $this->assertSame($case['expectedResult'], $access->stringResemblesDN($case['input']));
- }
- }
- public function testStringResemblesDNLDAPmod() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $lw = new \OCA\User_LDAP\LDAP();
- $access = new Access($con, $lw, $um, $helper);
- if(!function_exists('ldap_explode_dn')) {
- $this->markTestSkipped('LDAP Module not available');
- }
- $cases = $this->getResemblesDNInputData();
- foreach($cases as $case) {
- $this->assertSame($case['expectedResult'], $access->stringResemblesDN($case['input']));
- }
- }
- public function testCacheUserHome() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $con->expects($this->once())
- ->method('writeToCache');
- $access->cacheUserHome('foobar', '/foobars/path');
- }
- public function testBatchApplyUserAttributes() {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $access = new Access($con, $lw, $um, $helper);
- $mapperMock = $this->getMockBuilder('\OCA\User_LDAP\Mapping\UserMapping')
- ->disableOriginalConstructor()
- ->getMock();
- $mapperMock->expects($this->any())
- ->method('getNameByDN')
- ->will($this->returnValue('a_username'));
- $userMock = $this->getMockBuilder('\OCA\User_LDAP\User\User')
- ->disableOriginalConstructor()
- ->getMock();
- $access->connection->expects($this->any())
- ->method('__get')
- ->will($this->returnValue('displayName'));
- $access->setUserMapper($mapperMock);
- $displayNameAttribute = strtolower($access->connection->ldapUserDisplayName);
- $data = array(
- array(
- 'dn' => 'foobar',
- $displayNameAttribute => 'barfoo'
- ),
- array(
- 'dn' => 'foo',
- $displayNameAttribute => 'bar'
- ),
- array(
- 'dn' => 'raboof',
- $displayNameAttribute => 'oofrab'
- )
- );
- $userMock->expects($this->exactly(count($data)))
- ->method('processAttributes');
- $um->expects($this->exactly(count($data)))
- ->method('get')
- ->will($this->returnValue($userMock));
- $access->batchApplyUserAttributes($data);
- }
- public function dNAttributeProvider() {
- // corresponds to Access::resemblesDN()
- return array(
- 'dn' => array('dn'),
- 'uniqueMember' => array('uniquemember'),
- 'member' => array('member'),
- 'memberOf' => array('memberof')
- );
- }
- /**
- * @dataProvider dNAttributeProvider
- */
- public function testSanitizeDN($attribute) {
- list($lw, $con, $um, $helper) = $this->getConnectorAndLdapMock();
- $dnFromServer = 'cn=Mixed Cases,ou=Are Sufficient To,ou=Test,dc=example,dc=org';
- $lw->expects($this->any())
- ->method('isResource')
- ->will($this->returnValue(true));
- $lw->expects($this->any())
- ->method('getAttributes')
- ->will($this->returnValue(array(
- $attribute => array('count' => 1, $dnFromServer)
- )));
- $access = new Access($con, $lw, $um, $helper);
- $values = $access->readAttribute('uid=whoever,dc=example,dc=org', $attribute);
- $this->assertSame($values[0], strtolower($dnFromServer));
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage LDAP password changes are disabled
- */
- public function testSetPasswordWithDisabledChanges() {
- $this->connection
- ->method('__get')
- ->willReturn(false);
- $this->access->setPassword('CN=foo', 'MyPassword');
- }
- public function testSetPasswordWithLdapNotAvailable() {
- $this->connection
- ->method('__get')
- ->willReturn(true);
- $connection = $this->createMock(LDAP::class);
- $this->connection
- ->expects($this->once())
- ->method('getConnectionResource')
- ->willReturn($connection);
- $this->ldap
- ->expects($this->once())
- ->method('isResource')
- ->with($connection)
- ->willReturn(false);
- $this->assertFalse($this->access->setPassword('CN=foo', 'MyPassword'));
- }
- /**
- * @expectedException \OC\HintException
- * @expectedExceptionMessage Password change rejected.
- */
- public function testSetPasswordWithRejectedChange() {
- $this->connection
- ->method('__get')
- ->willReturn(true);
- $connection = $this->createMock(LDAP::class);
- $this->connection
- ->expects($this->once())
- ->method('getConnectionResource')
- ->willReturn($connection);
- $this->ldap
- ->expects($this->once())
- ->method('isResource')
- ->with($connection)
- ->willReturn(true);
- $this->ldap
- ->expects($this->once())
- ->method('modReplace')
- ->with($connection, 'CN=foo', 'MyPassword')
- ->willThrowException(new ConstraintViolationException());
- $this->access->setPassword('CN=foo', 'MyPassword');
- }
- public function testSetPassword() {
- $this->connection
- ->method('__get')
- ->willReturn(true);
- $connection = $this->createMock(LDAP::class);
- $this->connection
- ->expects($this->once())
- ->method('getConnectionResource')
- ->willReturn($connection);
- $this->ldap
- ->expects($this->once())
- ->method('isResource')
- ->with($connection)
- ->willReturn(true);
- $this->ldap
- ->expects($this->once())
- ->method('modReplace')
- ->with($connection, 'CN=foo', 'MyPassword')
- ->willReturn(true);
- $this->assertTrue($this->access->setPassword('CN=foo', 'MyPassword'));
- }
- }
|