* Jordi Boggiano * * 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\Repository\Vcs\GitLabDriver; use Composer\Config; use Composer\TestCase; use Composer\Util\Filesystem; /** * @author Jérôme Tamarelle */ class GitLabDriverTest extends TestCase { private $home; private $config; private $io; private $process; private $remoteFilesystem; public function setUp() { $this->home = $this->getUniqueTmpDirectory(); $this->config = new Config(); $this->config->merge(array( 'config' => array( 'home' => $this->home, 'gitlab-domains' => array('mycompany.com/gitlab', 'gitlab.com'), ), )); $this->io = $this->prophesize('Composer\IO\IOInterface'); $this->process = $this->prophesize('Composer\Util\ProcessExecutor'); $this->remoteFilesystem = $this->prophesize('Composer\Util\RemoteFilesystem'); } public function tearDown() { $fs = new Filesystem(); $fs->removeDirectory($this->home); } public function getInitializeUrls() { return array( array('https://gitlab.com/mygroup/myproject', 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject'), array('http://gitlab.com/mygroup/myproject', 'http://gitlab.com/api/v3/projects/mygroup%2Fmyproject'), array('git@gitlab.com:mygroup/myproject', 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject'), ); } /** * @dataProvider getInitializeUrls */ public function testInitialize($url, $apiUrl) { // @link http://doc.gitlab.com/ce/api/projects.html#get-single-project $projectData = <<remoteFilesystem ->getContents('gitlab.com', $apiUrl, false) ->willReturn($projectData) ->shouldBeCalledTimes(1) ; $driver = new GitLabDriver(array('url' => $url), $this->io->reveal(), $this->config, $this->process->reveal(), $this->remoteFilesystem->reveal()); $driver->initialize(); $this->assertEquals($apiUrl, $driver->getApiUrl(), 'API URL is derived from the repository URL'); $this->assertEquals('mymaster', $driver->getRootIdentifier(), 'Root identifier is the default branch in GitLab'); $this->assertEquals('git@gitlab.com:mygroup/myproject.git', $driver->getRepositoryUrl(), 'The repository URL is the SSH one by default'); $this->assertEquals('https://gitlab.com/mygroup/myproject', $driver->getUrl()); return $driver; } /** * @dataProvider getInitializeUrls */ public function testInitializePublicProject($url, $apiUrl) { // @link http://doc.gitlab.com/ce/api/projects.html#get-single-project $projectData = <<remoteFilesystem ->getContents('gitlab.com', $apiUrl, false) ->willReturn($projectData) ->shouldBeCalledTimes(1) ; $driver = new GitLabDriver(array('url' => $url), $this->io->reveal(), $this->config, $this->process->reveal(), $this->remoteFilesystem->reveal()); $driver->initialize(); $this->assertEquals($apiUrl, $driver->getApiUrl(), 'API URL is derived from the repository URL'); $this->assertEquals('mymaster', $driver->getRootIdentifier(), 'Root identifier is the default branch in GitLab'); $this->assertEquals('https://gitlab.com/mygroup/myproject.git', $driver->getRepositoryUrl(), 'The repository URL is the SSH one by default'); $this->assertEquals('https://gitlab.com/mygroup/myproject', $driver->getUrl()); return $driver; } public function testGetDist() { $driver = $this->testInitialize('https://gitlab.com/mygroup/myproject', 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject'); $reference = 'c3ebdbf9cceddb82cd2089aaef8c7b992e536363'; $expected = array( 'type' => 'zip', 'url' => 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject/repository/archive.zip?sha='.$reference, 'reference' => $reference, 'shasum' => '', ); $this->assertEquals($expected, $driver->getDist($reference)); } public function testGetSource() { $driver = $this->testInitialize('https://gitlab.com/mygroup/myproject', 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject'); $reference = 'c3ebdbf9cceddb82cd2089aaef8c7b992e536363'; $expected = array( 'type' => 'git', 'url' => 'git@gitlab.com:mygroup/myproject.git', 'reference' => $reference, ); $this->assertEquals($expected, $driver->getSource($reference)); } public function testGetSource_GivenPublicProject() { $driver = $this->testInitializePublicProject('https://gitlab.com/mygroup/myproject', 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject', true); $reference = 'c3ebdbf9cceddb82cd2089aaef8c7b992e536363'; $expected = array( 'type' => 'git', 'url' => 'https://gitlab.com/mygroup/myproject.git', 'reference' => $reference, ); $this->assertEquals($expected, $driver->getSource($reference)); } public function testGetTags() { $driver = $this->testInitialize('https://gitlab.com/mygroup/myproject', 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject'); $apiUrl = 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject/repository/tags'; // @link http://doc.gitlab.com/ce/api/repositories.html#list-project-repository-tags $tagData = <<remoteFilesystem ->getContents('gitlab.com', $apiUrl, false) ->willReturn($tagData) ->shouldBeCalledTimes(1) ; $driver->setRemoteFilesystem($this->remoteFilesystem->reveal()); $expected = array( 'v1.0.0' => '092ed2c762bbae331e3f51d4a17f67310bf99a81', 'v2.0.0' => '8e8f60b3ec86d63733db3bd6371117a758027ec6', ); $this->assertEquals($expected, $driver->getTags()); $this->assertEquals($expected, $driver->getTags(), 'Tags are cached'); } public function testGetBranches() { $driver = $this->testInitialize('https://gitlab.com/mygroup/myproject', 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject'); $apiUrl = 'https://gitlab.com/api/v3/projects/mygroup%2Fmyproject/repository/branches'; // @link http://doc.gitlab.com/ce/api/repositories.html#list-project-repository-branches $branchData = <<remoteFilesystem ->getContents('gitlab.com', $apiUrl, false) ->willReturn($branchData) ->shouldBeCalledTimes(1) ; $driver->setRemoteFilesystem($this->remoteFilesystem->reveal()); $expected = array( 'mymaster' => '97eda36b5c1dd953a3792865c222d4e85e5f302e', 'staging' => '502cffe49f136443f2059803f2e7192d1ac066cd', ); $this->assertEquals($expected, $driver->getBranches()); $this->assertEquals($expected, $driver->getBranches(), 'Branches are cached'); } /** * @dataProvider dataForTestSupports */ public function testSupports($url, $expected) { $this->assertSame($expected, GitLabDriver::supports($this->io->reveal(), $this->config, $url)); } public function dataForTestSupports() { return array( array('http://gitlab.com/foo/bar', true), array('http://gitlab.com/foo/bar/', true), array('http://gitlab.com/foo/bar.git', true), array('http://gitlab.com/foo/bar.baz.git', true), array('https://gitlab.com/foo/bar', extension_loaded('openssl')), // Platform requirement array('git@gitlab.com:foo/bar.git', extension_loaded('openssl')), array('git@example.com:foo/bar.git', false), array('http://example.com/foo/bar', false), array('http://mycompany.com/gitlab/mygroup/myproject', true), array('https://mycompany.com/gitlab/mygroup/myproject', extension_loaded('openssl')), ); } public function testGitlabSubDirectory() { $url = 'https://mycompany.com/gitlab/mygroup/my-pro.ject'; $apiUrl = 'https://mycompany.com/gitlab/api/v3/projects/mygroup%2Fmy-pro%2Eject'; $projectData = <<remoteFilesystem ->getContents('mycompany.com/gitlab', $apiUrl, false) ->willReturn($projectData) ->shouldBeCalledTimes(1) ; $driver = new GitLabDriver(array('url' => $url), $this->io->reveal(), $this->config, $this->process->reveal(), $this->remoteFilesystem->reveal()); $driver->initialize(); $this->assertEquals($apiUrl, $driver->getApiUrl(), 'API URL is derived from the repository URL'); } }