| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Oauth
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- require_once 'Zend/Oauth.php';
- class Test_Http_Client_19485876 extends Zend_Http_Client {}
- /**
- * @category Zend
- * @package Zend_Oauth
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Oauth
- */
- class Zend_OauthTest extends PHPUnit_Framework_TestCase
- {
- public function teardown()
- {
- Zend_Oauth::clearHttpClient();
- }
- public function testCanSetCustomHttpClient()
- {
- Zend_Oauth::setHttpClient(new Test_Http_Client_19485876());
- $this->assertTrue(Zend_Oauth::getHttpClient() instanceof Test_Http_Client_19485876);
- }
- public function testGetHttpClientResetsParameters()
- {
- $client = new Test_Http_Client_19485876();
- $client->setParameterGet(array('key'=>'value'));
- Zend_Oauth::setHttpClient($client);
- $resetClient = Zend_Oauth::getHttpClient();
- $resetClient->setUri('http://www.example.com');
- $this->assertEquals('http://www.example.com:80', $resetClient->getUri(true));
- }
- public function testGetHttpClientResetsAuthorizationHeader()
- {
- $client = new Test_Http_Client_19485876();
- $client->setHeaders('Authorization', 'realm="http://www.example.com",oauth_version="1.0"');
- Zend_Oauth::setHttpClient($client);
- $resetClient = Zend_Oauth::getHttpClient();
- $this->assertEquals(null, $resetClient->getHeader('Authorization'));
- }
- /**
- * @group ZF-10182
- * @dataProvider providerOauthClientOauthOptions
- */
- public function testOauthClientOauthOptionsInConstructor($oauthOptions)
- {
- require_once 'Zend/Oauth/Client.php';
- $client = new Zend_Oauth_Client($oauthOptions);
- $this->assertEquals('GET', $client->getRequestMethod());
- $this->assertEquals('http://www.example.com', $client->getSiteUrl());
- }
- /**
- * @group ZF-10182
- * @dataProvider providerOauthClientConfigHttpClient
- */
- public function testOauthClientConfigHttpClientInConstructor($configHttpClient, $expected)
- {
- require_once 'Zend/Oauth/Client.php';
- $client = new Zend_Oauth_Client(null, null, $configHttpClient);
- $config = $client->getAdapter()->getConfig();
- $this->assertEquals($expected['rfc'], $config['rfc3986_strict']);
- $this->assertEquals($expected['useragent'], $config['useragent']);
- $this->assertEquals($expected['timeout'], $config['timeout']);
- }
- public function providerOauthClientOauthOptions()
- {
- $options = array(
- 'requestMethod' => 'GET',
- 'siteUrl' => 'http://www.example.com'
- );
- require_once 'Zend/Config.php';
- return array(
- array($options),
- array(new Zend_Config($options))
- );
- }
- public function providerOauthClientConfigHttpClient()
- {
- return array(
- array(
- array('adapter' => 'Zend_Http_Client_Adapter_Test'),
- array('rfc' => true,
- 'timeout' => 10,
- 'useragent' => 'Zend_Http_Client'
- )
- ),
- array(
- new Zend_Config(array('adapter' => 'Zend_Http_Client_Adapter_Test')),
- array('rfc' => true,
- 'timeout' => 10,
- 'useragent' => 'Zend_Http_Client'
- )
- ),
- array(
- new Zend_Config(array(
- 'adapter' => 'Zend_Http_Client_Adapter_Test',
- 'rfc3986_strict' => false,
- 'timeout' => 100,
- 'useragent' => 'Zend_Http_ClientCustom'
- )),
- array('rfc' => false,
- 'timeout' => 100,
- 'useragent' => 'Zend_Http_ClientCustom'
- )
- ),
- array(
- null,
- array('rfc' => true,
- 'timeout' => 10,
- 'useragent' => 'Zend_Http_Client'
- )
- ),
- );
- }
- /**
- * @group ZF-10851
- */
- public function testOauthClientAcceptsRealmConfigurationOption()
- {
- $options = array(
- 'realm' => 'http://www.example.com'
- );
- require_once 'Zend/Oauth/Client.php';
- $client = new Zend_Oauth_Client($options);
- $this->assertEquals('http://www.example.com', $client->getRealm());
- }
- /**
- * @group ZF-10851
- */
- public function testOauthClientPreparationWithRealmConfigurationOption()
- {
- require_once "Zend/Oauth/Token/Access.php";
- $options = array(
- 'requestMethod' => 'GET',
- 'siteUrl' => 'http://www.example.com',
- 'realm' => 'someRealm'
- );
- $token = new Zend_Oauth_Token_Access();
- require_once 'Zend/Oauth/Client.php';
- $client = new Zend_Oauth_Client($options);
- $this->assertEquals(NULL,$client->getHeader('Authorization'));
- $client->setToken($token);
- $client->setUri('http://oauth.example.com');
- $client->prepareOauth();
- $this->assertNotContains('realm=""',$client->getHeader('Authorization'));
- $this->assertContains('realm="someRealm"',$client->getHeader('Authorization'));
- }
-
- /**
- * @group ZF-11663
- */
- public function testOauthClientAcceptsGetParametersThroughSetter()
- {
- require_once "Zend/Oauth/Token/Access.php";
- $token = new Zend_Oauth_Token_Access();
-
- $options = array(
- 'requestMethod' => 'GET',
- 'requestScheme' => Zend_Oauth::REQUEST_SCHEME_QUERYSTRING,
- 'realm' => 'someRealm'
- );
-
- require_once 'Zend/Oauth/Client.php';
- $client = new Zend_Oauth_Client($options);
- $client->setToken($token);
- $client->setUri('http://www.example.com/?test=FooBar');
- $queryString = $client->getUri()->getQuery();
-
- // Check that query string was set properly
- $this->assertSame('test=FooBar', $queryString);
-
- // Change the GET parameters
- $client->setParameterGet('test', 'FooBaz');
- $client->setParameterGet('second', 'TestTest');
-
- // Prepare the OAuth request
- $client->prepareOauth();
- $queryString = $client->getUri()->getQuery();
-
- // Ensure that parameter 'test' is unchanged, as URI parameters
- // should take precedence over ones set with setParameterGet
- $this->assertContains('test=FooBar', $queryString);
-
- // Ensure that new parameter was added
- $this->assertContains('second=TestTest', $queryString);
- }
- }
|