2011-01-21 23:10:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-10-10 21:18:48 +00:00
|
|
|
* BasicAuthenticateTest file
|
2011-01-21 23:10:45 +00:00
|
|
|
*
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2011-01-21 23:10:45 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2011-01-21 23:10:45 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2017-06-10 21:33:55 +00:00
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Controller.Component.Auth
|
2011-01-21 23:10:45 +00:00
|
|
|
* @since CakePHP(tm) v 2.0
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2011-01-21 23:10:45 +00:00
|
|
|
*/
|
2011-03-06 00:07:56 +00:00
|
|
|
App::uses('BasicAuthenticate', 'Controller/Component/Auth');
|
|
|
|
App::uses('AppModel', 'Model');
|
|
|
|
App::uses('CakeRequest', 'Network');
|
|
|
|
App::uses('CakeResponse', 'Network');
|
2011-01-22 01:28:24 +00:00
|
|
|
|
2012-03-12 02:20:25 +00:00
|
|
|
require_once CAKE . 'Test' . DS . 'Case' . DS . 'Model' . DS . 'models.php';
|
2011-01-21 23:10:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test case for BasicAuthentication
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Controller.Component.Auth
|
2011-01-21 23:10:45 +00:00
|
|
|
*/
|
|
|
|
class BasicAuthenticateTest extends CakeTestCase {
|
|
|
|
|
2013-05-30 22:11:14 +00:00
|
|
|
/**
|
|
|
|
* Fixtures
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2014-10-31 20:04:09 +00:00
|
|
|
public $fixtures = array('core.user', 'core.auth_user', 'core.article');
|
2011-01-21 23:10:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* setup
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function setUp() {
|
2011-01-21 23:10:45 +00:00
|
|
|
parent::setUp();
|
2011-02-18 04:17:07 +00:00
|
|
|
$this->Collection = $this->getMock('ComponentCollection');
|
|
|
|
$this->auth = new BasicAuthenticate($this->Collection, array(
|
2011-01-21 23:10:45 +00:00
|
|
|
'fields' => array('username' => 'user', 'password' => 'password'),
|
2011-01-22 01:28:24 +00:00
|
|
|
'userModel' => 'User',
|
|
|
|
'realm' => 'localhost',
|
2011-10-19 15:54:08 +00:00
|
|
|
'recursive' => 0
|
2011-01-21 23:10:45 +00:00
|
|
|
));
|
2011-01-22 01:28:24 +00:00
|
|
|
|
2011-01-21 23:10:45 +00:00
|
|
|
$password = Security::hash('password', null, true);
|
2011-06-21 19:38:27 +00:00
|
|
|
$User = ClassRegistry::init('User');
|
|
|
|
$User->updateAll(array('password' => $User->getDataSource()->value($password)));
|
2011-01-22 01:28:24 +00:00
|
|
|
$this->response = $this->getMock('CakeResponse');
|
|
|
|
}
|
|
|
|
|
2011-01-21 23:10:45 +00:00
|
|
|
/**
|
|
|
|
* test applying settings in the constructor
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testConstructor() {
|
2011-02-18 04:17:07 +00:00
|
|
|
$object = new BasicAuthenticate($this->Collection, array(
|
2011-01-21 23:10:45 +00:00
|
|
|
'userModel' => 'AuthUser',
|
|
|
|
'fields' => array('username' => 'user', 'password' => 'password')
|
|
|
|
));
|
|
|
|
$this->assertEquals('AuthUser', $object->settings['userModel']);
|
|
|
|
$this->assertEquals(array('username' => 'user', 'password' => 'password'), $object->settings['fields']);
|
2011-01-22 01:28:24 +00:00
|
|
|
$this->assertEquals(env('SERVER_NAME'), $object->settings['realm']);
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test the authenticate method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testAuthenticateNoData() {
|
2011-01-21 23:10:45 +00:00
|
|
|
$request = new CakeRequest('posts/index', false);
|
2011-01-22 01:28:24 +00:00
|
|
|
|
2013-03-03 20:42:52 +00:00
|
|
|
$this->response->expects($this->never())
|
|
|
|
->method('header');
|
2011-01-22 01:28:24 +00:00
|
|
|
|
2013-03-03 20:42:52 +00:00
|
|
|
$this->assertFalse($this->auth->getUser($request));
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test the authenticate method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testAuthenticateNoUsername() {
|
2011-01-21 23:10:45 +00:00
|
|
|
$request = new CakeRequest('posts/index', false);
|
2011-01-22 01:28:24 +00:00
|
|
|
$_SERVER['PHP_AUTH_PW'] = 'foobar';
|
2011-04-17 11:14:34 +00:00
|
|
|
|
2011-01-22 01:28:24 +00:00
|
|
|
$this->assertFalse($this->auth->authenticate($request, $this->response));
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test the authenticate method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testAuthenticateNoPassword() {
|
2011-01-21 23:10:45 +00:00
|
|
|
$request = new CakeRequest('posts/index', false);
|
2011-01-22 01:28:24 +00:00
|
|
|
$_SERVER['PHP_AUTH_USER'] = 'mariano';
|
2011-02-05 23:41:00 +00:00
|
|
|
$_SERVER['PHP_AUTH_PW'] = null;
|
2011-04-17 11:14:34 +00:00
|
|
|
|
2011-01-22 01:28:24 +00:00
|
|
|
$this->assertFalse($this->auth->authenticate($request, $this->response));
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test the authenticate method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testAuthenticateInjection() {
|
2011-01-21 23:10:45 +00:00
|
|
|
$request = new CakeRequest('posts/index', false);
|
2011-01-22 01:28:24 +00:00
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = '> 1';
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = "' OR 1 = 1";
|
|
|
|
|
2013-03-03 20:42:52 +00:00
|
|
|
$this->assertFalse($this->auth->getUser($request));
|
2011-01-22 01:28:24 +00:00
|
|
|
$this->assertFalse($this->auth->authenticate($request, $this->response));
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
2014-06-03 02:02:28 +00:00
|
|
|
/**
|
|
|
|
* Test that username of 0 works.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testAuthenticateUsernameZero() {
|
|
|
|
$User = ClassRegistry::init('User');
|
|
|
|
$User->updateAll(array('user' => $User->getDataSource()->value('0')), array('user' => 'mariano'));
|
|
|
|
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
|
|
|
$request->data = array('User' => array(
|
|
|
|
'user' => '0',
|
|
|
|
'password' => 'password'
|
|
|
|
));
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = '0';
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = 'password';
|
|
|
|
|
|
|
|
$expected = array(
|
|
|
|
'id' => 1,
|
|
|
|
'user' => '0',
|
|
|
|
'created' => '2007-03-17 01:16:23',
|
|
|
|
'updated' => '2007-03-17 01:18:31'
|
|
|
|
);
|
|
|
|
$this->assertEquals($expected, $this->auth->authenticate($request, $this->response));
|
|
|
|
}
|
|
|
|
|
2011-01-22 01:28:24 +00:00
|
|
|
/**
|
|
|
|
* test that challenge headers are sent when no credentials are found.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testAuthenticateChallenge() {
|
2011-01-22 01:28:24 +00:00
|
|
|
$request = new CakeRequest('posts/index', false);
|
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
2013-03-18 14:58:12 +00:00
|
|
|
try {
|
|
|
|
$this->auth->unauthenticated($request, $this->response);
|
2013-03-31 20:46:52 +00:00
|
|
|
} catch (UnauthorizedException $e) {
|
|
|
|
}
|
2011-04-17 11:14:34 +00:00
|
|
|
|
2013-03-18 14:58:12 +00:00
|
|
|
$this->assertNotEmpty($e);
|
2011-04-17 11:14:34 +00:00
|
|
|
|
2013-03-18 14:58:12 +00:00
|
|
|
$expected = array('WWW-Authenticate: Basic realm="localhost"');
|
|
|
|
$this->assertEquals($expected, $e->responseHeader());
|
2011-01-22 01:28:24 +00:00
|
|
|
}
|
2011-12-06 20:52:48 +00:00
|
|
|
|
2011-01-21 23:10:45 +00:00
|
|
|
/**
|
2013-06-05 07:57:18 +00:00
|
|
|
* test authenticate success
|
2011-01-21 23:10:45 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testAuthenticateSuccess() {
|
2011-01-21 23:10:45 +00:00
|
|
|
$request = new CakeRequest('posts/index', false);
|
2011-01-22 01:28:24 +00:00
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = 'mariano';
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = 'password';
|
|
|
|
|
|
|
|
$result = $this->auth->authenticate($request, $this->response);
|
2011-01-21 23:10:45 +00:00
|
|
|
$expected = array(
|
|
|
|
'id' => 1,
|
|
|
|
'user' => 'mariano',
|
|
|
|
'created' => '2007-03-17 01:16:23',
|
|
|
|
'updated' => '2007-03-17 01:18:31'
|
|
|
|
);
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
|
2017-04-29 01:48:31 +00:00
|
|
|
/**
|
|
|
|
* test authenticate success with header values
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testAuthenticateSuccessFromHeaders() {
|
|
|
|
$_SERVER['HTTP_AUTHORIZATION'] = 'Basic ' . base64_encode('mariano:password');
|
|
|
|
unset($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
|
|
|
|
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
|
|
|
$result = $this->auth->authenticate($request, $this->response);
|
|
|
|
$expected = array(
|
|
|
|
'id' => 1,
|
|
|
|
'user' => 'mariano',
|
|
|
|
'created' => '2007-03-17 01:16:23',
|
|
|
|
'updated' => '2007-03-17 01:18:31'
|
|
|
|
);
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
|
2014-10-31 20:04:09 +00:00
|
|
|
/**
|
|
|
|
* test contain success
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testAuthenticateContainSuccess() {
|
|
|
|
$User = ClassRegistry::init('User');
|
|
|
|
$User->bindModel(array('hasMany' => array('Article')));
|
|
|
|
$User->Behaviors->load('Containable');
|
|
|
|
$this->auth->settings['contain'] = 'Article';
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = 'mariano';
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = 'password';
|
|
|
|
|
|
|
|
$result = $this->auth->authenticate($request, $this->response);
|
|
|
|
$expected = array(
|
|
|
|
'id' => 1,
|
|
|
|
'user_id' => 1,
|
|
|
|
'title' => 'First Article',
|
|
|
|
'body' => 'First Article Body',
|
|
|
|
'published' => 'Y',
|
|
|
|
'created' => '2007-03-18 10:39:23',
|
|
|
|
'updated' => '2007-03-18 10:41:31'
|
|
|
|
);
|
|
|
|
$this->assertEquals($expected, $result['Article'][0]);
|
|
|
|
}
|
|
|
|
|
2014-10-31 19:00:19 +00:00
|
|
|
/**
|
|
|
|
* test userFields success
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testAuthenticateUserFieldsSuccess() {
|
|
|
|
$this->auth->settings['userFields'] = array('id', 'user');
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = 'mariano';
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = 'password';
|
|
|
|
|
|
|
|
$result = $this->auth->authenticate($request, $this->response);
|
|
|
|
$expected = array(
|
|
|
|
'id' => 1,
|
|
|
|
'user' => 'mariano',
|
|
|
|
);
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
|
2014-10-31 20:35:55 +00:00
|
|
|
/**
|
|
|
|
* test userFields and related models success
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testAuthenticateUserFieldsRelatedModelsSuccess() {
|
|
|
|
$User = ClassRegistry::init('User');
|
2015-02-11 03:46:53 +00:00
|
|
|
$User->bindModel(array('hasOne' => array(
|
|
|
|
'Article' => array(
|
|
|
|
'order' => 'Article.id ASC'
|
|
|
|
)
|
|
|
|
)));
|
2014-10-31 20:35:55 +00:00
|
|
|
$this->auth->settings['recursive'] = 0;
|
|
|
|
$this->auth->settings['userFields'] = array('Article.id', 'Article.title');
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = 'mariano';
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = 'password';
|
|
|
|
|
|
|
|
$result = $this->auth->authenticate($request, $this->response);
|
|
|
|
$expected = array(
|
|
|
|
'id' => 1,
|
2014-10-31 20:38:09 +00:00
|
|
|
'title' => 'First Article',
|
2014-10-31 20:35:55 +00:00
|
|
|
);
|
|
|
|
$this->assertEquals($expected, $result['Article']);
|
|
|
|
}
|
|
|
|
|
2011-01-21 23:10:45 +00:00
|
|
|
/**
|
|
|
|
* test scope failure.
|
|
|
|
*
|
2013-03-18 14:58:12 +00:00
|
|
|
* @expectedException UnauthorizedException
|
|
|
|
* @expectedExceptionCode 401
|
2011-01-21 23:10:45 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testAuthenticateFailReChallenge() {
|
2011-01-21 23:10:45 +00:00
|
|
|
$this->auth->settings['scope'] = array('user' => 'nate');
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
2011-01-22 01:28:24 +00:00
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = 'mariano';
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = 'password';
|
|
|
|
|
2013-03-18 14:58:12 +00:00
|
|
|
$this->auth->unauthenticated($request, $this->response);
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
2013-05-20 06:44:35 +00:00
|
|
|
/**
|
|
|
|
* testAuthenticateWithBlowfish
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testAuthenticateWithBlowfish() {
|
|
|
|
$hash = Security::hash('password', 'blowfish');
|
|
|
|
$this->skipIf(strpos($hash, '$2a$') === false, 'Skipping blowfish tests as hashing is not working');
|
|
|
|
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = 'mariano';
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = 'password';
|
|
|
|
|
|
|
|
$User = ClassRegistry::init('User');
|
|
|
|
$User->updateAll(
|
|
|
|
array('password' => $User->getDataSource()->value($hash)),
|
|
|
|
array('User.user' => 'mariano')
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->auth->settings['passwordHasher'] = 'Blowfish';
|
|
|
|
|
|
|
|
$result = $this->auth->authenticate($request, $this->response);
|
|
|
|
$expected = array(
|
|
|
|
'id' => 1,
|
|
|
|
'user' => 'mariano',
|
|
|
|
'created' => '2007-03-17 01:16:23',
|
|
|
|
'updated' => '2007-03-17 01:18:31'
|
|
|
|
);
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
|
2011-04-17 11:14:34 +00:00
|
|
|
}
|