summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phpunit/includes/api/UserWrapper.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/tests/phpunit/includes/api/UserWrapper.php')
-rw-r--r--www/wiki/tests/phpunit/includes/api/UserWrapper.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/www/wiki/tests/phpunit/includes/api/UserWrapper.php b/www/wiki/tests/phpunit/includes/api/UserWrapper.php
new file mode 100644
index 00000000..9942a0f2
--- /dev/null
+++ b/www/wiki/tests/phpunit/includes/api/UserWrapper.php
@@ -0,0 +1,25 @@
+<?php
+
+class UserWrapper {
+ public $userName;
+ public $password;
+ public $user;
+
+ public function __construct( $userName, $password, $group = '' ) {
+ $this->userName = $userName;
+ $this->password = $password;
+
+ $this->user = User::newFromName( $this->userName );
+ if ( !$this->user->getId() ) {
+ $this->user = User::createNew( $this->userName, [
+ "email" => "test@example.com",
+ "real_name" => "Test User" ] );
+ }
+ TestUser::setPasswordForUser( $this->user, $this->password );
+
+ if ( $group !== '' ) {
+ $this->user->addGroup( $group );
+ }
+ $this->user->saveSettings();
+ }
+}