Import: Handle uploads with sha1 starting with 0 properly
[mediawiki.git] / tests / phpunit / includes / api / UserWrapper.php
blobd187feda6379ecb8e391634f05bb1907093b1dcc
1 <?php
3 class UserWrapper {
4 public $userName;
5 public $password;
6 public $user;
8 public function __construct( $userName, $password, $group = '' ) {
9 $this->userName = $userName;
10 $this->password = $password;
12 $this->user = User::newFromName( $this->userName );
13 if ( !$this->user->getID() ) {
14 $this->user = User::createNew( $this->userName, array(
15 "email" => "test@example.com",
16 "real_name" => "Test User" ) );
18 TestUser::setPasswordForUser( $this->user, $this->password );
20 if ( $group !== '' ) {
21 $this->user->addGroup( $group );
23 $this->user->saveSettings();