3 * Testing framework for the password hashes
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
26 abstract class PasswordTestCase
extends MediaWikiTestCase
{
28 * @var PasswordFactory
30 protected $passwordFactory;
32 protected function setUp() {
35 $this->passwordFactory
= new PasswordFactory();
36 foreach ( $this->getTypeConfigs() as $type => $config ) {
37 $this->passwordFactory
->register( $type, $config );
42 * Return an array of configs to be used for this class's password type.
46 abstract protected function getTypeConfigs();
49 * An array of tests in the form of (bool, string, string), where the first
50 * element is whether the second parameter (a password hash) and the third
51 * parameter (a password) should match.
56 public static function providePasswordTests() {
57 throw new MWException( "Not implemented" );
61 * @dataProvider providePasswordTests
63 public function testHashing( $shouldMatch, $hash, $password ) {
64 $hash = $this->passwordFactory
->newFromCiphertext( $hash );
65 $password = $this->passwordFactory
->newFromPlaintext( $password, $hash );
66 $this->assertSame( $shouldMatch, $hash->equals( $password ) );
70 * @dataProvider providePasswordTests
72 public function testStringSerialization( $shouldMatch, $hash, $password ) {
73 $hashObj = $this->passwordFactory
->newFromCiphertext( $hash );
74 $serialized = $hashObj->toString();
75 $unserialized = $this->passwordFactory
->newFromCiphertext( $serialized );
76 $this->assertTrue( $hashObj->equals( $unserialized ) );
80 * @dataProvider providePasswordTests
81 * @covers InvalidPassword::equals
82 * @covers InvalidPassword::toString
84 public function testInvalidUnequalNormal( $shouldMatch, $hash, $password ) {
85 $invalid = $this->passwordFactory
->newFromCiphertext( null );
86 $normal = $this->passwordFactory
->newFromCiphertext( $hash );
88 $this->assertFalse( $invalid->equals( $normal ) );
89 $this->assertFalse( $normal->equals( $invalid ) );