2010-11-10 01:03:43 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-10-10 21:18:48 +00:00
|
|
|
* BasicAuthenticationTest file
|
2010-11-10 01:03:43 +00:00
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
2012-04-27 02:49:18 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-11-10 01:03:43 +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
|
2010-11-10 01:03:43 +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)
|
2012-04-27 02:49:18 +00:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Network.Http
|
2010-11-10 01:03:43 +00:00
|
|
|
* @since CakePHP(tm) v 2.0.0
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2010-11-10 01:03:43 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-22 04:36:11 +00:00
|
|
|
App::uses('HttpSocket', 'Network/Http');
|
|
|
|
App::uses('BasicAuthentication', 'Network/Http');
|
2010-11-10 01:03:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BasicMethodTest class
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Network.Http
|
2010-11-10 01:03:43 +00:00
|
|
|
*/
|
2011-09-13 03:00:35 +00:00
|
|
|
class BasicAuthenticationTest extends CakeTestCase {
|
2010-11-10 01:03:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* testAuthentication method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testAuthentication() {
|
|
|
|
$http = new HttpSocket();
|
2010-12-03 02:46:11 +00:00
|
|
|
$auth = array(
|
2010-11-10 01:03:43 +00:00
|
|
|
'method' => 'Basic',
|
|
|
|
'user' => 'mark',
|
|
|
|
'pass' => 'secret'
|
|
|
|
);
|
|
|
|
|
2010-12-03 02:46:11 +00:00
|
|
|
BasicAuthentication::authentication($http, $auth);
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('Basic bWFyazpzZWNyZXQ=', $http->request['header']['Authorization']);
|
2010-11-10 01:03:43 +00:00
|
|
|
}
|
|
|
|
|
2010-12-01 16:00:10 +00:00
|
|
|
/**
|
|
|
|
* testProxyAuthentication method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testProxyAuthentication() {
|
|
|
|
$http = new HttpSocket();
|
2010-12-15 03:54:37 +00:00
|
|
|
$proxy = array(
|
2010-12-01 16:00:10 +00:00
|
|
|
'method' => 'Basic',
|
|
|
|
'user' => 'mark',
|
|
|
|
'pass' => 'secret'
|
|
|
|
);
|
|
|
|
|
2010-12-15 03:54:37 +00:00
|
|
|
BasicAuthentication::proxyAuthentication($http, $proxy);
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('Basic bWFyazpzZWNyZXQ=', $http->request['header']['Proxy-Authorization']);
|
2010-12-01 16:00:10 +00:00
|
|
|
}
|
|
|
|
|
2011-09-13 03:00:35 +00:00
|
|
|
}
|