Merge remote-tracking branch 'sashman/master'
commit
bad80878bc
|
@ -71,8 +71,11 @@ class RootPackageLoader extends ArrayLoader
|
||||||
// override with env var if available
|
// override with env var if available
|
||||||
if (getenv('COMPOSER_ROOT_VERSION')) {
|
if (getenv('COMPOSER_ROOT_VERSION')) {
|
||||||
$version = getenv('COMPOSER_ROOT_VERSION');
|
$version = getenv('COMPOSER_ROOT_VERSION');
|
||||||
|
$commit = null;
|
||||||
} else {
|
} else {
|
||||||
$version = $this->versionGuesser->guessVersion($config, $cwd ?: getcwd());
|
$versionData = $this->versionGuesser->guessVersion($config, $cwd ?: getcwd());
|
||||||
|
$version = $versionData['version'];
|
||||||
|
$commit = $versionData['commit'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$version) {
|
if (!$version) {
|
||||||
|
@ -81,6 +84,13 @@ class RootPackageLoader extends ArrayLoader
|
||||||
}
|
}
|
||||||
|
|
||||||
$config['version'] = $version;
|
$config['version'] = $version;
|
||||||
|
if($commit){
|
||||||
|
$config['source'] = array(
|
||||||
|
'type' => '',
|
||||||
|
'url' => '',
|
||||||
|
'reference' => $commit
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$realPackage = $package = parent::load($config, $class);
|
$realPackage = $package = parent::load($config, $class);
|
||||||
|
|
|
@ -58,18 +58,20 @@ class VersionGuesser
|
||||||
/**
|
/**
|
||||||
* @param array $packageConfig
|
* @param array $packageConfig
|
||||||
* @param string $path Path to guess into
|
* @param string $path Path to guess into
|
||||||
|
*
|
||||||
|
* @return array versionData, 'version' and 'commit' keys
|
||||||
*/
|
*/
|
||||||
public function guessVersion(array $packageConfig, $path)
|
public function guessVersion(array $packageConfig, $path)
|
||||||
{
|
{
|
||||||
if (function_exists('proc_open')) {
|
if (function_exists('proc_open')) {
|
||||||
$version = $this->guessGitVersion($packageConfig, $path);
|
$versionData = $this->guessGitVersion($packageConfig, $path);
|
||||||
if (null !== $version) {
|
if (null !== $versionData) {
|
||||||
return $version;
|
return $versionData;
|
||||||
}
|
}
|
||||||
|
|
||||||
$version = $this->guessHgVersion($packageConfig, $path);
|
$versionData = $this->guessHgVersion($packageConfig, $path);
|
||||||
if (null !== $version) {
|
if (null !== $versionData) {
|
||||||
return $version;
|
return $versionData;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->guessSvnVersion($packageConfig, $path);
|
return $this->guessSvnVersion($packageConfig, $path);
|
||||||
|
@ -79,24 +81,19 @@ class VersionGuesser
|
||||||
private function guessGitVersion(array $packageConfig, $path)
|
private function guessGitVersion(array $packageConfig, $path)
|
||||||
{
|
{
|
||||||
GitUtil::cleanEnv();
|
GitUtil::cleanEnv();
|
||||||
|
$version = null;
|
||||||
// try to fetch current version from git tags
|
$commit = null;
|
||||||
if (0 === $this->process->execute('git describe --exact-match --tags', $output, $path)) {
|
$version = $this->versionFromGitTags($path);
|
||||||
try {
|
|
||||||
return $this->versionParser->normalize(trim($output));
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// try to fetch current version from git branch
|
// try to fetch current version from git branch
|
||||||
if (0 === $this->process->execute('git branch --no-color --no-abbrev -v', $output, $path)) {
|
if (0 === $this->process->execute('git branch --no-color --no-abbrev -v', $output, $path)) {
|
||||||
$branches = array();
|
$branches = array();
|
||||||
$isFeatureBranch = false;
|
$isFeatureBranch = false;
|
||||||
$version = null;
|
|
||||||
|
|
||||||
// find current branch and collect all branch names
|
// find current branch and collect all branch names
|
||||||
foreach ($this->process->splitLines($output) as $branch) {
|
foreach ($this->process->splitLines($output) as $branch) {
|
||||||
if ($branch && preg_match('{^(?:\* ) *(\(no branch\)|\(detached from \S+\)|\S+) *([a-f0-9]+) .*$}', $branch, $match)) {
|
if ($branch && preg_match('{^(?:\* ) *(\(no branch\)|\(detached from \S+\)|\S+) *([a-f0-9]+) .*$}', $branch, $match)) {
|
||||||
|
if (!$version) {
|
||||||
if ($match[1] === '(no branch)' || substr($match[1], 0, 10) === '(detached ') {
|
if ($match[1] === '(no branch)' || substr($match[1], 0, 10) === '(detached ') {
|
||||||
$version = 'dev-' . $match[2];
|
$version = 'dev-' . $match[2];
|
||||||
$isFeatureBranch = true;
|
$isFeatureBranch = true;
|
||||||
|
@ -109,6 +106,11 @@ class VersionGuesser
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($match[2]) {
|
||||||
|
$commit = $match[2];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($branch && !preg_match('{^ *[^/]+/HEAD }', $branch)) {
|
if ($branch && !preg_match('{^ *[^/]+/HEAD }', $branch)) {
|
||||||
if (preg_match('{^(?:\* )? *(\S+) *([a-f0-9]+) .*$}', $branch, $match)) {
|
if (preg_match('{^(?:\* )? *(\S+) *([a-f0-9]+) .*$}', $branch, $match)) {
|
||||||
$branches[] = $match[1];
|
$branches[] = $match[1];
|
||||||
|
@ -116,17 +118,28 @@ class VersionGuesser
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$isFeatureBranch) {
|
if ($isFeatureBranch) {
|
||||||
return $version;
|
|
||||||
}
|
|
||||||
|
|
||||||
// try to find the best (nearest) version branch to assume this feature's version
|
// try to find the best (nearest) version branch to assume this feature's version
|
||||||
$version = $this->guessFeatureVersion($packageConfig, $version, $branches, 'git rev-list %candidate%..%branch%', $path);
|
$version = $this->guessFeatureVersion($packageConfig, $version, $branches, 'git rev-list %candidate%..%branch%', $path);
|
||||||
|
|
||||||
return $version;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return array('version' => $version, 'commit' => $commit);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function versionFromGitTags($path)
|
||||||
|
{
|
||||||
|
// try to fetch current version from git tags
|
||||||
|
if (0 === $this->process->execute('git describe --exact-match --tags', $output, $path)) {
|
||||||
|
try {
|
||||||
|
return $this->versionParser->normalize(trim($output));
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
private function guessHgVersion(array $packageConfig, $path)
|
private function guessHgVersion(array $packageConfig, $path)
|
||||||
{
|
{
|
||||||
// try to fetch current version from hg branch
|
// try to fetch current version from hg branch
|
||||||
|
@ -150,7 +163,7 @@ class VersionGuesser
|
||||||
// try to find the best (nearest) version branch to assume this feature's version
|
// try to find the best (nearest) version branch to assume this feature's version
|
||||||
$version = $this->guessFeatureVersion($packageConfig, $version, $branches, 'hg log -r "not ancestors(\'%candidate%\') and ancestors(\'%branch%\')" --template "{node}\\n"', $path);
|
$version = $this->guessFeatureVersion($packageConfig, $version, $branches, 'hg log -r "not ancestors(\'%candidate%\') and ancestors(\'%branch%\')" --template "{node}\\n"', $path);
|
||||||
|
|
||||||
return $version;
|
return array('version' => $version, 'commit' => '');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -218,11 +231,13 @@ class VersionGuesser
|
||||||
$version = 'dev-' . $matches[3];
|
$version = 'dev-' . $matches[3];
|
||||||
}
|
}
|
||||||
|
|
||||||
return $version;
|
return array('version' => $version, 'commit' => '');
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->versionParser->normalize(trim($matches[1]));
|
$version = $this->versionParser->normalize(trim($matches[1]));
|
||||||
|
return array('version' => $version, 'commit' => '');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -142,7 +142,8 @@ class PathRepository extends ArrayRepository implements ConfigurableRepositoryIn
|
||||||
$package['transport-options'] = $this->options;
|
$package['transport-options'] = $this->options;
|
||||||
|
|
||||||
if (!isset($package['version'])) {
|
if (!isset($package['version'])) {
|
||||||
$package['version'] = $this->versionGuesser->guessVersion($package, $path) ?: 'dev-master';
|
$versionData = $this->versionGuesser->guessVersion($package, $path);
|
||||||
|
$package['version'] = $versionData['version'] ?: 'dev-master';
|
||||||
}
|
}
|
||||||
|
|
||||||
$output = '';
|
$output = '';
|
||||||
|
|
|
@ -25,6 +25,47 @@ class VersionGuesserTest extends \PHPUnit_Framework_TestCase
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testGuessVersionReturnsData()
|
||||||
|
{
|
||||||
|
$commitHash = '03a15d220da53c52eddd5f32ffca64a7b3801bea';
|
||||||
|
$anotherCommitHash = '03a15d220da53c52eddd5f32ffca64a7b3801bea';
|
||||||
|
|
||||||
|
$executor = $this->getMockBuilder('\\Composer\\Util\\ProcessExecutor')
|
||||||
|
->setMethods(array('execute'))
|
||||||
|
->disableArgumentCloning()
|
||||||
|
->disableOriginalConstructor()
|
||||||
|
->getMock()
|
||||||
|
;
|
||||||
|
|
||||||
|
$executor
|
||||||
|
->expects($this->at(0))
|
||||||
|
->method('execute')
|
||||||
|
->with('git describe --exact-match --tags')
|
||||||
|
->willReturn(1)
|
||||||
|
;
|
||||||
|
|
||||||
|
$self = $this;
|
||||||
|
|
||||||
|
$executor
|
||||||
|
->expects($this->at(1))
|
||||||
|
->method('execute')
|
||||||
|
->willReturnCallback(function ($command, &$output) use ($self, $commitHash, $anotherCommitHash) {
|
||||||
|
$self->assertEquals('git branch --no-color --no-abbrev -v', $command);
|
||||||
|
$output = "* master $commitHash Commit message\n(no branch) $anotherCommitHash Commit message\n";
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
})
|
||||||
|
;
|
||||||
|
|
||||||
|
$config = new Config;
|
||||||
|
$config->merge(array('repositories' => array('packagist' => false)));
|
||||||
|
$guesser = new VersionGuesser($config, $executor, new VersionParser());
|
||||||
|
$versionArray = $guesser->guessVersion(array(), 'dummy/path');
|
||||||
|
|
||||||
|
$this->assertEquals("dev-master", $versionArray['version']);
|
||||||
|
$this->assertEquals($commitHash, $versionArray['commit']);
|
||||||
|
}
|
||||||
|
|
||||||
public function testDetachedHeadBecomesDevHash()
|
public function testDetachedHeadBecomesDevHash()
|
||||||
{
|
{
|
||||||
$commitHash = '03a15d220da53c52eddd5f32ffca64a7b3801bea';
|
$commitHash = '03a15d220da53c52eddd5f32ffca64a7b3801bea';
|
||||||
|
@ -59,9 +100,9 @@ class VersionGuesserTest extends \PHPUnit_Framework_TestCase
|
||||||
$config = new Config;
|
$config = new Config;
|
||||||
$config->merge(array('repositories' => array('packagist' => false)));
|
$config->merge(array('repositories' => array('packagist' => false)));
|
||||||
$guesser = new VersionGuesser($config, $executor, new VersionParser());
|
$guesser = new VersionGuesser($config, $executor, new VersionParser());
|
||||||
$version = $guesser->guessVersion(array(), 'dummy/path');
|
$versionData = $guesser->guessVersion(array(), 'dummy/path');
|
||||||
|
|
||||||
$this->assertEquals("dev-$commitHash", $version);
|
$this->assertEquals("dev-$commitHash", $versionData['version']);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testTagBecomesVersion()
|
public function testTagBecomesVersion()
|
||||||
|
@ -89,9 +130,9 @@ class VersionGuesserTest extends \PHPUnit_Framework_TestCase
|
||||||
$config = new Config;
|
$config = new Config;
|
||||||
$config->merge(array('repositories' => array('packagist' => false)));
|
$config->merge(array('repositories' => array('packagist' => false)));
|
||||||
$guesser = new VersionGuesser($config, $executor, new VersionParser());
|
$guesser = new VersionGuesser($config, $executor, new VersionParser());
|
||||||
$version = $guesser->guessVersion(array(), 'dummy/path');
|
$versionData = $guesser->guessVersion(array(), 'dummy/path');
|
||||||
|
|
||||||
$this->assertEquals("2.0.5.0-alpha2", $version);
|
$this->assertEquals("2.0.5.0-alpha2", $versionData['version']);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testInvalidTagBecomesVersion()
|
public function testInvalidTagBecomesVersion()
|
||||||
|
@ -130,8 +171,8 @@ class VersionGuesserTest extends \PHPUnit_Framework_TestCase
|
||||||
$config = new Config;
|
$config = new Config;
|
||||||
$config->merge(array('repositories' => array('packagist' => false)));
|
$config->merge(array('repositories' => array('packagist' => false)));
|
||||||
$guesser = new VersionGuesser($config, $executor, new VersionParser());
|
$guesser = new VersionGuesser($config, $executor, new VersionParser());
|
||||||
$version = $guesser->guessVersion(array(), 'dummy/path');
|
$versionData = $guesser->guessVersion(array(), 'dummy/path');
|
||||||
|
|
||||||
$this->assertEquals("dev-foo", $version);
|
$this->assertEquals("dev-foo", $versionData['version']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue