| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 2.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Auth;
- use Cake\Auth\BasicAuthenticate;
- use Cake\I18n\Time;
- use Cake\Network\Exception\UnauthorizedException;
- use Cake\Network\Request;
- use Cake\ORM\Entity;
- use Cake\ORM\TableRegistry;
- use Cake\TestSuite\TestCase;
- use Cake\Utility\Security;
- /**
- * Test case for BasicAuthentication
- *
- */
- class BasicAuthenticateTest extends TestCase {
- /**
- * Fixtures
- *
- * @var array
- */
- public $fixtures = array('core.user', 'core.auth_user');
- /**
- * setup
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $this->Collection = $this->getMock('Cake\Controller\ComponentRegistry');
- $this->auth = new BasicAuthenticate($this->Collection, array(
- 'userModel' => 'Users',
- 'realm' => 'localhost'
- ));
- $password = password_hash('password', PASSWORD_BCRYPT);
- $User = TableRegistry::get('Users');
- $User->updateAll(['password' => $password], []);
- $this->response = $this->getMock('Cake\Network\Response');
- }
- /**
- * test applying settings in the constructor
- *
- * @return void
- */
- public function testConstructor() {
- $object = new BasicAuthenticate($this->Collection, array(
- 'userModel' => 'AuthUser',
- 'fields' => array('username' => 'user', 'password' => 'password')
- ));
- $this->assertEquals('AuthUser', $object->config('userModel'));
- $this->assertEquals(array('username' => 'user', 'password' => 'password'), $object->config('fields'));
- }
- /**
- * test the authenticate method
- *
- * @return void
- */
- public function testAuthenticateNoData() {
- $request = new Request('posts/index');
- $this->response->expects($this->never())
- ->method('header');
- $this->assertFalse($this->auth->getUser($request));
- }
- /**
- * test the authenticate method
- *
- * @return void
- */
- public function testAuthenticateNoUsername() {
- $request = new Request([
- 'url' => 'posts/index',
- 'environment' => ['PHP_AUTH_PW' => 'foobar']
- ]);
- $this->assertFalse($this->auth->authenticate($request, $this->response));
- }
- /**
- * test the authenticate method
- *
- * @return void
- */
- public function testAuthenticateNoPassword() {
- $request = new Request([
- 'url' => 'posts/index',
- 'environment' => ['PHP_AUTH_USER' => 'mariano']
- ]);
- $this->assertFalse($this->auth->authenticate($request, $this->response));
- }
- /**
- * test the authenticate method
- *
- * @return void
- */
- public function testAuthenticateInjection() {
- $request = new Request([
- 'url' => 'posts/index',
- 'environment' => [
- 'PHP_AUTH_USER' => '> 1',
- 'PHP_AUTH_PW' => "' OR 1 = 1"
- ]
- ]);
- $request->addParams(array('pass' => array()));
- $this->assertFalse($this->auth->getUser($request));
- $this->assertFalse($this->auth->authenticate($request, $this->response));
- }
- /**
- * Test that username of 0 works.
- *
- * @return void
- */
- public function testAuthenticateUsernameZero() {
- $User = TableRegistry::get('Users');
- $User->updateAll(['username' => '0'], ['username' => 'mariano']);
- $request = new Request('posts/index');
- $request->data = array('User' => array(
- 'user' => '0',
- 'password' => 'password'
- ));
- $_SERVER['PHP_AUTH_USER'] = '0';
- $_SERVER['PHP_AUTH_PW'] = 'password';
- $expected = array(
- 'id' => 1,
- 'username' => '0',
- 'created' => new Time('2007-03-17 01:16:23'),
- 'updated' => new Time('2007-03-17 01:18:31'),
- );
- $this->assertEquals($expected, $this->auth->authenticate($request, $this->response));
- }
- /**
- * test that challenge headers are sent when no credentials are found.
- *
- * @return void
- */
- public function testAuthenticateChallenge() {
- $request = new Request('posts/index');
- $request->addParams(array('pass' => array()));
- try {
- $this->auth->unauthenticated($request, $this->response);
- } catch (UnauthorizedException $e) {
- }
- $this->assertNotEmpty($e);
- $expected = array('WWW-Authenticate: Basic realm="localhost"');
- $this->assertEquals($expected, $e->responseHeader());
- }
- /**
- * test authenticate success
- *
- * @return void
- */
- public function testAuthenticateSuccess() {
- $request = new Request([
- 'url' => 'posts/index',
- 'environment' => [
- 'PHP_AUTH_USER' => 'mariano',
- 'PHP_AUTH_PW' => 'password'
- ]
- ]);
- $request->addParams(array('pass' => array()));
- $result = $this->auth->authenticate($request, $this->response);
- $expected = array(
- 'id' => 1,
- 'username' => 'mariano',
- 'created' => new Time('2007-03-17 01:16:23'),
- 'updated' => new Time('2007-03-17 01:18:31')
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * test scope failure.
- *
- * @expectedException \Cake\Network\Exception\UnauthorizedException
- * @expectedExceptionCode 401
- * @return void
- */
- public function testAuthenticateFailReChallenge() {
- $this->auth->config('scope.username', 'nate');
- $request = new Request([
- 'url' => 'posts/index',
- 'environment' => [
- 'PHP_AUTH_USER' => 'mariano',
- 'PHP_AUTH_PW' => 'password'
- ]
- ]);
- $request->addParams(array('pass' => array()));
- $this->auth->unauthenticated($request, $this->response);
- }
- }
|