240 lines
11 KiB
PHP
240 lines
11 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of Composer.
|
|
*
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Composer\Test\Repository\Vcs;
|
|
|
|
use Composer\Config;
|
|
use Composer\Repository\Vcs\GitBitbucketDriver;
|
|
use Composer\Repository\Vcs\GitHubDriver;
|
|
use Composer\Test\Mock\HttpDownloaderMock;
|
|
use Composer\Test\TestCase;
|
|
use Composer\Util\Filesystem;
|
|
use Composer\Util\ProcessExecutor;
|
|
use Composer\Util\Http\Response;
|
|
|
|
/**
|
|
* @group bitbucket
|
|
*/
|
|
class GitBitbucketDriverTest extends TestCase
|
|
{
|
|
/** @var \Composer\IO\IOInterface&\PHPUnit\Framework\MockObject\MockObject */
|
|
private $io;
|
|
/** @var Config */
|
|
private $config;
|
|
/** @var HttpDownloaderMock */
|
|
private $httpDownloader;
|
|
/** @var string */
|
|
private $home;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
|
|
|
$this->home = self::getUniqueTmpDirectory();
|
|
|
|
$this->config = new Config();
|
|
$this->config->merge([
|
|
'config' => [
|
|
'home' => $this->home,
|
|
],
|
|
]);
|
|
|
|
$this->httpDownloader = $this->getHttpDownloaderMock($this->io, $this->config);;
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
parent::tearDown();
|
|
$fs = new Filesystem;
|
|
$fs->removeDirectory($this->home);
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $repoConfig
|
|
*
|
|
* @phpstan-param array{url: string}&array<string, mixed> $repoConfig
|
|
*/
|
|
private function getDriver(array $repoConfig): GitBitbucketDriver
|
|
{
|
|
$driver = new GitBitbucketDriver(
|
|
$repoConfig,
|
|
$this->io,
|
|
$this->config,
|
|
$this->httpDownloader,
|
|
new ProcessExecutor($this->io)
|
|
);
|
|
|
|
$driver->initialize();
|
|
|
|
return $driver;
|
|
}
|
|
|
|
public function testGetRootIdentifierWrongScmType(): void
|
|
{
|
|
self::expectException('RuntimeException');
|
|
self::expectExceptionMessage('https://bitbucket.org/user/repo.git does not appear to be a git repository, use https://bitbucket.org/user/repo but remember that Bitbucket no longer supports the mercurial repositories. https://bitbucket.org/blog/sunsetting-mercurial-support-in-bitbucket');
|
|
|
|
$this->httpDownloader->expects([
|
|
['url' => 'https://api.bitbucket.org/2.0/repositories/user/repo?fields=-project%2C-owner', 'body' => '{"scm":"hg","website":"","has_wiki":false,"name":"repo","links":{"branches":{"href":"https:\/\/api.bitbucket.org\/2.0\/repositories\/user\/repo\/refs\/branches"},"tags":{"href":"https:\/\/api.bitbucket.org\/2.0\/repositories\/user\/repo\/refs\/tags"},"clone":[{"href":"https:\/\/user@bitbucket.org\/user\/repo","name":"https"},{"href":"ssh:\/\/hg@bitbucket.org\/user\/repo","name":"ssh"}],"html":{"href":"https:\/\/bitbucket.org\/user\/repo"}},"language":"php","created_on":"2015-02-18T16:22:24.688+00:00","updated_on":"2016-05-17T13:20:21.993+00:00","is_private":true,"has_issues":false}']
|
|
], true);
|
|
|
|
$driver = $this->getDriver(['url' => 'https://bitbucket.org/user/repo.git']);
|
|
|
|
$driver->getRootIdentifier();
|
|
}
|
|
|
|
public function testDriver(): GitBitbucketDriver
|
|
{
|
|
$driver = $this->getDriver(['url' => 'https://bitbucket.org/user/repo.git']);
|
|
|
|
$urls = [
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo?fields=-project%2C-owner',
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo/refs/tags?pagelen=100&fields=values.name%2Cvalues.target.hash%2Cnext&sort=-target.date',
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo/refs/branches?pagelen=100&fields=values.name%2Cvalues.target.hash%2Cvalues.heads%2Cnext&sort=-target.date',
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo/src/main/composer.json',
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo/commit/main?fields=date',
|
|
];
|
|
$this->httpDownloader->expects([
|
|
['url' => $urls[0], 'body' => '{"mainbranch": {"name": "main"}, "scm":"git","website":"","has_wiki":false,"name":"repo","links":{"branches":{"href":"https:\/\/api.bitbucket.org\/2.0\/repositories\/user\/repo\/refs\/branches"},"tags":{"href":"https:\/\/api.bitbucket.org\/2.0\/repositories\/user\/repo\/refs\/tags"},"clone":[{"href":"https:\/\/user@bitbucket.org\/user\/repo.git","name":"https"},{"href":"ssh:\/\/git@bitbucket.org\/user\/repo.git","name":"ssh"}],"html":{"href":"https:\/\/bitbucket.org\/user\/repo"}},"language":"php","created_on":"2015-02-18T16:22:24.688+00:00","updated_on":"2016-05-17T13:20:21.993+00:00","is_private":true,"has_issues":false}'],
|
|
['url' => $urls[1], 'body' => '{"values":[{"name":"1.0.1","target":{"hash":"9b78a3932143497c519e49b8241083838c8ff8a1"}},{"name":"1.0.0","target":{"hash":"d3393d514318a9267d2f8ebbf463a9aaa389f8eb"}}]}'],
|
|
['url' => $urls[2], 'body' => '{"values":[{"name":"main","target":{"hash":"937992d19d72b5116c3e8c4a04f960e5fa270b22"}}]}'],
|
|
['url' => $urls[3], 'body' => '{"name": "user/repo","description": "test repo","license": "GPL","authors": [{"name": "Name","email": "local@domain.tld"}],"require": {"creator/package": "^1.0"},"require-dev": {"phpunit/phpunit": "~4.8"}}'],
|
|
['url' => $urls[4], 'body' => '{"date": "2016-05-17T13:19:52+00:00"}'],
|
|
], true);
|
|
|
|
self::assertEquals(
|
|
'main',
|
|
$driver->getRootIdentifier()
|
|
);
|
|
|
|
self::assertEquals(
|
|
[
|
|
'1.0.1' => '9b78a3932143497c519e49b8241083838c8ff8a1',
|
|
'1.0.0' => 'd3393d514318a9267d2f8ebbf463a9aaa389f8eb',
|
|
],
|
|
$driver->getTags()
|
|
);
|
|
|
|
self::assertEquals(
|
|
[
|
|
'main' => '937992d19d72b5116c3e8c4a04f960e5fa270b22',
|
|
],
|
|
$driver->getBranches()
|
|
);
|
|
|
|
self::assertEquals(
|
|
[
|
|
'name' => 'user/repo',
|
|
'description' => 'test repo',
|
|
'license' => 'GPL',
|
|
'authors' => [
|
|
[
|
|
'name' => 'Name',
|
|
'email' => 'local@domain.tld',
|
|
],
|
|
],
|
|
'require' => [
|
|
'creator/package' => '^1.0',
|
|
],
|
|
'require-dev' => [
|
|
'phpunit/phpunit' => '~4.8',
|
|
],
|
|
'time' => '2016-05-17T13:19:52+00:00',
|
|
'support' => [
|
|
'source' => 'https://bitbucket.org/user/repo/src/937992d19d72b5116c3e8c4a04f960e5fa270b22/?at=main',
|
|
],
|
|
'homepage' => 'https://bitbucket.org/user/repo',
|
|
],
|
|
$driver->getComposerInformation('main')
|
|
);
|
|
|
|
return $driver;
|
|
}
|
|
|
|
/**
|
|
* @depends testDriver
|
|
*/
|
|
public function testGetParams(\Composer\Repository\Vcs\VcsDriverInterface $driver): void
|
|
{
|
|
$url = 'https://bitbucket.org/user/repo.git';
|
|
|
|
self::assertEquals($url, $driver->getUrl());
|
|
|
|
self::assertEquals(
|
|
[
|
|
'type' => 'zip',
|
|
'url' => 'https://bitbucket.org/user/repo/get/reference.zip',
|
|
'reference' => 'reference',
|
|
'shasum' => '',
|
|
],
|
|
$driver->getDist('reference')
|
|
);
|
|
|
|
self::assertEquals(
|
|
['type' => 'git', 'url' => $url, 'reference' => 'reference'],
|
|
$driver->getSource('reference')
|
|
);
|
|
}
|
|
|
|
public function testInitializeInvalidRepositoryUrl(): void
|
|
{
|
|
$this->expectException('\InvalidArgumentException');
|
|
|
|
$driver = $this->getDriver(['url' => 'https://bitbucket.org/acme']);
|
|
$driver->initialize();
|
|
}
|
|
|
|
public function testInvalidSupportData(): void
|
|
{
|
|
$repoUrl = 'https://bitbucket.org/user/repo.git';
|
|
|
|
$driver = $this->getDriver(['url' => $repoUrl]);
|
|
|
|
$urls = [
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo?fields=-project%2C-owner',
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo/src/main/composer.json',
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo/commit/main?fields=date',
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo/refs/tags?pagelen=100&fields=values.name%2Cvalues.target.hash%2Cnext&sort=-target.date',
|
|
'https://api.bitbucket.org/2.0/repositories/user/repo/refs/branches?pagelen=100&fields=values.name%2Cvalues.target.hash%2Cvalues.heads%2Cnext&sort=-target.date',
|
|
];
|
|
$this->httpDownloader->expects([
|
|
['url' => $urls[0], 'body' => '{"mainbranch": {"name": "main"}, "scm":"git","website":"","has_wiki":false,"name":"repo","links":{"branches":{"href":"https:\/\/api.bitbucket.org\/2.0\/repositories\/user\/repo\/refs\/branches"},"tags":{"href":"https:\/\/api.bitbucket.org\/2.0\/repositories\/user\/repo\/refs\/tags"},"clone":[{"href":"https:\/\/user@bitbucket.org\/user\/repo.git","name":"https"},{"href":"ssh:\/\/git@bitbucket.org\/user\/repo.git","name":"ssh"}],"html":{"href":"https:\/\/bitbucket.org\/user\/repo"}},"language":"php","created_on":"2015-02-18T16:22:24.688+00:00","updated_on":"2016-05-17T13:20:21.993+00:00","is_private":true,"has_issues":false}'],
|
|
['url' => $urls[1], 'body' => '{"support": "' . $repoUrl . '"}'],
|
|
['url' => $urls[2], 'body' => '{"date": "2016-05-17T13:19:52+00:00"}'],
|
|
['url' => $urls[3], 'body' => '{"values":[{"name":"1.0.1","target":{"hash":"9b78a3932143497c519e49b8241083838c8ff8a1"}},{"name":"1.0.0","target":{"hash":"d3393d514318a9267d2f8ebbf463a9aaa389f8eb"}}]}'],
|
|
['url' => $urls[4], 'body' => '{"values":[{"name":"main","target":{"hash":"937992d19d72b5116c3e8c4a04f960e5fa270b22"}}]}'],
|
|
], true);
|
|
|
|
$driver->getRootIdentifier();
|
|
$data = $driver->getComposerInformation('main');
|
|
|
|
self::assertIsArray($data);
|
|
self::assertSame('https://bitbucket.org/user/repo/src/937992d19d72b5116c3e8c4a04f960e5fa270b22/?at=main', $data['support']['source']);
|
|
}
|
|
|
|
public function testSupports(): void
|
|
{
|
|
self::assertTrue(
|
|
GitBitbucketDriver::supports($this->io, $this->config, 'https://bitbucket.org/user/repo.git')
|
|
);
|
|
|
|
// should not be changed, see https://github.com/composer/composer/issues/9400
|
|
self::assertFalse(
|
|
GitBitbucketDriver::supports($this->io, $this->config, 'git@bitbucket.org:user/repo.git')
|
|
);
|
|
|
|
self::assertFalse(
|
|
GitBitbucketDriver::supports($this->io, $this->config, 'https://github.com/user/repo.git')
|
|
);
|
|
}
|
|
}
|