aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Traits/UserTrait.php
blob: 137ca986911eb9238e6513d0c8a4d913a7b7ec53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
 * SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

namespace Test\Traits;

use OC\User\User;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\IUser;
use OCP\IUserManager;
use OCP\Server;

class DummyUser extends User {
	public function __construct(
		private string $uid,
	) {
		parent::__construct($this->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();
		Server::get(IUserManager::class)->registerBackend($this->userBackend);
	}

	protected function tearDownUserTrait() {
		Server::get(IUserManager::class)->removeBackend($this->userBackend);
	}
}