summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phpunit/includes/auth/UsernameAuthenticationRequestTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/tests/phpunit/includes/auth/UsernameAuthenticationRequestTest.php')
-rw-r--r--www/wiki/tests/phpunit/includes/auth/UsernameAuthenticationRequestTest.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/www/wiki/tests/phpunit/includes/auth/UsernameAuthenticationRequestTest.php b/www/wiki/tests/phpunit/includes/auth/UsernameAuthenticationRequestTest.php
new file mode 100644
index 00000000..63628dd8
--- /dev/null
+++ b/www/wiki/tests/phpunit/includes/auth/UsernameAuthenticationRequestTest.php
@@ -0,0 +1,34 @@
+<?php
+
+namespace MediaWiki\Auth;
+
+/**
+ * @group AuthManager
+ * @covers MediaWiki\Auth\UsernameAuthenticationRequest
+ */
+class UsernameAuthenticationRequestTest extends AuthenticationRequestTestCase {
+
+ protected function getInstance( array $args = [] ) {
+ return new UsernameAuthenticationRequest();
+ }
+
+ public function provideLoadFromSubmission() {
+ return [
+ 'Empty request' => [
+ [],
+ [],
+ false
+ ],
+ 'Username' => [
+ [],
+ $data = [ 'username' => 'User' ],
+ $data,
+ ],
+ 'Username empty' => [
+ [],
+ [ 'username' => '' ],
+ false
+ ],
+ ];
+ }
+}