2010-10-15 05:03:19 +02:00
|
|
|
<?php
|
2016-06-23 01:37:22 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\Security\Tests;
|
|
|
|
|
2016-06-23 01:37:22 +02:00
|
|
|
use SilverStripe\Security\PasswordValidator;
|
|
|
|
use SilverStripe\Security\Member;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
class PasswordValidatorTest extends SapphireTest
|
|
|
|
{
|
|
|
|
|
|
|
|
public function testValidate()
|
|
|
|
{
|
|
|
|
$v = new PasswordValidator();
|
|
|
|
$r = $v->validate('', new Member());
|
|
|
|
$this->assertTrue($r->isValid(), 'Empty password is valid by default');
|
|
|
|
|
|
|
|
$r = $v->validate('mypassword', new Member());
|
|
|
|
$this->assertTrue($r->isValid(), 'Non-Empty password is valid by default');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testValidateMinLength()
|
|
|
|
{
|
|
|
|
$v = new PasswordValidator();
|
|
|
|
|
|
|
|
$v->minLength(4);
|
|
|
|
$r = $v->validate('123', new Member());
|
|
|
|
$this->assertFalse($r->isValid(), 'Password too short');
|
|
|
|
|
|
|
|
$v->minLength(4);
|
|
|
|
$r = $v->validate('1234', new Member());
|
|
|
|
$this->assertTrue($r->isValid(), 'Password long enough');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testValidateMinScore()
|
|
|
|
{
|
|
|
|
$v = new PasswordValidator();
|
|
|
|
$v->characterStrength(3, array("lowercase", "uppercase", "digits", "punctuation"));
|
|
|
|
|
|
|
|
$r = $v->validate('aA', new Member());
|
|
|
|
$this->assertFalse($r->isValid(), 'Passing too few tests');
|
|
|
|
|
|
|
|
$r = $v->validate('aA1', new Member());
|
|
|
|
$this->assertTrue($r->isValid(), 'Passing enough tests');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testHistoricalPasswordCount()
|
|
|
|
{
|
|
|
|
$this->markTestIncomplete();
|
|
|
|
}
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|