]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix and tidy up tests after merge conflicts
authorArthur Schiwon <blizzz@arthur-schiwon.de>
Thu, 13 Oct 2016 13:34:40 +0000 (15:34 +0200)
committerArthur Schiwon <blizzz@arthur-schiwon.de>
Thu, 13 Oct 2016 13:34:40 +0000 (15:34 +0200)
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
apps/user_ldap/tests/AccessTest.php

index f7b6fa3633489e7ebec03d1d898a81cf55d2432a..d7d04e31d08e10f39051d0a285c53902034de975 100644 (file)
 namespace OCA\User_LDAP\Tests;
 
 use OCA\User_LDAP\Access;
+use OCA\User_LDAP\Connection;
 use OCA\User_LDAP\FilesystemHelper;
+use OCA\User_LDAP\Helper;
 use OCA\User_LDAP\ILDAPWrapper;
 use OCA\User_LDAP\LogWrapper;
+use OCA\User_LDAP\User\Manager;
 use OCP\IAvatarManager;
 use OCP\IConfig;
 use OCP\IDBConnection;
@@ -45,32 +48,21 @@ use OCP\IUserManager;
  */
 class AccessTest extends \Test\TestCase {
        private function getConnectorAndLdapMock() {
-               static $conMethods;
-               static $accMethods;
-               static $umMethods;
-
-               if(is_null($conMethods) || is_null($accMethods)) {
-                       $conMethods = get_class_methods('\OCA\User_LDAP\Connection');
-                       $accMethods = get_class_methods('\OCA\User_LDAP\Access');
-                       $umMethods  = get_class_methods('\OCA\User_LDAP\User\Manager');
-               }
                $lw  = $this->createMock(ILDAPWrapper::class);
-               $connector = $this->getMockBuilder('\OCA\User_LDAP\Connection')
-                       ->setMethods($conMethods)
+               $connector = $this->getMockBuilder(Connection::class)
                        ->setConstructorArgs([$lw, null, null])
                        ->getMock();
-               $um = $this->getMockBuilder('\OCA\User_LDAP\User\Manager')
+               $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)));
-               $helper = new \OCA\User_LDAP\Helper(\OC::$server->getConfig());
-                               $this->createMock('\OCP\IUserManager')
-                       ])
+                               $this->createMock(IUserManager::class)])
                        ->getMock();
+               $helper = new Helper(\OC::$server->getConfig());
 
                return array($lw, $connector, $um, $helper);
        }