forward GitLab driver options to remote filesystem
parent
e3a23c0047
commit
1d29fa04b1
|
@ -160,7 +160,9 @@ abstract class VcsDriver implements VcsDriverInterface
|
||||||
*/
|
*/
|
||||||
protected function getContents($url)
|
protected function getContents($url)
|
||||||
{
|
{
|
||||||
return $this->remoteFilesystem->getContents($this->originUrl, $url, false);
|
$options = isset($this->repoConfig['options']) ? $this->repoConfig['options'] : array();
|
||||||
|
|
||||||
|
return $this->remoteFilesystem->getContents($this->originUrl, $url, false, $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -16,6 +16,7 @@ use Composer\Repository\Vcs\GitLabDriver;
|
||||||
use Composer\Config;
|
use Composer\Config;
|
||||||
use Composer\TestCase;
|
use Composer\TestCase;
|
||||||
use Composer\Util\Filesystem;
|
use Composer\Util\Filesystem;
|
||||||
|
use Prophecy\Argument;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Jérôme Tamarelle <jerome@tamarelle.net>
|
* @author Jérôme Tamarelle <jerome@tamarelle.net>
|
||||||
|
@ -82,7 +83,7 @@ class GitLabDriverTest extends TestCase
|
||||||
JSON;
|
JSON;
|
||||||
|
|
||||||
$this->remoteFilesystem
|
$this->remoteFilesystem
|
||||||
->getContents('gitlab.com', $apiUrl, false)
|
->getContents('gitlab.com', $apiUrl, false, array())
|
||||||
->willReturn($projectData)
|
->willReturn($projectData)
|
||||||
->shouldBeCalledTimes(1)
|
->shouldBeCalledTimes(1)
|
||||||
;
|
;
|
||||||
|
@ -121,7 +122,7 @@ JSON;
|
||||||
JSON;
|
JSON;
|
||||||
|
|
||||||
$this->remoteFilesystem
|
$this->remoteFilesystem
|
||||||
->getContents('gitlab.com', $apiUrl, false)
|
->getContents('gitlab.com', $apiUrl, false, array())
|
||||||
->willReturn($projectData)
|
->willReturn($projectData)
|
||||||
->shouldBeCalledTimes(1)
|
->shouldBeCalledTimes(1)
|
||||||
;
|
;
|
||||||
|
@ -207,7 +208,7 @@ JSON;
|
||||||
JSON;
|
JSON;
|
||||||
|
|
||||||
$this->remoteFilesystem
|
$this->remoteFilesystem
|
||||||
->getContents('gitlab.com', $apiUrl, false)
|
->getContents('gitlab.com', $apiUrl, false, array())
|
||||||
->willReturn($tagData)
|
->willReturn($tagData)
|
||||||
->shouldBeCalledTimes(1)
|
->shouldBeCalledTimes(1)
|
||||||
;
|
;
|
||||||
|
@ -249,7 +250,7 @@ JSON;
|
||||||
JSON;
|
JSON;
|
||||||
|
|
||||||
$this->remoteFilesystem
|
$this->remoteFilesystem
|
||||||
->getContents('gitlab.com', $apiUrl, false)
|
->getContents('gitlab.com', $apiUrl, false, array())
|
||||||
->willReturn($branchData)
|
->willReturn($branchData)
|
||||||
->shouldBeCalledTimes(1)
|
->shouldBeCalledTimes(1)
|
||||||
;
|
;
|
||||||
|
@ -310,7 +311,7 @@ JSON;
|
||||||
JSON;
|
JSON;
|
||||||
|
|
||||||
$this->remoteFilesystem
|
$this->remoteFilesystem
|
||||||
->getContents('mycompany.com/gitlab', $apiUrl, false)
|
->getContents('mycompany.com/gitlab', $apiUrl, false, array())
|
||||||
->willReturn($projectData)
|
->willReturn($projectData)
|
||||||
->shouldBeCalledTimes(1)
|
->shouldBeCalledTimes(1)
|
||||||
;
|
;
|
||||||
|
@ -320,4 +321,42 @@ JSON;
|
||||||
|
|
||||||
$this->assertEquals($apiUrl, $driver->getApiUrl(), 'API URL is derived from the repository URL');
|
$this->assertEquals($apiUrl, $driver->getApiUrl(), 'API URL is derived from the repository URL');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testForwardsOptions()
|
||||||
|
{
|
||||||
|
$options = array(
|
||||||
|
'ssl' => array(
|
||||||
|
'verify_peer' => false,
|
||||||
|
)
|
||||||
|
);
|
||||||
|
$projectData = <<<JSON
|
||||||
|
{
|
||||||
|
"id": 17,
|
||||||
|
"default_branch": "mymaster",
|
||||||
|
"public": false,
|
||||||
|
"http_url_to_repo": "https://gitlab.mycompany.local/mygroup/myproject",
|
||||||
|
"ssh_url_to_repo": "git@gitlab.mycompany.local:mygroup/myproject.git",
|
||||||
|
"last_activity_at": "2014-12-01T09:17:51.000+01:00",
|
||||||
|
"name": "My Project",
|
||||||
|
"name_with_namespace": "My Group / My Project",
|
||||||
|
"path": "myproject",
|
||||||
|
"path_with_namespace": "mygroup/myproject",
|
||||||
|
"web_url": "https://gitlab.mycompany.local/mygroup/myproject"
|
||||||
|
}
|
||||||
|
JSON;
|
||||||
|
|
||||||
|
$this->remoteFilesystem
|
||||||
|
->getContents(Argument::cetera(), $options)
|
||||||
|
->willReturn($projectData)
|
||||||
|
->shouldBeCalled();
|
||||||
|
|
||||||
|
$driver = new GitLabDriver(
|
||||||
|
array('url' => 'https://gitlab.mycompany.local/mygroup/myproject', 'options' => $options),
|
||||||
|
$this->io->reveal(),
|
||||||
|
$this->config,
|
||||||
|
$this->process->reveal(),
|
||||||
|
$this->remoteFilesystem->reveal()
|
||||||
|
);
|
||||||
|
$driver->initialize();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue