'1234567890'); $consumer = new Zend_Oauth_Consumer($config); $this->assertEquals('1234567890', $consumer->getConsumerKey()); } public function testConstructorSetsConsumerSecret() { $config = array('consumerSecret'=>'0987654321'); $consumer = new Zend_Oauth_Consumer($config); $this->assertEquals('0987654321', $consumer->getConsumerSecret()); } public function testSetsSignatureMethodFromOptionsArray() { $options = array( 'signatureMethod' => 'rsa-sha1' ); $consumer = new Zend_Oauth_Consumer($options); $this->assertEquals('RSA-SHA1', $consumer->getSignatureMethod()); } public function testSetsRequestMethodFromOptionsArray() // add back { $options = array( 'requestMethod' => Zend_Oauth::GET ); $consumer = new Zend_Oauth_Consumer($options); $this->assertEquals(Zend_Oauth::GET, $consumer->getRequestMethod()); } public function testSetsRequestSchemeFromOptionsArray() { $options = array( 'requestScheme' => Zend_Oauth::REQUEST_SCHEME_POSTBODY ); $consumer = new Zend_Oauth_Consumer($options); $this->assertEquals(Zend_Oauth::REQUEST_SCHEME_POSTBODY, $consumer->getRequestScheme()); } public function testSetsVersionFromOptionsArray() { $options = array( 'version' => '1.1' ); $consumer = new Zend_Oauth_Consumer($options); $this->assertEquals('1.1', $consumer->getVersion()); } public function testSetsCallbackUrlFromOptionsArray() { $options = array( 'callbackUrl' => 'http://www.example.com/local' ); $consumer = new Zend_Oauth_Consumer($options); $this->assertEquals('http://www.example.com/local', $consumer->getCallbackUrl()); } public function testSetsRequestTokenUrlFromOptionsArray() { $options = array( 'requestTokenUrl' => 'http://www.example.com/request' ); $consumer = new Zend_Oauth_Consumer($options); $this->assertEquals('http://www.example.com/request', $consumer->getRequestTokenUrl()); } public function testSetsUserAuthorizationUrlFromOptionsArray() { $options = array( 'userAuthorizationUrl' => 'http://www.example.com/authorize' ); $consumer = new Zend_Oauth_Consumer($options); $this->assertEquals('http://www.example.com/authorize', $consumer->getUserAuthorizationUrl()); } public function testSetsAccessTokenUrlFromOptionsArray() { $options = array( 'accessTokenUrl' => 'http://www.example.com/access' ); $consumer = new Zend_Oauth_Consumer($options); $this->assertEquals('http://www.example.com/access', $consumer->getAccessTokenUrl()); } public function testSetSignatureMethodThrowsExceptionForInvalidMethod() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Zend_Oauth_Consumer($config); try { $consumer->setSignatureMethod('buckyball'); $this->fail('Invalid signature method accepted by setSignatureMethod'); } catch (Zend_Oauth_Exception $e) { } } public function testSetRequestMethodThrowsExceptionForInvalidMethod() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Zend_Oauth_Consumer($config); try { $consumer->setRequestMethod('buckyball'); $this->fail('Invalid request method accepted by setRequestMethod'); } catch (Zend_Oauth_Exception $e) { } } public function testSetRequestSchemeThrowsExceptionForInvalidMethod() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Zend_Oauth_Consumer($config); try { $consumer->setRequestScheme('buckyball'); $this->fail('Invalid request scheme accepted by setRequestScheme'); } catch (Zend_Oauth_Exception $e) { } } public function testSetLocalUrlThrowsExceptionForInvalidUrl() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Zend_Oauth_Consumer($config); try { $consumer->setLocalUrl('buckyball'); $this->fail('Invalid url accepted by setLocalUrl'); } catch (Zend_Oauth_Exception $e) { } } public function testSetRequestTokenUrlThrowsExceptionForInvalidUrl() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Zend_Oauth_Consumer($config); try { $consumer->setRequestTokenUrl('buckyball'); $this->fail('Invalid url accepted by setRequestUrl'); } catch (Zend_Oauth_Exception $e) { } } public function testSetUserAuthorizationUrlThrowsExceptionForInvalidUrl() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Zend_Oauth_Consumer($config); try { $consumer->setUserAuthorizationUrl('buckyball'); $this->fail('Invalid url accepted by setUserAuthorizationUrl'); } catch (Zend_Oauth_Exception $e) { } } public function testSetAccessTokenUrlThrowsExceptionForInvalidUrl() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Zend_Oauth_Consumer($config); try { $consumer->setAccessTokenUrl('buckyball'); $this->fail('Invalid url accepted by setAccessTokenUrl'); } catch (Zend_Oauth_Exception $e) { } } public function testGetRequestTokenReturnsInstanceOfOauthTokenRequest() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Zend_Oauth_Consumer($config); $token = $consumer->getRequestToken(null, null, new Test_Http_RequestToken_48231); $this->assertTrue($token instanceof Zend_Oauth_Token_Request); } public function testGetRedirectUrlReturnsUserAuthorizationUrlWithParameters() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321', 'userAuthorizationUrl'=>'http://www.example.com/authorize'); $consumer = new Test_Consumer_48231($config); $params = array('foo'=>'bar'); $uauth = new Zend_Oauth_Http_UserAuthorization($consumer, $params); $token = new Zend_Oauth_Token_Request; $token->setParams(array('oauth_token'=>'123456', 'oauth_token_secret'=>'654321')); $redirectUrl = $consumer->getRedirectUrl($params, $token, $uauth); $this->assertEquals( 'http://www.example.com/authorize?oauth_token=123456&oauth_callback=http%3A%2F%2Fwww.example.com%2Flocal&foo=bar', $redirectUrl ); } public function testGetAccessTokenReturnsInstanceOfOauthTokenAccess() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Zend_Oauth_Consumer($config); $rtoken = new Zend_Oauth_Token_Request; $rtoken->setToken('token'); $token = $consumer->getAccessToken(array('oauth_token'=>'token'), $rtoken, null, new Test_Http_AccessToken_48231); $this->assertTrue($token instanceof Zend_Oauth_Token_Access); } public function testGetLastRequestTokenReturnsInstanceWhenExists() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Test_Consumer_48231($config); $this->assertTrue($consumer->getLastRequestToken() instanceof Zend_Oauth_Token_Request); } public function testGetLastAccessTokenReturnsInstanceWhenExists() { $config = array('consumerKey'=>'12345','consumerSecret'=>'54321'); $consumer = new Test_Consumer_48231($config); $this->assertTrue($consumer->getLastAccessToken() instanceof Zend_Oauth_Token_Access); } } class Test_Http_RequestToken_48231 extends Zend_Oauth_Http_RequestToken { public function __construct(){} public function execute(array $params = null){ $return = new Zend_Oauth_Token_Request; return $return;} public function setParams(array $customServiceParameters){} } class Test_Http_AccessToken_48231 extends Zend_Oauth_Http_AccessToken { public function __construct(){} public function execute(array $params = null){ $return = new Zend_Oauth_Token_Access; return $return;} public function setParams(array $customServiceParameters){} } class Test_Consumer_48231 extends Zend_Oauth_Consumer { public function __construct(array $options = array()){ $this->_requestToken = new Zend_Oauth_Token_Request; $this->_accessToken = new Zend_Oauth_Token_Access; parent::__construct($options);} public function getCallbackUrl(){ return 'http://www.example.com/local';} }