summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phpunit/includes/password/MWOldPasswordTest.php
blob: 50100826f1dc02243f6a5d0630f4a00797b2eef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

/**
 * @covers MWOldPassword
 * @covers ParameterizedPassword
 * @covers Password
 */
class MWOldPasswordTest extends PasswordTestCase {
	protected function getTypeConfigs() {
		return [ 'A' => [
			'class' => MWOldPassword::class,
		] ];
	}

	public static function providePasswordTests() {
		return [
			[ true, ':A:5f4dcc3b5aa765d61d8327deb882cf99', 'password' ],
			// Type-B password with incorrect type name is accepted
			[ true, ':A:salt:9842afc7cb949c440c51347ed809362f', 'password' ],
			[ false, ':A:d529e941509eb9e9b9cfaeae1fe7ca23', 'password' ],
			[ false, ':A:salt:d529e941509eb9e9b9cfaeae1fe7ca23', 'password' ],
		];
	}
}