2011-01-21 23:10:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
|
* @package cake.tests.cases.libs.controller.components.auth
|
|
|
|
* @since CakePHP(tm) v 2.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
2011-03-06 00:07:56 +00:00
|
|
|
App::uses('AuthComponent', 'Controller/Component');
|
|
|
|
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
|
|
|
|
2011-01-21 23:10:45 +00:00
|
|
|
|
2011-04-12 02:53:44 +00:00
|
|
|
require_once CAKE_TESTS . 'Case' . DS . 'Model' . DS . 'models.php';
|
2011-01-21 23:10:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test case for BasicAuthentication
|
|
|
|
*
|
|
|
|
* @package cake.test.cases.controller.components.auth
|
|
|
|
*/
|
|
|
|
class BasicAuthenticateTest extends CakeTestCase {
|
|
|
|
|
|
|
|
public $fixtures = array('core.user', 'core.auth_user');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setup
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function setUp() {
|
|
|
|
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-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);
|
|
|
|
ClassRegistry::init('User')->updateAll(array('password' => '"' . $password . '"'));
|
2011-01-22 01:28:24 +00:00
|
|
|
$this->server = $_SERVER;
|
|
|
|
$this->response = $this->getMock('CakeResponse');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* teardown
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function tearDown() {
|
|
|
|
parent::tearDown();
|
|
|
|
$_SERVER = $this->server;
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test applying settings in the constructor
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
function testAuthenticateNoData() {
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
2011-01-22 01:28:24 +00:00
|
|
|
|
|
|
|
$this->response->expects($this->once())
|
|
|
|
->method('header')
|
|
|
|
->with('WWW-Authenticate: Basic realm="localhost"');
|
|
|
|
|
|
|
|
$this->assertFalse($this->auth->authenticate($request, $this->response));
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test the authenticate method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testAuthenticateNoUsername() {
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
2011-01-22 01:28:24 +00:00
|
|
|
$_SERVER['PHP_AUTH_PW'] = 'foobar';
|
|
|
|
|
|
|
|
$this->response->expects($this->once())
|
|
|
|
->method('header')
|
|
|
|
->with('WWW-Authenticate: Basic realm="localhost"');
|
|
|
|
|
|
|
|
$this->assertFalse($this->auth->authenticate($request, $this->response));
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test the authenticate method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testAuthenticateNoPassword() {
|
|
|
|
$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-01-22 01:28:24 +00:00
|
|
|
|
|
|
|
$this->response->expects($this->once())
|
|
|
|
->method('header')
|
|
|
|
->with('WWW-Authenticate: Basic realm="localhost"');
|
|
|
|
|
|
|
|
$this->assertFalse($this->auth->authenticate($request, $this->response));
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test the authenticate method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testAuthenticateInjection() {
|
|
|
|
$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";
|
|
|
|
|
|
|
|
$this->assertFalse($this->auth->authenticate($request, $this->response));
|
2011-01-21 23:10:45 +00:00
|
|
|
}
|
|
|
|
|
2011-01-22 01:28:24 +00:00
|
|
|
/**
|
|
|
|
* test that challenge headers are sent when no credentials are found.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testAuthenticateChallenge() {
|
|
|
|
$request = new CakeRequest('posts/index', false);
|
|
|
|
$request->addParams(array('pass' => array(), 'named' => array()));
|
|
|
|
|
2011-01-22 01:41:02 +00:00
|
|
|
$this->response->expects($this->at(0))
|
2011-01-22 01:28:24 +00:00
|
|
|
->method('header')
|
|
|
|
->with('WWW-Authenticate: Basic realm="localhost"');
|
|
|
|
|
2011-01-22 01:41:02 +00:00
|
|
|
$this->response->expects($this->at(1))
|
|
|
|
->method('send');
|
|
|
|
|
2011-01-22 01:28:24 +00:00
|
|
|
$result = $this->auth->authenticate($request, $this->response);
|
|
|
|
$this->assertFalse($result);
|
|
|
|
}
|
2011-01-21 23:10:45 +00:00
|
|
|
/**
|
|
|
|
* test authenticate sucesss
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testAuthenticateSuccess() {
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test scope failure.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-01-22 01:28:24 +00:00
|
|
|
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';
|
|
|
|
|
|
|
|
$this->response->expects($this->at(0))
|
|
|
|
->method('header')
|
|
|
|
->with('WWW-Authenticate: Basic realm="localhost"');
|
|
|
|
|
|
|
|
$this->response->expects($this->at(1))
|
|
|
|
->method('statusCode')
|
|
|
|
->with(401);
|
|
|
|
|
2011-02-05 23:41:00 +00:00
|
|
|
$this->response->expects($this->at(2))
|
2011-01-22 01:28:24 +00:00
|
|
|
->method('send');
|
2011-01-21 23:10:45 +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
|
|
|
}
|
|
|
|
|
|
|
|
}
|