2012-02-18 16:06:30 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-03-08 13:17:22 +00:00
|
|
|
namespace Composer\Test\Repository;
|
2012-02-18 16:06:30 +00:00
|
|
|
|
|
|
|
use Symfony\Component\Process\ExecutableFinder;
|
|
|
|
use Composer\Package\Dumper\ArrayDumper;
|
|
|
|
use Composer\Repository\VcsRepository;
|
|
|
|
use Composer\Repository\Vcs\GitDriver;
|
|
|
|
use Composer\Util\Filesystem;
|
|
|
|
use Composer\Util\ProcessExecutor;
|
|
|
|
use Composer\IO\NullIO;
|
2012-04-25 15:35:47 +00:00
|
|
|
use Composer\Config;
|
2012-02-18 16:06:30 +00:00
|
|
|
|
2012-05-06 13:10:13 +00:00
|
|
|
/**
|
|
|
|
* @group slow
|
|
|
|
*/
|
2012-02-18 16:06:30 +00:00
|
|
|
class VcsRepositoryTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
private static $gitRepo;
|
2012-05-06 13:10:13 +00:00
|
|
|
private $skipped;
|
2012-02-18 16:06:30 +00:00
|
|
|
|
2012-05-06 13:10:13 +00:00
|
|
|
protected function initialize()
|
2012-02-18 16:06:30 +00:00
|
|
|
{
|
|
|
|
$oldCwd = getcwd();
|
|
|
|
self::$gitRepo = sys_get_temp_dir() . '/composer-git-'.rand().'/';
|
|
|
|
|
|
|
|
$locator = new ExecutableFinder();
|
|
|
|
if (!$locator->find('git')) {
|
2012-05-06 13:10:13 +00:00
|
|
|
$this->skipped = 'This test needs a git binary in the PATH to be able to run';
|
2012-02-18 16:06:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!mkdir(self::$gitRepo) || !chdir(self::$gitRepo)) {
|
2012-05-06 13:10:13 +00:00
|
|
|
$this->skipped = 'Could not create and move into the temp git repo '.self::$gitRepo;
|
2012-02-18 16:06:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// init
|
|
|
|
$process = new ProcessExecutor;
|
|
|
|
$process->execute('git init', $null);
|
|
|
|
touch('foo');
|
|
|
|
$process->execute('git add foo', $null);
|
|
|
|
$process->execute('git commit -m init', $null);
|
|
|
|
|
|
|
|
// non-composed tag & branch
|
|
|
|
$process->execute('git tag 0.5.0', $null);
|
|
|
|
$process->execute('git branch oldbranch', $null);
|
|
|
|
|
|
|
|
// add composed tag & master branch
|
|
|
|
$composer = array('name' => 'a/b');
|
|
|
|
file_put_contents('composer.json', json_encode($composer));
|
|
|
|
$process->execute('git add composer.json', $null);
|
|
|
|
$process->execute('git commit -m addcomposer', $null);
|
|
|
|
$process->execute('git tag 0.6.0', $null);
|
|
|
|
|
|
|
|
// add feature-a branch
|
|
|
|
$process->execute('git checkout -b feature-a', $null);
|
|
|
|
file_put_contents('foo', 'bar feature');
|
|
|
|
$process->execute('git add foo', $null);
|
|
|
|
$process->execute('git commit -m change-a', $null);
|
|
|
|
|
|
|
|
// add version to composer.json
|
|
|
|
$process->execute('git checkout master', $null);
|
|
|
|
$composer['version'] = '1.0.0';
|
|
|
|
file_put_contents('composer.json', json_encode($composer));
|
|
|
|
$process->execute('git add composer.json', $null);
|
|
|
|
$process->execute('git commit -m addversion', $null);
|
|
|
|
|
|
|
|
// create tag with wrong version in it
|
|
|
|
$process->execute('git tag 0.9.0', $null);
|
|
|
|
// create tag with correct version in it
|
|
|
|
$process->execute('git tag 1.0.0', $null);
|
|
|
|
|
|
|
|
// add feature-b branch
|
|
|
|
$process->execute('git checkout -b feature-b', $null);
|
|
|
|
file_put_contents('foo', 'baz feature');
|
|
|
|
$process->execute('git add foo', $null);
|
|
|
|
$process->execute('git commit -m change-b', $null);
|
|
|
|
|
|
|
|
// add 1.0 branch
|
|
|
|
$process->execute('git checkout master', $null);
|
|
|
|
$process->execute('git branch 1.0', $null);
|
|
|
|
|
2012-02-18 18:00:40 +00:00
|
|
|
// add 1.0.x branch
|
2012-04-13 00:47:55 +00:00
|
|
|
$process->execute('git branch 1.1.x', $null);
|
2012-02-18 18:00:40 +00:00
|
|
|
|
2012-02-18 16:06:30 +00:00
|
|
|
// update master to 2.0
|
|
|
|
$composer['version'] = '2.0.0';
|
|
|
|
file_put_contents('composer.json', json_encode($composer));
|
|
|
|
$process->execute('git add composer.json', $null);
|
|
|
|
$process->execute('git commit -m bump-version', $null);
|
|
|
|
|
|
|
|
chdir($oldCwd);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
2012-05-06 13:10:13 +00:00
|
|
|
if (!self::$gitRepo) {
|
|
|
|
$this->initialize();
|
|
|
|
}
|
|
|
|
if ($this->skipped) {
|
|
|
|
$this->markTestSkipped($this->skipped);
|
2012-02-18 16:06:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function tearDownAfterClass()
|
|
|
|
{
|
|
|
|
$fs = new Filesystem;
|
|
|
|
$fs->removeDirectory(self::$gitRepo);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testLoadVersions()
|
|
|
|
{
|
|
|
|
$expected = array(
|
|
|
|
'0.6.0' => true,
|
|
|
|
'1.0.0' => true,
|
2012-02-18 18:00:40 +00:00
|
|
|
'1.0.x-dev' => true,
|
2012-04-13 00:47:55 +00:00
|
|
|
'1.1.x-dev' => true,
|
2012-02-18 16:06:30 +00:00
|
|
|
'dev-feature-b' => true,
|
|
|
|
'dev-feature-a' => true,
|
|
|
|
'dev-master' => true,
|
|
|
|
);
|
|
|
|
|
2012-04-25 15:35:47 +00:00
|
|
|
$repo = new VcsRepository(array('url' => self::$gitRepo, 'type' => 'vcs'), new NullIO, new Config());
|
2012-02-18 16:06:30 +00:00
|
|
|
$packages = $repo->getPackages();
|
|
|
|
$dumper = new ArrayDumper();
|
|
|
|
|
|
|
|
foreach ($packages as $package) {
|
|
|
|
if (isset($expected[$package->getPrettyVersion()])) {
|
|
|
|
unset($expected[$package->getPrettyVersion()]);
|
|
|
|
} else {
|
|
|
|
$this->fail('Unexpected version '.$package->getPrettyVersion().' in '.json_encode($dumper->dump($package)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-18 18:00:40 +00:00
|
|
|
$this->assertEmpty($expected, 'Missing versions: '.implode(', ', array_keys($expected)));
|
2012-02-18 16:06:30 +00:00
|
|
|
}
|
|
|
|
}
|