Beispiel #1
0
 /**
  * @covers OAuth\OAuth2\Service\Linkedin::__construct
  * @covers OAuth\OAuth2\Service\Linkedin::getAuthorizationMethod
  */
 public function testGetAuthorizationMethod()
 {
     $client = $this->getMock('\\OAuth\\Common\\Http\\Client\\ClientInterface');
     $client->expects($this->once())->method('retrieveResponse')->will($this->returnArgument(2));
     $token = $this->getMock('\\OAuth\\OAuth2\\Token\\TokenInterface');
     $token->expects($this->once())->method('getEndOfLife')->will($this->returnValue(TokenInterface::EOL_NEVER_EXPIRES));
     $token->expects($this->once())->method('getAccessToken')->will($this->returnValue('foo'));
     $storage = $this->getMock('\\OAuth\\Common\\Storage\\TokenStorageInterface');
     $storage->expects($this->once())->method('retrieveAccessToken')->will($this->returnValue($token));
     $service = new Linkedin($this->getMock('\\OAuth\\Common\\Consumer\\CredentialsInterface'), $client, $storage);
     $headers = $service->request('https://pieterhordijk.com/my/awesome/path');
     $this->assertTrue(array_key_exists('Authorization', $headers));
     $this->assertTrue(in_array('Bearer foo', $headers, true));
 }
 /**
  * @covers OAuth\OAuth2\Service\Linkedin::__construct
  * @covers OAuth\OAuth2\Service\Linkedin::getAuthorizationMethod
  */
 public function testGetAuthorizationMethod()
 {
     $client = $this->getMock('\\OAuth\\Common\\Http\\Client\\ClientInterface');
     $client->expects($this->once())->method('retrieveResponse')->will($this->returnArgument(0));
     $token = $this->getMock('\\OAuth\\OAuth2\\Token\\TokenInterface');
     $token->expects($this->once())->method('getEndOfLife')->will($this->returnValue(TokenInterface::EOL_NEVER_EXPIRES));
     $token->expects($this->once())->method('getAccessToken')->will($this->returnValue('foo'));
     $storage = $this->getMock('\\OAuth\\Common\\Storage\\TokenStorageInterface');
     $storage->expects($this->once())->method('retrieveAccessToken')->will($this->returnValue($token));
     $service = new Linkedin($this->getMock('\\OAuth\\Common\\Consumer\\CredentialsInterface'), $client, $storage);
     $uri = $service->request('https://pieterhordijk.com/my/awesome/path');
     $absoluteUri = parse_url($uri->getAbsoluteUri());
     $this->assertSame('oauth2_access_token=foo', $absoluteUri['query']);
 }