* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Test\Util; use Composer\Util\Bitbucket; /** * @author Paul Wenke */ class BitbucketTest extends \PHPUnit_Framework_TestCase { private $username = 'username'; private $password = 'password'; private $consumer_key = 'consumer_key'; private $consumer_secret = 'consumer_secret'; private $message = 'mymessage'; private $origin = 'bitbucket.org'; private $token = 'bitbuckettoken'; /** @type \Composer\IO\ConsoleIO|\PHPUnit_Framework_MockObject_MockObject */ private $io; /** @type \Composer\Util\RemoteFilesystem|\PHPUnit_Framework_MockObject_MockObject */ private $rfs; /** @type \Composer\Config|\PHPUnit_Framework_MockObject_MockObject */ private $config; /** @type Bitbucket */ private $bitbucket; /** @var int */ private $time; protected function setUp() { $this->io = $this ->getMockBuilder('Composer\IO\ConsoleIO') ->disableOriginalConstructor() ->getMock() ; $this->rfs = $this ->getMockBuilder('Composer\Util\RemoteFilesystem') ->disableOriginalConstructor() ->getMock() ; $this->config = $this->getMock('Composer\Config'); $this->time = time(); $this->bitbucket = new Bitbucket($this->io, $this->config, null, $this->rfs, $this->time); } public function testRequestAccessTokenWithValidOAuthConsumer() { $this->io->expects($this->once()) ->method('setAuthentication') ->with($this->origin, $this->consumer_key, $this->consumer_secret); $this->rfs->expects($this->once()) ->method('getContents') ->with( $this->origin, Bitbucket::OAUTH2_ACCESS_TOKEN_URL, false, array( 'retry-auth-failure' => false, 'http' => array( 'method' => 'POST', 'content' => 'grant_type=client_credentials', ) ) ) ->willReturn( sprintf( '{"access_token": "%s", "scopes": "repository", "expires_in": 3600, "refresh_token": "refreshtoken", "token_type": "bearer"}', $this->token ) ); $this->config->expects($this->once()) ->method('get') ->with('bitbucket-oauth') ->willReturn(null); $this->setExpectationsForStoringAccessToken(); $this->assertEquals( $this->token, $this->bitbucket->requestToken($this->origin, $this->consumer_key, $this->consumer_secret) ); } public function testRequestAccessTokenWithValidOAuthConsumerAndValidStoredAccessToken() { $this->config->expects($this->once()) ->method('get') ->with('bitbucket-oauth') ->willReturn( array( $this->origin => array( 'access-token' => $this->token, 'access-token-expiration' => $this->time + 1800, 'consumer-key' => $this->consumer_key, 'consumer-secret' => $this->consumer_secret ) ) ); $this->assertEquals( $this->token, $this->bitbucket->requestToken($this->origin, $this->consumer_key, $this->consumer_secret) ); } public function testRequestAccessTokenWithValidOAuthConsumerAndExpiredAccessToken() { $this->config->expects($this->once()) ->method('get') ->with('bitbucket-oauth') ->willReturn( array( $this->origin => array( 'access-token' => 'randomExpiredToken', 'access-token-expiration' => $this->time - 400, 'consumer-key' => $this->consumer_key, 'consumer-secret' => $this->consumer_secret ) ) ); $this->io->expects($this->once()) ->method('setAuthentication') ->with($this->origin, $this->consumer_key, $this->consumer_secret); $this->rfs->expects($this->once()) ->method('getContents') ->with( $this->origin, Bitbucket::OAUTH2_ACCESS_TOKEN_URL, false, array( 'retry-auth-failure' => false, 'http' => array( 'method' => 'POST', 'content' => 'grant_type=client_credentials', ) ) ) ->willReturn( sprintf( '{"access_token": "%s", "scopes": "repository", "expires_in": 3600, "refresh_token": "refreshtoken", "token_type": "bearer"}', $this->token ) ); $this->setExpectationsForStoringAccessToken(); $this->assertEquals( $this->token, $this->bitbucket->requestToken($this->origin, $this->consumer_key, $this->consumer_secret) ); } public function testRequestAccessTokenWithUsernameAndPassword() { $this->io->expects($this->once()) ->method('setAuthentication') ->with($this->origin, $this->username, $this->password); $this->io->expects($this->any()) ->method('writeError') ->withConsecutive( array('Invalid OAuth consumer provided.'), array('This can have two reasons:'), array('1. You are authenticating with a bitbucket username/password combination'), array('2. You are using an OAuth consumer, but didn\'t configure a (dummy) callback url') ); $this->rfs->expects($this->once()) ->method('getContents') ->with( $this->origin, Bitbucket::OAUTH2_ACCESS_TOKEN_URL, false, array( 'retry-auth-failure' => false, 'http' => array( 'method' => 'POST', 'content' => 'grant_type=client_credentials', ) ) ) ->willThrowException( new \Composer\Downloader\TransportException( sprintf( 'The \'%s\' URL could not be accessed: HTTP/1.1 400 BAD REQUEST', Bitbucket::OAUTH2_ACCESS_TOKEN_URL ), 400 ) ); $this->config->expects($this->once()) ->method('get') ->with('bitbucket-oauth') ->willReturn(null); $this->assertEquals('', $this->bitbucket->requestToken($this->origin, $this->username, $this->password)); } public function testUsernamePasswordAuthenticationFlow() { $this->io ->expects($this->at(0)) ->method('writeError') ->with($this->message) ; $this->io->expects($this->exactly(2)) ->method('askAndHideAnswer') ->withConsecutive( array('Consumer Key (hidden): '), array('Consumer Secret (hidden): ') ) ->willReturnOnConsecutiveCalls($this->consumer_key, $this->consumer_secret); $this->rfs ->expects($this->once()) ->method('getContents') ->with( $this->equalTo($this->origin), $this->equalTo(sprintf('https://%s/site/oauth2/access_token', $this->origin)), $this->isFalse(), $this->anything() ) ->willReturn( sprintf( '{"access_token": "%s", "scopes": "repository", "expires_in": 3600, "refresh_token": "refresh_token", "token_type": "bearer"}', $this->token ) ) ; $this->setExpectationsForStoringAccessToken(true); $this->assertTrue($this->bitbucket->authorizeOAuthInteractively($this->origin, $this->message)); } private function setExpectationsForStoringAccessToken($removeBasicAuth = false) { $configSourceMock = $this->getMock('Composer\Config\ConfigSourceInterface'); $this->config->expects($this->once()) ->method('getConfigSource') ->willReturn($configSourceMock); $configSourceMock->expects($this->once()) ->method('removeConfigSetting') ->with('bitbucket-oauth.' . $this->origin); $authConfigSourceMock = $this->getMock('Composer\Config\ConfigSourceInterface'); $this->config->expects($this->atLeastOnce()) ->method('getAuthConfigSource') ->willReturn($authConfigSourceMock); $authConfigSourceMock->expects($this->once()) ->method('addConfigSetting') ->with( 'bitbucket-oauth.' . $this->origin, array( "consumer-key" => $this->consumer_key, "consumer-secret" => $this->consumer_secret, "access-token" => $this->token, "access-token-expiration" => $this->time + 3600 ) ); if ($removeBasicAuth) { $authConfigSourceMock->expects($this->once()) ->method('removeConfigSetting') ->with('http-basic.' . $this->origin); } } }