Removed deprecated private OC_User::createUser

All function calls are replaced with the recommended (which was already
the body of the function).
This commit is contained in:
Roeland Jago Douma 2015-12-17 15:10:11 +01:00
parent 7e44ea5da0
commit 835911bce5
17 changed files with 29 additions and 62 deletions

View File

@ -43,9 +43,9 @@ class MigrationTest extends \Test\TestCase {
public static function setUpBeforeClass() { public static function setUpBeforeClass() {
parent::setUpBeforeClass(); parent::setUpBeforeClass();
\OC_User::createUser(self::TEST_ENCRYPTION_MIGRATION_USER1, 'foo'); \OC::$server->getUserManager()->createUser(self::TEST_ENCRYPTION_MIGRATION_USER1, 'foo');
\OC_User::createUser(self::TEST_ENCRYPTION_MIGRATION_USER2, 'foo'); \OC::$server->getUserManager()->createUser(self::TEST_ENCRYPTION_MIGRATION_USER2, 'foo');
\OC_User::createUser(self::TEST_ENCRYPTION_MIGRATION_USER3, 'foo'); \OC::$server->getUserManager()->createUser(self::TEST_ENCRYPTION_MIGRATION_USER3, 'foo');
} }
public static function tearDownAfterClass() { public static function tearDownAfterClass() {

View File

@ -54,7 +54,7 @@ class TagServiceTest extends \Test\TestCase {
protected function setUp() { protected function setUp() {
parent::setUp(); parent::setUp();
$this->user = $this->getUniqueId('user'); $this->user = $this->getUniqueId('user');
\OC_User::createUser($this->user, 'test'); \OC::$server->getUserManager()->createUser($this->user, 'test');
\OC_User::setUserId($this->user); \OC_User::setUserId($this->user);
\OC_Util::setupFS($this->user); \OC_Util::setupFS($this->user);
/** /**

View File

@ -78,7 +78,7 @@ class ShareControllerTest extends \Test\TestCase {
// Create a dummy user // Create a dummy user
$this->user = \OC::$server->getSecureRandom()->getLowStrengthGenerator()->generate(12, ISecureRandom::CHAR_LOWER); $this->user = \OC::$server->getSecureRandom()->getLowStrengthGenerator()->generate(12, ISecureRandom::CHAR_LOWER);
\OC_User::createUser($this->user, $this->user); \OC::$server->getUserManager()->createUser($this->user, $this->user);
\OC_Util::tearDownFS(); \OC_Util::tearDownFS();
$this->loginAsUser($this->user); $this->loginAsUser($this->user);

View File

@ -149,7 +149,7 @@ abstract class TestCase extends \Test\TestCase {
} }
if ($create) { if ($create) {
\OC_User::createUser($user, $password); \OC::$server->getUserManager()->createUser($user, $password);
\OC_Group::createGroup('group'); \OC_Group::createGroup('group');
\OC_Group::addToGroup($user, 'group'); \OC_Group::addToGroup($user, 'group');
} }

View File

@ -636,7 +636,7 @@ class Test_Trashbin extends \Test\TestCase {
public static function loginHelper($user, $create = false) { public static function loginHelper($user, $create = false) {
if ($create) { if ($create) {
try { try {
\OC_User::createUser($user, $user); \OC::$server->getUserManager()->createUser($user, $user);
} catch(\Exception $e) { // catch username is already being used from previous aborted runs } catch(\Exception $e) { // catch username is already being used from previous aborted runs
} }

View File

@ -190,24 +190,6 @@ class OC_User {
} }
} }
/**
* Create a new user
*
* @param string $uid The username of the user to create
* @param string $password The password of the new user
* @throws Exception
* @return bool true/false
*
* Creates a new user. Basic checking of username is done in OC_User
* itself, not in its subclasses.
*
* Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-"
* @deprecated Use \OC::$server->getUserManager()->createUser($uid, $password)
*/
public static function createUser($uid, $password) {
return \OC::$server->getUserManager()->createUser($uid, $password);
}
/** /**
* delete a user * delete a user
* *

View File

@ -71,7 +71,7 @@ class FileCache extends \Test_Cache {
\OC_User::useBackend(new \Test\Util\User\Dummy()); \OC_User::useBackend(new \Test\Util\User\Dummy());
//login //login
\OC_User::createUser('test', 'test'); \OC::$server->getUserManager()->createUser('test', 'test');
$this->user = \OC_User::getUser(); $this->user = \OC_User::getUser();
\OC_User::setUserId('test'); \OC_User::setUserId('test');

View File

@ -317,7 +317,7 @@ class Cache extends \Test\TestCase {
function testSearchByTag() { function testSearchByTag() {
$userId = $this->getUniqueId('user'); $userId = $this->getUniqueId('user');
\OC_User::createUser($userId, $userId); \OC::$server->getUserManager()->createUser($userId, $userId);
$this->loginAsUser($userId); $this->loginAsUser($userId);
$user = new \OC\User\User($userId, null); $user = new \OC\User\User($userId, null);

View File

@ -57,7 +57,7 @@ class UpdaterLegacy extends \Test\TestCase {
self::$user = $this->getUniqueID(); self::$user = $this->getUniqueID();
} }
\OC_User::createUser(self::$user, 'password'); \OC::$server->getUserManager()->createUser(self::$user, 'password');
$this->loginAsUser(self::$user); $this->loginAsUser(self::$user);
Filesystem::init(self::$user, '/' . self::$user . '/files'); Filesystem::init(self::$user, '/' . self::$user . '/files');

View File

@ -325,7 +325,7 @@ class Filesystem extends \Test\TestCase {
public function testHomeMount() { public function testHomeMount() {
$userId = $this->getUniqueID('user_'); $userId = $this->getUniqueID('user_');
\OC_User::createUser($userId, $userId); \OC::$server->getUserManager()->createUser($userId, $userId);
\OC\Files\Filesystem::initMountPoints($userId); \OC\Files\Filesystem::initMountPoints($userId);
@ -360,7 +360,7 @@ class Filesystem extends \Test\TestCase {
// this will trigger the insert // this will trigger the insert
$cache = $localStorage->getCache(); $cache = $localStorage->getCache();
\OC_User::createUser($userId, $userId); \OC::$server->getUserManager()->createUser($userId, $userId);
\OC\Files\Filesystem::initMountPoints($userId); \OC\Files\Filesystem::initMountPoints($userId);
$homeMount = \OC\Files\Filesystem::getStorage('/' . $userId . '/'); $homeMount = \OC\Files\Filesystem::getStorage('/' . $userId . '/');
@ -388,7 +388,7 @@ class Filesystem extends \Test\TestCase {
// no cache path configured // no cache path configured
$config->setSystemValue('cache_path', ''); $config->setSystemValue('cache_path', '');
\OC_User::createUser($userId, $userId); \OC::$server->getUserManager()->createUser($userId, $userId);
\OC\Files\Filesystem::initMountPoints($userId); \OC\Files\Filesystem::initMountPoints($userId);
$this->assertEquals( $this->assertEquals(
@ -416,7 +416,7 @@ class Filesystem extends \Test\TestCase {
$cachePath = \OC_Helper::tmpFolder() . '/extcache'; $cachePath = \OC_Helper::tmpFolder() . '/extcache';
$config->setSystemValue('cache_path', $cachePath); $config->setSystemValue('cache_path', $cachePath);
\OC_User::createUser($userId, $userId); \OC::$server->getUserManager()->createUser($userId, $userId);
\OC\Files\Filesystem::initMountPoints($userId); \OC\Files\Filesystem::initMountPoints($userId);
$this->assertEquals( $this->assertEquals(

View File

@ -52,7 +52,7 @@ class Swift extends \Test\Files\Storage\Storage {
$users = array('test'); $users = array('test');
foreach($users as $userName) { foreach($users as $userName) {
\OC_User::deleteUser($userName); \OC_User::deleteUser($userName);
\OC_User::createUser($userName, $userName); \OC::$server->getUserManager()->createUser($userName, $userName);
} }
// main test user // main test user

View File

@ -32,7 +32,7 @@ class HomeStorageQuota extends \Test\TestCase {
*/ */
function testHomeStorageWrapperWithoutQuota() { function testHomeStorageWrapperWithoutQuota() {
$user1 = $this->getUniqueID(); $user1 = $this->getUniqueID();
\OC_User::createUser($user1, 'test'); \OC::$server->getUserManager()->createUser($user1, 'test');
\OC::$server->getConfig()->setUserValue($user1, 'files', 'quota', 'none'); \OC::$server->getConfig()->setUserValue($user1, 'files', 'quota', 'none');
\OC_User::setUserId($user1); \OC_User::setUserId($user1);
@ -54,7 +54,7 @@ class HomeStorageQuota extends \Test\TestCase {
*/ */
function testHomeStorageWrapperWithQuota() { function testHomeStorageWrapperWithQuota() {
$user1 = $this->getUniqueID(); $user1 = $this->getUniqueID();
\OC_User::createUser($user1, 'test'); \OC::$server->getUserManager()->createUser($user1, 'test');
\OC::$server->getConfig()->setUserValue($user1, 'files', 'quota', '1024'); \OC::$server->getConfig()->setUserValue($user1, 'files', 'quota', '1024');
\OC_User::setUserId($user1); \OC_User::setUserId($user1);

View File

@ -23,7 +23,7 @@ class Test_Helper_Storage extends \Test\TestCase {
parent::setUp(); parent::setUp();
$this->user = $this->getUniqueID('user_'); $this->user = $this->getUniqueID('user_');
\OC_User::createUser($this->user, $this->user); \OC::$server->getUserManager()->createUser($this->user, $this->user);
$this->storage = \OC\Files\Filesystem::getStorage('/'); $this->storage = \OC\Files\Filesystem::getStorage('/');
\OC\Files\Filesystem::tearDown(); \OC\Files\Filesystem::tearDown();

View File

@ -24,7 +24,7 @@ class CertificateManagerTest extends \Test\TestCase {
parent::setUp(); parent::setUp();
$this->username = $this->getUniqueID('', 20); $this->username = $this->getUniqueID('', 20);
OC_User::createUser($this->username, $this->getUniqueID('', 20)); \OC::$server->getUserManager()->createUser($this->username, $this->getUniqueID('', 20));
\OC_Util::tearDownFS(); \OC_Util::tearDownFS();
\OC_User::setUserId(''); \OC_User::setUserId('');

View File

@ -54,13 +54,13 @@ class Test_Share extends \Test\TestCase {
$this->user5 = $this->getUniqueID('user5_'); $this->user5 = $this->getUniqueID('user5_');
$this->user6 = $this->getUniqueID('user6_'); $this->user6 = $this->getUniqueID('user6_');
$this->groupAndUser = $this->getUniqueID('groupAndUser_'); $this->groupAndUser = $this->getUniqueID('groupAndUser_');
OC_User::createUser($this->user1, 'pass'); \OC::$server->getUserManager()->createUser($this->user1, 'pass');
OC_User::createUser($this->user2, 'pass'); \OC::$server->getUserManager()->createUser($this->user2, 'pass');
OC_User::createUser($this->user3, 'pass'); \OC::$server->getUserManager()->createUser($this->user3, 'pass');
OC_User::createUser($this->user4, 'pass'); \OC::$server->getUserManager()->createUser($this->user4, 'pass');
OC_User::createUser($this->user5, 'pass'); \OC::$server->getUserManager()->createUser($this->user5, 'pass');
OC_User::createUser($this->user6, 'pass'); // no group \OC::$server->getUserManager()->createUser($this->user6, 'pass'); // no group
OC_User::createUser($this->groupAndUser, 'pass'); \OC::$server->getUserManager()->createUser($this->groupAndUser, 'pass');
OC_User::setUserId($this->user1); OC_User::setUserId($this->user1);
OC_Group::clearBackends(); OC_Group::clearBackends();
OC_Group::useBackend(new OC_Group_Dummy); OC_Group::useBackend(new OC_Group_Dummy);

View File

@ -44,7 +44,7 @@ class Test_Tags extends \Test\TestCase {
OC_User::clearBackends(); OC_User::clearBackends();
OC_User::useBackend('dummy'); OC_User::useBackend('dummy');
$userId = $this->getUniqueID('user_'); $userId = $this->getUniqueID('user_');
OC_User::createUser($userId, 'pass'); \OC::$server->getUserManager()->createUser($userId, 'pass');
OC_User::setUserId($userId); OC_User::setUserId($userId);
$this->user = new OC\User\User($userId, null); $this->user = new OC\User\User($userId, null);
$this->userSession = $this->getMock('\OCP\IUserSession'); $this->userSession = $this->getMock('\OCP\IUserSession');
@ -290,7 +290,7 @@ class Test_Tags extends \Test\TestCase {
$tagger->tagAs(1, $testTag); $tagger->tagAs(1, $testTag);
$otherUserId = $this->getUniqueID('user2_'); $otherUserId = $this->getUniqueID('user2_');
OC_User::createUser($otherUserId, 'pass'); \OC::$server->getUserManager()->createUser($otherUserId, 'pass');
OC_User::setUserId($otherUserId); OC_User::setUserId($otherUserId);
$otherUserSession = $this->getMock('\OCP\IUserSession'); $otherUserSession = $this->getMock('\OCP\IUserSession');
$otherUserSession $otherUserSession

View File

@ -56,25 +56,10 @@ class User extends TestCase {
$fail = \OC_User::deleteUser('victim'); $fail = \OC_User::deleteUser('victim');
$this->assertFalse($fail); $this->assertFalse($fail);
$success = \OC_User::createUser('victim', 'password'); $success = \OC::$server->getUserManager()->createUser('victim', 'password');
$success = \OC_User::deleteUser('victim'); $success = \OC_User::deleteUser('victim');
$this->assertTrue($success); $this->assertTrue($success);
} }
public function testCreateUser(){
$this->backend->expects($this->any())
->method('implementsActions')
->will($this->returnCallback(function ($actions) {
if ($actions === \OC_USER_BACKEND_CREATE_USER) {
return true;
} else {
return false;
}
}));
$user = \OC_User::createUser('newuser', 'newpassword');
$this->assertEquals('newuser', $user->getUid());
}
} }