97 lines
2.9 KiB
PHP
97 lines
2.9 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
|
|
* Website: http://www.espocrm.com
|
|
*
|
|
* EspoCRM is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* EspoCRM is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
|
|
************************************************************************/
|
|
|
|
namespace tests\Espo\Core\Utils;
|
|
|
|
use tests\ReflectionHelper;
|
|
|
|
class PasswordHashTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
protected $object;
|
|
|
|
protected $objects;
|
|
|
|
protected $reflection;
|
|
|
|
protected $salt = 'bdaff81c7b8db54d';
|
|
|
|
protected function setUp()
|
|
{
|
|
$this->objects['config'] = $this->getMockBuilder('\Espo\Core\Utils\Config')->disableOriginalConstructor()->getMock();
|
|
|
|
$this->object = new \Espo\Core\Utils\PasswordHash($this->objects['config']);
|
|
|
|
$this->reflection = new ReflectionHelper($this->object);
|
|
}
|
|
|
|
protected function tearDown()
|
|
{
|
|
$this->object = NULL;
|
|
}
|
|
|
|
public function testGenerateSalt()
|
|
{
|
|
$salt = $this->object->generateSalt();
|
|
|
|
$this->assertEquals(16, strlen($salt));
|
|
}
|
|
|
|
public function testNormalizeSalt()
|
|
{
|
|
$salt = $this->object->generateSalt();
|
|
|
|
$result = '$6$' . $salt . '$';
|
|
$this->assertEquals($result, $this->reflection->invokeMethod('normalizeSalt', array($salt)));
|
|
}
|
|
|
|
public function testGetSalt()
|
|
{
|
|
$this->objects['config']
|
|
->expects($this->once())
|
|
->method('get')
|
|
->will($this->returnValue($this->salt));
|
|
|
|
$result = '$6$' . $this->salt . '$';
|
|
$this->assertEquals($result, $this->reflection->invokeMethod('getSalt'));
|
|
}
|
|
|
|
public function testGetSaltException()
|
|
{
|
|
$this->setExpectedException('\Espo\Core\Exceptions\Error');
|
|
|
|
$this->reflection->invokeMethod('getSalt');
|
|
}
|
|
|
|
public function testHash()
|
|
{
|
|
$password = 'test-password';
|
|
|
|
$this->objects['config']
|
|
->expects($this->once())
|
|
->method('get')
|
|
->will($this->returnValue($this->salt));
|
|
|
|
$result = '4gDlJKdkj/MMo2axSwvvWUv0ktSUeGpis/wLcpL8aEBUxXTVa.rxFb1cfKzTiSE4ookBdNpLMheJmtZqzDSRA0';
|
|
$this->assertEquals($result, $this->object->hash($password));
|
|
}
|
|
}
|