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
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
|
2011-05-29 21:31:39 +00:00
|
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-11-10 01:03:43 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice
|
|
|
|
*
|
2011-05-29 21:31:39 +00:00
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-11-10 01:03:43 +00:00
|
|
|
* @link http://book.cakephp.org/view/1196/Testing 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
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
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);
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($http->request['header']['Authorization'], 'Basic bWFyazpzZWNyZXQ=');
|
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);
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($http->request['header']['Proxy-Authorization'], 'Basic bWFyazpzZWNyZXQ=');
|
2010-12-01 16:00:10 +00:00
|
|
|
}
|
|
|
|
|
2011-09-13 03:00:35 +00:00
|
|
|
}
|