summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phpunit/includes/password/MWSaltedPasswordTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/tests/phpunit/includes/password/MWSaltedPasswordTest.php')
-rw-r--r--www/wiki/tests/phpunit/includes/password/MWSaltedPasswordTest.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/www/wiki/tests/phpunit/includes/password/MWSaltedPasswordTest.php b/www/wiki/tests/phpunit/includes/password/MWSaltedPasswordTest.php
new file mode 100644
index 00000000..5616868d
--- /dev/null
+++ b/www/wiki/tests/phpunit/includes/password/MWSaltedPasswordTest.php
@@ -0,0 +1,21 @@
+<?php
+
+/**
+ * @covers MWSaltedPassword
+ * @covers ParameterizedPassword
+ * @covers Password
+ */
+class MWSaltedPasswordTest extends PasswordTestCase {
+ protected function getTypeConfigs() {
+ return [ 'B' => [
+ 'class' => MWSaltedPassword::class,
+ ] ];
+ }
+
+ public static function providePasswordTests() {
+ return [
+ [ true, ':B:salt:9842afc7cb949c440c51347ed809362f', 'password' ],
+ [ false, ':B:salt:d529e941509eb9e9b9cfaeae1fe7ca23', 'password' ],
+ ];
+ }
+}