Refactor ApiTestCase to get token from ApiQueryTokens
[lhc/web/wiklou.git] / tests / phpunit / includes / api / UserWrapper.php
1 <?php
2
3 class UserWrapper {
4 public $userName;
5 public $password;
6 public $user;
7
8 public function __construct( $userName, $password, $group = '' ) {
9 $this->userName = $userName;
10 $this->password = $password;
11
12 $this->user = User::newFromName( $this->userName );
13 if ( !$this->user->getId() ) {
14 $this->user = User::createNew( $this->userName, [
15 "email" => "test@example.com",
16 "real_name" => "Test User" ] );
17 }
18 TestUser::setPasswordForUser( $this->user, $this->password );
19
20 if ( $group !== '' ) {
21 $this->user->addGroup( $group );
22 }
23 $this->user->saveSettings();
24 }
25 }