1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-07-31 10:04:20 +03:00
Files
postfixadmin/tests/PasswordValidationCallableTest.php
2024-11-12 20:10:09 +00:00

32 lines
764 B
PHP

<?php
class PasswordValidationCallableTest extends \PHPUnit\Framework\TestCase
{
public function setUp(): void
{
$c = Config::getInstance();
$all = $c->getAll();
$all['password_validation'] = [
function ($pw) {
if ($pw === 'fail') {
return 'test_fail';
}
}
];
unset($all['min_password_length']);
$c->setAll($all);
parent::setUp();
}
public function testBasic()
{
// anything except 'fail' should work.
$this->assertEmpty(validate_password('str'));
$this->assertEquals([], validate_password('1234asdf'));
$this->assertEquals(['test_fail'], validate_password('fail'));
}
}