12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Jörn Friedrich Dreyer <jfd@butonic.de>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Roger Szabo <roger.szabo@web.de>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Vinicius Cubas Brand <vinicius@eita.org.br>
- *
- * @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 OC\User\Backend;
- use OC\User\Session;
- use OCA\User_LDAP\Access;
- use OCA\User_LDAP\Connection;
- use OCA\User_LDAP\Mapping\UserMapping;
- use OCA\User_LDAP\User\Manager;
- use OCA\User_LDAP\User\OfflineUser;
- use OC\HintException;
- use OCA\User_LDAP\User\User;
- use OCA\User_LDAP\User_LDAP as UserLDAP;
- use OCA\User_LDAP\User_LDAP;
- use OCA\User_LDAP\UserPluginManager;
- use OCP\IConfig;
- use OCP\IUser;
- use Test\TestCase;
- use OCP\Notification\IManager as INotificationManager;
- /**
- * Class Test_User_Ldap_Direct
- *
- * @group DB
- *
- * @package OCA\User_LDAP\Tests
- */
- class User_LDAPTest extends TestCase {
- /** @var User_LDAP */
- protected $backend;
- /** @var Access|\PHPUnit_Framework_MockObject_MockObject */
- protected $access;
- /** @var OfflineUser|\PHPUnit_Framework_MockObject_MockObject */
- protected $offlineUser;
- /** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
- protected $config;
- /** @var INotificationManager|\PHPUnit_Framework_MockObject_MockObject */
- protected $notificationManager;
- /** @var Session|\PHPUnit_Framework_MockObject_MockObject */
- protected $session;
- /** @var UserPluginManager|\PHPUnit_Framework_MockObject_MockObject */
- protected $pluginManager;
- /** @var Connection|\PHPUnit_Framework_MockObject_MockObject */
- protected $connection;
- /** @var Manager|\PHPUnit_Framework_MockObject_MockObject */
- protected $userManager;
- protected function setUp() {
- parent::setUp();
- \OC_User::clearBackends();
- \OC::$server->getGroupManager()->clearBackends();
- $this->connection = $this->createMock(Connection::class);
- $this->userManager = $this->createMock(Manager::class);
- $this->access = $this->createMock(Access::class);
- $this->access->connection = $this->connection;
- $this->access->userManager = $this->userManager;
- $this->config = $this->createMock(IConfig::class);
- $this->notificationManager = $this->createMock(INotificationManager::class);
- // Cannot use IUserSession because of private listen() methods
- $this->session = $this->createMock(Session::class);
- $this->pluginManager = $this->createMock(UserPluginManager::class);
- $this->backend = new User_LDAP(
- $this->access,
- $this->config,
- $this->notificationManager,
- $this->session,
- $this->pluginManager
- );
- }
- private function prepareMockForUserExists() {
- $this->access->expects($this->any())
- ->method('username2dn')
- ->will($this->returnCallback(function($uid) {
- switch ($uid) {
- case 'gunslinger':
- return 'dnOfRoland,dc=test';
- break;
- case 'formerUser':
- return 'dnOfFormerUser,dc=test';
- break;
- case 'newyorker':
- return 'dnOfNewYorker,dc=test';
- break;
- case 'ladyofshadows':
- return 'dnOfLadyOfShadows,dc=test';
- break;
- default:
- return false;
- }
- }));
- $this->access->method('fetchUsersByLoginName')
- ->willReturn([]);
- }
- /**
- * Prepares the Access mock for checkPassword tests
- * @param bool $noDisplayName
- * @return void
- */
- private function prepareAccessForCheckPassword($noDisplayName = false) {
- $this->connection->expects($this->any())
- ->method('__get')
- ->will($this->returnCallback(function($name) {
- if($name === 'ldapLoginFilter') {
- return '%uid';
- }
- return null;
- }));
- $this->access->expects($this->any())
- ->method('fetchListOfUsers')
- ->will($this->returnCallback(function($filter) {
- if($filter === 'roland') {
- return array(array('dn' => ['dnOfRoland,dc=test']));
- }
- return array();
- }));
- $this->access->expects($this->any())
- ->method('fetchUsersByLoginName')
- ->will($this->returnCallback(function($uid) {
- if($uid === 'roland') {
- return array(array('dn' => ['dnOfRoland,dc=test']));
- }
- return array();
- }));
- $retVal = 'gunslinger';
- if($noDisplayName === true) {
- $retVal = false;
- }
- $this->access->expects($this->any())
- ->method('dn2username')
- ->with($this->equalTo('dnOfRoland,dc=test'))
- ->will($this->returnValue($retVal));
- $this->access->expects($this->any())
- ->method('stringResemblesDN')
- ->with($this->equalTo('dnOfRoland,dc=test'))
- ->will($this->returnValue(true));
- $this->access->expects($this->any())
- ->method('areCredentialsValid')
- ->will($this->returnCallback(function($dn, $pwd) {
- if($pwd === 'dt19') {
- return true;
- }
- return false;
- }));
- }
- public function testCheckPasswordUidReturn() {
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getUsername')
- ->willReturn('gunslinger');
- $this->prepareAccessForCheckPassword();
- $this->userManager->expects($this->any())
- ->method('get')
- ->willReturn($user);
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $result = $backend->checkPassword('roland', 'dt19');
- $this->assertEquals('gunslinger', $result);
- }
- public function testCheckPasswordWrongPassword() {
- $this->prepareAccessForCheckPassword();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $result = $backend->checkPassword('roland', 'wrong');
- $this->assertFalse($result);
- }
- public function testCheckPasswordWrongUser() {
- $this->prepareAccessForCheckPassword();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $result = $backend->checkPassword('mallory', 'evil');
- $this->assertFalse($result);
- }
- public function testCheckPasswordNoDisplayName() {
- $this->prepareAccessForCheckPassword(true);
- $this->prepareAccessForCheckPassword();
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn(null);
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $result = $backend->checkPassword('roland', 'dt19');
- $this->assertFalse($result);
- }
- public function testCheckPasswordPublicAPI() {
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getUsername')
- ->willReturn('gunslinger');
- $this->prepareAccessForCheckPassword();
- $this->userManager->expects($this->any())
- ->method('get')
- ->willReturn($user);
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $user = \OC::$server->getUserManager()->checkPassword('roland', 'dt19');
- $result = false;
- if ($user !== false) {
- $result = $user->getUID();
- }
- $this->assertEquals('gunslinger', $result);
- }
- public function testCheckPasswordPublicAPIWrongPassword() {
- $this->prepareAccessForCheckPassword();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $user = \OC::$server->getUserManager()->checkPassword('roland', 'wrong');
- $result = false;
- if ($user !== false) {
- $result = $user->getUID();
- }
- $this->assertFalse($result);
- }
- public function testCheckPasswordPublicAPIWrongUser() {
- $this->prepareAccessForCheckPassword();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $user = \OC::$server->getUserManager()->checkPassword('mallory', 'evil');
- $result = false;
- if ($user !== false) {
- $result = $user->getUID();
- }
- $this->assertFalse($result);
- }
- public function testDeleteUserCancel() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $result = $backend->deleteUser('notme');
- $this->assertFalse($result);
- }
- public function testDeleteUserSuccess() {
- $uid = 'jeremy';
- $home = '/var/vhome/jdings/';
- $mapping = $this->createMock(UserMapping::class);
- $mapping->expects($this->once())
- ->method('unmap')
- ->will($this->returnValue(true));
- $this->access->expects($this->once())
- ->method('getUserMapper')
- ->will($this->returnValue($mapping));
- $this->connection->expects($this->any())
- ->method('getConnectionResource')
- ->willReturn('this is an ldap link');
- $this->config->expects($this->any())
- ->method('getUserValue')
- ->with($uid, 'user_ldap', 'isDeleted')
- ->willReturn('1');
- $offlineUser = $this->createMock(OfflineUser::class);
- $offlineUser->expects($this->once())
- ->method('getHomePath')
- ->willReturn($home);
- $offlineUser->expects($this->once())
- ->method('getOCName')
- ->willReturn($uid);
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($offlineUser);
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- /** @var IUser|\PHPUnit_Framework_MockObject_MockObject $user */
- $user = $this->createMock(IUser::class);
- $user->expects($this->once())
- ->method('getUID')
- ->willReturn($uid);
- $backend->preDeleteUser($user);
- $result = $backend->deleteUser($uid);
- $this->assertTrue($result);
- /** @noinspection PhpUnhandledExceptionInspection */
- $this->assertSame($backend->getHome($uid), $home);
- }
- public function testDeleteUserWithPlugin() {
- $this->pluginManager->expects($this->once())
- ->method('canDeleteUser')
- ->willReturn(true);
- $this->pluginManager->expects($this->once())
- ->method('deleteUser')
- ->with('uid')
- ->willReturn('result');
- $this->assertEquals($this->backend->deleteUser('uid'),'result');
- }
- /**
- * Prepares the Access mock for getUsers tests
- */
- private function prepareAccessForGetUsers() {
- $this->access->expects($this->once())
- ->method('escapeFilterPart')
- ->will($this->returnCallback(function($search) {
- return $search;
- }));
- $this->access->expects($this->any())
- ->method('getFilterPartForUserSearch')
- ->will($this->returnCallback(function($search) {
- return $search;
- }));
- $this->access->expects($this->any())
- ->method('combineFilterWithAnd')
- ->will($this->returnCallback(function($param) {
- return $param[2];
- }));
- $this->access->expects($this->any())
- ->method('fetchListOfUsers')
- ->will($this->returnCallback(function($search, $a, $l, $o) {
- $users = array('gunslinger', 'newyorker', 'ladyofshadows');
- if(empty($search)) {
- $result = $users;
- } else {
- $result = array();
- foreach($users as $user) {
- if(stripos($user, $search) !== false) {
- $result[] = $user;
- }
- }
- }
- if(!is_null($l) || !is_null($o)) {
- $result = array_slice($result, $o, $l);
- }
- return $result;
- }));
- $this->access->expects($this->any())
- ->method('nextcloudUserNames')
- ->will($this->returnArgument(0));
- $this->access->method('fetchUsersByLoginName')
- ->willReturn([]);
- }
- public function testGetUsersNoParam() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $result = $backend->getUsers();
- $this->assertEquals(3, count($result));
- }
- public function testGetUsersLimitOffset() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $result = $backend->getUsers('', 1, 2);
- $this->assertEquals(1, count($result));
- }
- public function testGetUsersLimitOffset2() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $result = $backend->getUsers('', 2, 1);
- $this->assertEquals(2, count($result));
- }
- public function testGetUsersSearchWithResult() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $result = $backend->getUsers('yo');
- $this->assertEquals(2, count($result));
- }
- public function testGetUsersSearchEmptyResult() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $result = $backend->getUsers('nix');
- $this->assertEquals(0, count($result));
- }
- private function getUsers($search = '', $limit = null, $offset = null) {
- $users = \OC::$server->getUserManager()->search($search, $limit, $offset);
- $uids = array_map(function(IUser $user) {
- return $user->getUID();
- }, $users);
- return $uids;
- }
- public function testGetUsersViaAPINoParam() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $result = $this->getUsers();
- $this->assertEquals(3, count($result));
- }
- public function testGetUsersViaAPILimitOffset() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $result = $this->getUsers('', 1, 2);
- $this->assertEquals(1, count($result));
- }
- public function testGetUsersViaAPILimitOffset2() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $result = $this->getUsers('', 2, 1);
- $this->assertEquals(2, count($result));
- }
- public function testGetUsersViaAPISearchWithResult() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $result = $this->getUsers('yo');
- $this->assertEquals(2, count($result));
- }
- public function testGetUsersViaAPISearchEmptyResult() {
- $this->prepareAccessForGetUsers();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $result = $this->getUsers('nix');
- $this->assertEquals(0, count($result));
- }
- public function testUserExists() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getDN')
- ->willReturn('dnOfRoland,dc=test');
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn) {
- if($dn === 'dnOfRoland,dc=test') {
- return array();
- }
- return false;
- }));
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($user);
- $this->access->expects($this->any())
- ->method('getUserMapper')
- ->willReturn($this->createMock(UserMapping::class));
- //test for existing user
- /** @noinspection PhpUnhandledExceptionInspection */
- $result = $backend->userExists('gunslinger');
- $this->assertTrue($result);
- }
- public function testUserExistsForDeleted() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- $mapper = $this->createMock(UserMapping::class);
- $mapper->expects($this->any())
- ->method('getUUIDByDN')
- ->with('dnOfFormerUser,dc=test')
- ->willReturn('45673458748');
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn) {
- if($dn === 'dnOfRoland,dc=test') {
- return array();
- }
- return false;
- }));
- $this->access->expects($this->any())
- ->method('getUserMapper')
- ->willReturn($mapper);
- $this->access->expects($this->once())
- ->method('getUserDnByUuid')
- ->willThrowException(new \Exception());
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getDN')
- ->willReturn('dnOfFormerUser,dc=test');
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($user);
- //test for deleted user
- $this->assertFalse($backend->userExists('formerUser'));
- }
- public function testUserExistsForNeverExisting() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn) {
- if($dn === 'dnOfRoland,dc=test') {
- return array();
- }
- return false;
- }));
- //test for never-existing user
- /** @noinspection PhpUnhandledExceptionInspection */
- $result = $backend->userExists('mallory');
- $this->assertFalse($result);
- }
- public function testUserExistsPublicAPI() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- \OC_User::useBackend($backend);
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getDN')
- ->willReturn('dnOfRoland,dc=test');
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn) {
- if($dn === 'dnOfRoland,dc=test') {
- return array();
- }
- return false;
- }));
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($user);
- $this->access->expects($this->any())
- ->method('getUserMapper')
- ->willReturn($this->createMock(UserMapping::class));
- //test for existing user
- $result = \OC::$server->getUserManager()->userExists('gunslinger');
- $this->assertTrue($result);
- }
- public function testUserExistsPublicAPIForDeleted() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- \OC_User::useBackend($backend);
- $mapper = $this->createMock(UserMapping::class);
- $mapper->expects($this->any())
- ->method('getUUIDByDN')
- ->with('dnOfFormerUser,dc=test')
- ->willReturn('45673458748');
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn) {
- if($dn === 'dnOfRoland,dc=test') {
- return array();
- }
- return false;
- }));
- $this->access->expects($this->any())
- ->method('getUserMapper')
- ->willReturn($mapper);
- $this->access->expects($this->once())
- ->method('getUserDnByUuid')
- ->willThrowException(new \Exception());
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getDN')
- ->willReturn('dnOfFormerUser,dc=test');
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($user);
- //test for deleted user
- $this->assertFalse(\OC::$server->getUserManager()->userExists('formerUser'));
- }
- public function testUserExistsPublicAPIForNeverExisting() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- \OC_User::useBackend($backend);
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn) {
- if($dn === 'dnOfRoland,dc=test') {
- return array();
- }
- return false;
- }));
- //test for never-existing user
- $result = \OC::$server->getUserManager()->userExists('mallory');
- $this->assertFalse($result);
- }
- public function testDeleteUserExisting() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- //we do not support deleting existing users at all
- $result = $backend->deleteUser('gunslinger');
- $this->assertFalse($result);
- }
- public function testGetHomeAbsolutePath() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- $this->connection->expects($this->any())
- ->method('__get')
- ->will($this->returnCallback(function($name) {
- if($name === 'homeFolderNamingRule') {
- return 'attr:testAttribute';
- }
- return null;
- }));
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn, $attr) {
- switch ($dn) {
- case 'dnOfRoland,dc=test':
- if($attr === 'testAttribute') {
- return array('/tmp/rolandshome/');
- }
- return array();
- break;
- default:
- return false;
- }
- }));
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getUsername')
- ->willReturn('gunslinger');
- $user->expects($this->any())
- ->method('getDN')
- ->willReturn('dnOfRoland,dc=test');
- $user->expects($this->any())
- ->method('getHomePath')
- ->willReturn('/tmp/rolandshome/');
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($user);
- //absolute path
- /** @noinspection PhpUnhandledExceptionInspection */
- $result = $backend->getHome('gunslinger');
- $this->assertEquals('/tmp/rolandshome/', $result);
- }
- public function testGetHomeRelative() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- $dataDir = \OC::$server->getConfig()->getSystemValue(
- 'datadirectory', \OC::$SERVERROOT.'/data');
- $this->connection->expects($this->any())
- ->method('__get')
- ->will($this->returnCallback(function($name) {
- if($name === 'homeFolderNamingRule') {
- return 'attr:testAttribute';
- }
- return null;
- }));
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn, $attr) {
- switch ($dn) {
- case 'dnOfLadyOfShadows,dc=test':
- if($attr === 'testAttribute') {
- return array('susannah/');
- }
- return array();
- break;
- default:
- return false;
- }
- }));
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getUsername')
- ->willReturn('ladyofshadows');
- $user->expects($this->any())
- ->method('getDN')
- ->willReturn('dnOfLadyOfShadows,dc=test');
- $user->expects($this->any())
- ->method('getHomePath')
- ->willReturn($dataDir.'/susannah/');
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($user);
- /** @noinspection PhpUnhandledExceptionInspection */
- $result = $backend->getHome('ladyofshadows');
- $this->assertEquals($dataDir.'/susannah/', $result);
- }
- /**
- * @expectedException \Exception
- */
- public function testGetHomeNoPath() {
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- $this->connection->expects($this->any())
- ->method('__get')
- ->will($this->returnCallback(function($name) {
- if($name === 'homeFolderNamingRule') {
- return 'attr:testAttribute';
- }
- return null;
- }));
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn, $attr) {
- switch ($dn) {
- default:
- return false;
- }
- }));
- $this->access->connection->expects($this->any())
- ->method('getFromCache')
- ->willReturnCallback(function($key) {
- if($key === 'userExistsnewyorker') {
- return true;
- }
- return null;
- });
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getUsername')
- ->willReturn('newyorker');
- $user->expects($this->any())
- ->method('getHomePath')
- ->willThrowException(new \Exception());
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($user);
- //no path at all – triggers OC default behaviour
- $result = $backend->getHome('newyorker');
- $this->assertFalse($result);
- }
- /**
- * @expectedException \OC\User\NoUserException
- */
- public function testGetHomeDeletedUser() {
- $uid = 'newyorker';
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- $this->connection->expects($this->any())
- ->method('__get')
- ->will($this->returnCallback(function($name) {
- if($name === 'homeFolderNamingRule') {
- return 'attr:testAttribute';
- }
- return null;
- }));
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnValue([]));
- $userMapper = $this->createMock(UserMapping::class);
- $this->access->expects($this->any())
- ->method('getUserMapper')
- ->will($this->returnValue($userMapper));
- $this->config->expects($this->any())
- ->method('getUserValue')
- ->will($this->returnValue(true));
- $offlineUser = $this->createMock(OfflineUser::class);
- $offlineUser->expects($this->never())
- ->method('getHomePath');
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($offlineUser);
- $backend->getHome($uid);
- }
- public function testGetHomeWithPlugin() {
- $this->pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(Backend::GET_HOME)
- ->willReturn(true);
- $this->pluginManager->expects($this->once())
- ->method('getHome')
- ->with('uid')
- ->willReturn('result');
- $this->connection->expects($this->any())
- ->method('getFromCache')
- ->will($this->returnCallback(function($uid) {
- return true;
- }));
- /** @noinspection PhpUnhandledExceptionInspection */
- $this->assertEquals($this->backend->getHome('uid'),'result');
- }
- private function prepareAccessForGetDisplayName() {
- $this->connection->expects($this->any())
- ->method('__get')
- ->will($this->returnCallback(function($name) {
- if($name === 'ldapUserDisplayName') {
- return 'displayname';
- }
- return null;
- }));
- $this->access->expects($this->any())
- ->method('readAttribute')
- ->will($this->returnCallback(function($dn, $attr) {
- switch ($dn) {
- case 'dnOfRoland,dc=test':
- if($attr === 'displayname') {
- return array('Roland Deschain');
- }
- return array();
- break;
- default:
- return false;
- }
- }));
- $this->access->method('fetchUsersByLoginName')
- ->willReturn([]);
- }
- public function testGetDisplayName() {
- $this->prepareAccessForGetDisplayName();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- $this->connection->expects($this->any())
- ->method('getConnectionResource')
- ->will($this->returnCallback(function() {
- return true;
- }));
- $user1 = $this->createMock(User::class);
- $user1->expects($this->once())
- ->method('composeAndStoreDisplayName')
- ->willReturn('Roland Deschain');
- $user1->expects($this->any())
- ->method('getDN')
- ->willReturn('dnOfRoland,dc=test');
- $user2 = $this->createMock(User::class);
- $user2->expects($this->never())
- ->method('composeAndStoreDisplayName');
- $user2->expects($this->any())
- ->method('getDN')
- ->willReturn('another DN');
- $mapper = $this->createMock(UserMapping::class);
- $mapper->expects($this->any())
- ->method('getUUIDByDN')
- ->willReturnCallback(function($dn) { return $dn; });
- $this->userManager->expects($this->any())
- ->method('get')
- ->willReturnCallback(function($uid) use ($user1, $user2) {
- if($uid === 'gunslinger') {
- return $user1;
- } else if($uid === 'newyorker') {
- return $user2;
- }
- return null;
- });
- $this->access->expects($this->any())
- ->method('getUserMapper')
- ->willReturn($mapper);
- $this->access->expects($this->any())
- ->method('getUserDnByUuid')
- ->willReturnCallback(function($uuid) { return $uuid . '1'; });
- //with displayName
- $result = $backend->getDisplayName('gunslinger');
- $this->assertEquals('Roland Deschain', $result);
- //empty displayname retrieved
- $result = $backend->getDisplayName('newyorker');
- $this->assertEquals(null, $result);
- }
- public function testGetDisplayNamePublicAPI() {
- $this->access->expects($this->any())
- ->method('username2dn')
- ->will($this->returnCallback(function($uid) {
- switch ($uid) {
- case 'gunslinger':
- return 'dnOfRoland,dc=test';
- break;
- case 'formerUser':
- return 'dnOfFormerUser,dc=test';
- break;
- case 'newyorker':
- return 'dnOfNewYorker,dc=test';
- break;
- case 'ladyofshadows':
- return 'dnOfLadyOfShadows,dc=test';
- break;
- default:
- return false;
- }
- }));
- $this->prepareAccessForGetDisplayName();
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->prepareMockForUserExists();
- $this->connection->expects($this->any())
- ->method('getConnectionResource')
- ->will($this->returnCallback(function() {
- return true;
- }));
- \OC_User::useBackend($backend);
- $user1 = $this->createMock(User::class);
- $user1->expects($this->once())
- ->method('composeAndStoreDisplayName')
- ->willReturn('Roland Deschain');
- $user1->expects($this->any())
- ->method('getDN')
- ->willReturn('dnOfRoland,dc=test');
- $user2 = $this->createMock(User::class);
- $user2->expects($this->never())
- ->method('composeAndStoreDisplayName');
- $user2->expects($this->any())
- ->method('getDN')
- ->willReturn('another DN');
- $mapper = $this->createMock(UserMapping::class);
- $mapper->expects($this->any())
- ->method('getUUIDByDN')
- ->willReturnCallback(function($dn) { return $dn; });
- $this->userManager->expects($this->any())
- ->method('get')
- ->willReturnCallback(function($uid) use ($user1, $user2) {
- if($uid === 'gunslinger') {
- return $user1;
- } else if($uid === 'newyorker') {
- return $user2;
- }
- return null;
- });
- $this->access->expects($this->any())
- ->method('getUserMapper')
- ->willReturn($mapper);
- $this->access->expects($this->any())
- ->method('getUserDnByUuid')
- ->willReturnCallback(function($uuid) { return $uuid . '1'; });
- //with displayName
- $result = \OC::$server->getUserManager()->get('gunslinger')->getDisplayName();
- $this->assertEquals('Roland Deschain', $result);
- //empty displayname retrieved
- $result = \OC::$server->getUserManager()->get('newyorker') === null ? 'newyorker' : \OC::$server->getUserManager()->get('newyorker')->getDisplayName();
- $this->assertEquals('newyorker', $result);
- }
- public function testGetDisplayNameWithPlugin() {
- $this->pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(Backend::GET_DISPLAYNAME)
- ->willReturn(true);
- $this->pluginManager->expects($this->once())
- ->method('getDisplayName')
- ->with('uid')
- ->willReturn('result');
- $this->assertEquals($this->backend->getDisplayName('uid'),'result');
- }
- //no test for getDisplayNames, because it just invokes getUsers and
- //getDisplayName
- public function testCountUsers() {
- $this->access->expects($this->once())
- ->method('countUsers')
- ->will($this->returnValue(5));
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $result = $backend->countUsers();
- $this->assertEquals(5, $result);
- }
- public function testCountUsersFailing() {
- $this->access->expects($this->once())
- ->method('countUsers')
- ->will($this->returnValue(false));
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $result = $backend->countUsers();
- $this->assertFalse($result);
- }
- public function testCountUsersWithPlugin() {
- $this->pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(Backend::COUNT_USERS)
- ->willReturn(true);
- $this->pluginManager->expects($this->once())
- ->method('countUsers')
- ->willReturn(42);
- $this->assertEquals($this->backend->countUsers(),42);
- }
- public function testLoginName2UserNameSuccess() {
- $loginName = 'Alice';
- $username = 'alice';
- $dn = 'uid=alice,dc=what,dc=ever';
- $this->access->expects($this->once())
- ->method('fetchUsersByLoginName')
- ->with($this->equalTo($loginName))
- ->willReturn([['dn' => [$dn]]]);
- $this->access->expects($this->any())
- ->method('stringResemblesDN')
- ->with($this->equalTo($dn))
- ->willReturn(true);
- $this->access->expects($this->any())
- ->method('dn2username')
- ->with($this->equalTo($dn))
- ->willReturn($username);
- $this->connection->expects($this->exactly(2))
- ->method('getFromCache')
- ->with($this->equalTo('loginName2UserName-'.$loginName))
- ->willReturnOnConsecutiveCalls(null, $username);
- $this->connection->expects($this->once())
- ->method('writeToCache')
- ->with($this->equalTo('loginName2UserName-'.$loginName), $this->equalTo($username));
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $user = $this->createMock(User::class);
- $user->expects($this->any())
- ->method('getUsername')
- ->willReturn('alice');
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->with($dn)
- ->willReturn($user);
- $name = $backend->loginName2UserName($loginName);
- $this->assertSame($username, $name);
- // and once again to verify that caching works
- $backend->loginName2UserName($loginName);
- }
- public function testLoginName2UserNameNoUsersOnLDAP() {
- $loginName = 'Loki';
- $this->access->expects($this->once())
- ->method('fetchUsersByLoginName')
- ->with($this->equalTo($loginName))
- ->willReturn([]);
- $this->access->expects($this->never())
- ->method('stringResemblesDN');
- $this->access->expects($this->never())
- ->method('dn2username');
- $this->connection->expects($this->exactly(2))
- ->method('getFromCache')
- ->with($this->equalTo('loginName2UserName-'.$loginName))
- ->willReturnOnConsecutiveCalls(null, false);
- $this->connection->expects($this->once())
- ->method('writeToCache')
- ->with($this->equalTo('loginName2UserName-'.$loginName), false);
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $name = $backend->loginName2UserName($loginName);
- $this->assertSame(false, $name);
- // and once again to verify that caching works
- $backend->loginName2UserName($loginName);
- }
- public function testLoginName2UserNameOfflineUser() {
- $loginName = 'Alice';
- $dn = 'uid=alice,dc=what,dc=ever';
- $offlineUser = $this->getMockBuilder(OfflineUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->access->expects($this->once())
- ->method('fetchUsersByLoginName')
- ->with($this->equalTo($loginName))
- ->willReturn([['dn' => [$dn]]]);
- $this->connection->expects($this->exactly(2))
- ->method('getFromCache')
- ->with($this->equalTo('loginName2UserName-'.$loginName))
- ->willReturnOnConsecutiveCalls(null, false);
- $this->connection->expects($this->once())
- ->method('writeToCache')
- ->with($this->equalTo('loginName2UserName-'.$loginName), $this->equalTo(false));
- $this->userManager->expects($this->any())
- ->method('get')
- ->with($dn)
- ->willReturn($offlineUser);
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $name = $backend->loginName2UserName($loginName);
- $this->assertSame(false, $name);
- // and once again to verify that caching works
- $backend->loginName2UserName($loginName);
- }
- /**
- * Prepares the Access mock for setPassword tests
- *
- * @param bool $enablePasswordChange
- */
- private function prepareAccessForSetPassword($enablePasswordChange = true) {
- $this->connection->expects($this->any())
- ->method('__get')
- ->will($this->returnCallback(function($name) use (&$enablePasswordChange) {
- if($name === 'ldapLoginFilter') {
- return '%uid';
- }
- if($name === 'turnOnPasswordChange') {
- return $enablePasswordChange?1:0;
- }
- return null;
- }));
- $this->connection->expects($this->any())
- ->method('getFromCache')
- ->will($this->returnCallback(function($uid) {
- if($uid === 'userExists'.'roland') {
- return true;
- }
- return null;
- }));
- $this->access->expects($this->any())
- ->method('fetchListOfUsers')
- ->will($this->returnCallback(function($filter) {
- if($filter === 'roland') {
- return array(array('dn' => ['dnOfRoland,dc=test']));
- }
- return array();
- }));
- $this->access->expects($this->any())
- ->method('fetchUsersByLoginName')
- ->will($this->returnCallback(function($uid) {
- if($uid === 'roland') {
- return array(array('dn' => ['dnOfRoland,dc=test']));
- }
- return array();
- }));
- $this->access->expects($this->any())
- ->method('dn2username')
- ->with($this->equalTo('dnOfRoland,dc=test'))
- ->will($this->returnValue('roland'));
- $this->access->expects($this->any())
- ->method('stringResemblesDN')
- ->with($this->equalTo('dnOfRoland,dc=test'))
- ->will($this->returnValue(true));
- $this->access->expects($this->any())
- ->method('setPassword')
- ->will($this->returnCallback(function($uid, $password) {
- if(strlen($password) <= 5) {
- throw new HintException('Password fails quality checking policy', '', 19);
- }
- return true;
- }));
- }
- /**
- * @expectedException \OC\HintException
- * @expectedExceptionMessage Password fails quality checking policy
- */
- public function testSetPasswordInvalid() {
- $this->prepareAccessForSetPassword($this->access);
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($this->createMock(User::class));
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $this->assertTrue(\OC_User::setPassword('roland', 'dt'));
- }
-
- public function testSetPasswordValid() {
- $this->prepareAccessForSetPassword($this->access);
- $this->userManager->expects($this->any())
- ->method('get')
- ->willReturn($this->createMock(User::class));
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- $this->userManager->expects($this->any())
- ->method('get')
- ->willReturn($this->createMock(User::class));
- \OC_User::useBackend($backend);
- $this->assertTrue(\OC_User::setPassword('roland', 'dt12234$'));
- }
- public function testSetPasswordValidDisabled() {
- $this->userManager->expects($this->any())
- ->method('get')
- ->willReturn($this->createMock(User::class));
- $this->prepareAccessForSetPassword(false);
- $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager);
- \OC_User::useBackend($backend);
- $this->assertFalse(\OC_User::setPassword('roland', 'dt12234$'));
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage LDAP setPassword: Could not get user object for uid NotExistingUser. Maybe the LDAP entry has no set display name attribute?
- */
- public function testSetPasswordWithInvalidUser() {
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('NotExistingUser')
- ->willReturn(null);
- $this->backend->setPassword('NotExistingUser', 'Password');
- }
- public function testSetPasswordWithUsernameFalse() {
- $user = $this->createMock(User::class);
- $user
- ->expects($this->once())
- ->method('getUsername')
- ->willReturn(false);
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('NotExistingUser')
- ->willReturn($user);
- /** @noinspection PhpUnhandledExceptionInspection */
- $this->assertFalse($this->backend->setPassword('NotExistingUser', 'Password'));
- }
- public function testSetPasswordWithPlugin() {
- $this->pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(Backend::SET_PASSWORD)
- ->willReturn(true);
- $this->pluginManager->expects($this->once())
- ->method('setPassword')
- ->with('uid','password')
- ->willReturn('result');
- /** @noinspection PhpUnhandledExceptionInspection */
- $this->assertEquals($this->backend->setPassword('uid', 'password'),'result');
- }
- public function avatarDataProvider() {
- return [
- [ 'validImageData', false ],
- [ 'corruptImageData', true ],
- [ false, true]
- ];
- }
- /** @dataProvider avatarDataProvider */
- public function testCanChangeAvatar($imageData, $expected) {
- $isValidImage = strpos((string)$imageData, 'valid') === 0;
- $user = $this->createMock(User::class);
- $user->expects($this->once())
- ->method('getAvatarImage')
- ->willReturn($imageData);
- $user->expects($this->atMost(1))
- ->method('updateAvatar')
- ->willReturn($isValidImage);
- $this->userManager->expects($this->atLeastOnce())
- ->method('get')
- ->willReturn($user);
- /** @noinspection PhpUnhandledExceptionInspection */
- $this->assertSame($expected, $this->backend->canChangeAvatar('uid'));
- }
- public function testCanChangeAvatarWithPlugin() {
- $this->pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(Backend::PROVIDE_AVATAR)
- ->willReturn(true);
- $this->pluginManager->expects($this->once())
- ->method('canChangeAvatar')
- ->with('uid')
- ->willReturn('result');
- $this->assertEquals($this->backend->canChangeAvatar('uid'),'result');
- }
- public function testSetDisplayNameWithPlugin() {
- $this->pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(Backend::SET_DISPLAYNAME)
- ->willReturn(true);
- $this->pluginManager->expects($this->once())
- ->method('setDisplayName')
- ->with('uid','displayName')
- ->willReturn('result');
- $this->assertEquals($this->backend->setDisplayName('uid', 'displayName'),'result');
- }
- public function testSetDisplayNameFailing() {
- $this->pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(Backend::SET_DISPLAYNAME)
- ->willReturn(false);
- $this->assertFalse($this->backend->setDisplayName('uid', 'displayName'));
- }
- public function testCreateUserWithPlugin() {
- $this->pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(Backend::CREATE_USER)
- ->willReturn(true);
- $this->pluginManager->expects($this->once())
- ->method('createUser')
- ->with('uid','password')
- ->willReturn('result');
- $this->assertEquals($this->backend->createUser('uid', 'password'),'result');
- }
- public function testCreateUserFailing() {
- $this->pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(Backend::CREATE_USER)
- ->willReturn(false);
- $this->assertFalse($this->backend->createUser('uid', 'password'));
- }
- public function actionProvider() {
- return [
- [ 'ldapUserAvatarRule', 'default', Backend::PROVIDE_AVATAR, true] ,
- [ 'ldapUserAvatarRule', 'data:selfiePhoto', Backend::PROVIDE_AVATAR, true],
- [ 'ldapUserAvatarRule', 'none', Backend::PROVIDE_AVATAR, false],
- [ 'turnOnPasswordChange', 0, Backend::SET_PASSWORD, false],
- [ 'turnOnPasswordChange', 1, Backend::SET_PASSWORD, true],
- ];
- }
- /**
- * @dataProvider actionProvider
- */
- public function testImplementsAction($configurable, $value, $actionCode, $expected) {
- $this->pluginManager->expects($this->once())
- ->method('getImplementedActions')
- ->willReturn(0);
- $this->connection->expects($this->any())
- ->method('__get')
- ->willReturnMap([
- [$configurable, $value],
- ]);
- $this->assertSame($expected, $this->backend->implementsActions($actionCode));
- }
- }
|