0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-22 16:09:14 +00:00
nextcloud_server/tests/lib/Traits/UserTrait.php
provokateurin 7dc1c7f762
fix(UserTrait): Fix backend initialization
Signed-off-by: provokateurin <kate@provokateurin.de>
2024-10-15 16:50:28 +02:00

51 lines
1.1 KiB
PHP

<?php
/**
* Copyright (c) 2015 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace Test\Traits;
use OC\User\User;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\IUser;
use OCP\Server;
class DummyUser extends User {
private string $uid;
public function __construct(string $uid) {
$this->uid = $uid;
parent::__construct($uid, null, Server::get(IEventDispatcher::class));
}
public function getUID(): string {
return $this->uid;
}
}
/**
* Allow creating users in a temporary backend
*/
trait UserTrait {
/**
* @var \Test\Util\User\Dummy|\OCP\UserInterface
*/
protected $userBackend;
protected function createUser($name, $password): IUser {
$this->userBackend->createUser($name, $password);
return new DummyUser($name);
}
protected function setUpUserTrait() {
$this->userBackend = new \Test\Util\User\Dummy();
\OC::$server->getUserManager()->registerBackend($this->userBackend);
}
protected function tearDownUserTrait() {
\OC::$server->getUserManager()->removeBackend($this->userBackend);
}
}