commit
85a07affd7
|
@ -20,9 +20,12 @@ use Composer\DependencyResolver;
|
||||||
use Composer\DependencyResolver\Pool;
|
use Composer\DependencyResolver\Pool;
|
||||||
use Composer\DependencyResolver\Request;
|
use Composer\DependencyResolver\Request;
|
||||||
use Composer\DependencyResolver\Operation;
|
use Composer\DependencyResolver\Operation;
|
||||||
|
use Composer\Package\AliasPackage;
|
||||||
use Composer\Package\MemoryPackage;
|
use Composer\Package\MemoryPackage;
|
||||||
|
use Composer\Package\Link;
|
||||||
use Composer\Package\LinkConstraint\VersionConstraint;
|
use Composer\Package\LinkConstraint\VersionConstraint;
|
||||||
use Composer\Package\PackageInterface;
|
use Composer\Package\PackageInterface;
|
||||||
|
use Composer\Repository\ArrayRepository;
|
||||||
use Composer\Repository\CompositeRepository;
|
use Composer\Repository\CompositeRepository;
|
||||||
use Composer\Repository\PlatformRepository;
|
use Composer\Repository\PlatformRepository;
|
||||||
use Composer\Repository\RepositoryInterface;
|
use Composer\Repository\RepositoryInterface;
|
||||||
|
@ -92,18 +95,36 @@ EOT
|
||||||
$composer->getDownloadManager()->setPreferSource(true);
|
$composer->getDownloadManager()->setPreferSource(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$repoManager = $composer->getRepositoryManager();
|
||||||
|
|
||||||
// create local repo, this contains all packages that are installed in the local project
|
// create local repo, this contains all packages that are installed in the local project
|
||||||
$localRepo = $composer->getRepositoryManager()->getLocalRepository();
|
$localRepo = $repoManager->getLocalRepository();
|
||||||
// create installed repo, this contains all local packages + platform packages (php & extensions)
|
// create installed repo, this contains all local packages + platform packages (php & extensions)
|
||||||
$installedRepo = new CompositeRepository(array($localRepo, new PlatformRepository()));
|
$installedRepo = new CompositeRepository(array($localRepo, new PlatformRepository()));
|
||||||
if ($additionalInstalledRepository) {
|
if ($additionalInstalledRepository) {
|
||||||
$installedRepo->addRepository($additionalInstalledRepository);
|
$installedRepo->addRepository($additionalInstalledRepository);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// prepare aliased packages
|
||||||
|
if (!$update && $composer->getLocker()->isLocked()) {
|
||||||
|
$aliases = $composer->getLocker()->getAliases();
|
||||||
|
} else {
|
||||||
|
$aliases = $composer->getPackage()->getAliases();
|
||||||
|
}
|
||||||
|
foreach ($aliases as $alias) {
|
||||||
|
foreach ($repoManager->findPackages($alias['package'], $alias['version']) as $package) {
|
||||||
|
$package->getRepository()->addPackage(new AliasPackage($package, $alias['alias']));
|
||||||
|
}
|
||||||
|
foreach ($repoManager->getLocalRepository()->findPackages($alias['package'], $alias['version']) as $package) {
|
||||||
|
$repoManager->getLocalRepository()->addPackage(new AliasPackage($package, $alias['alias']));
|
||||||
|
$repoManager->getLocalRepository()->removePackage($package);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// creating repository pool
|
// creating repository pool
|
||||||
$pool = new Pool;
|
$pool = new Pool;
|
||||||
$pool->addRepository($installedRepo);
|
$pool->addRepository($installedRepo);
|
||||||
foreach ($composer->getRepositoryManager()->getRepositories() as $repository) {
|
foreach ($repoManager->getRepositories() as $repository) {
|
||||||
$pool->addRepository($repository);
|
$pool->addRepository($repository);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,11 +139,11 @@ EOT
|
||||||
$request = new Request($pool);
|
$request = new Request($pool);
|
||||||
if ($update) {
|
if ($update) {
|
||||||
$io->write('<info>Updating dependencies</info>');
|
$io->write('<info>Updating dependencies</info>');
|
||||||
$installedPackages = $installedRepo->getPackages();
|
|
||||||
$links = $this->collectLinks($composer->getPackage(), $noInstallRecommends, $installSuggests);
|
|
||||||
|
|
||||||
$request->updateAll();
|
$request->updateAll();
|
||||||
|
|
||||||
|
$links = $this->collectLinks($composer->getPackage(), $noInstallRecommends, $installSuggests);
|
||||||
|
|
||||||
foreach ($links as $link) {
|
foreach ($links as $link) {
|
||||||
$request->install($link->getTarget(), $link->getConstraint());
|
$request->install($link->getTarget(), $link->getConstraint());
|
||||||
}
|
}
|
||||||
|
@ -135,7 +156,14 @@ EOT
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($composer->getLocker()->getLockedPackages() as $package) {
|
foreach ($composer->getLocker()->getLockedPackages() as $package) {
|
||||||
$constraint = new VersionConstraint('=', $package->getVersion());
|
$version = $package->getVersion();
|
||||||
|
foreach ($aliases as $alias) {
|
||||||
|
if ($alias['package'] === $package->getName() && $alias['version'] === $package->getVersion()) {
|
||||||
|
$version = $alias['alias'];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$constraint = new VersionConstraint('=', $version);
|
||||||
$request->install($package->getName(), $constraint);
|
$request->install($package->getName(), $constraint);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -156,14 +184,13 @@ EOT
|
||||||
// solve dependencies
|
// solve dependencies
|
||||||
$operations = $solver->solve($request);
|
$operations = $solver->solve($request);
|
||||||
|
|
||||||
// execute operations
|
|
||||||
if (!$operations) {
|
|
||||||
$io->write('<info>Nothing to install/update</info>');
|
|
||||||
}
|
|
||||||
|
|
||||||
// force dev packages to be updated to latest reference on update
|
// force dev packages to be updated to latest reference on update
|
||||||
if ($update) {
|
if ($update) {
|
||||||
foreach ($localRepo->getPackages() as $package) {
|
foreach ($localRepo->getPackages() as $package) {
|
||||||
|
if ($package instanceof AliasPackage) {
|
||||||
|
$package = $package->getAliasOf();
|
||||||
|
}
|
||||||
|
|
||||||
// skip non-dev packages
|
// skip non-dev packages
|
||||||
if (!$package->isDev()) {
|
if (!$package->isDev()) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -179,13 +206,26 @@ EOT
|
||||||
}
|
}
|
||||||
|
|
||||||
// force update
|
// force update
|
||||||
$newPackage = $composer->getRepositoryManager()->findPackage($package->getName(), $package->getVersion());
|
$newPackage = $repoManager->findPackage($package->getName(), $package->getVersion());
|
||||||
if ($newPackage && $newPackage->getSourceReference() !== $package->getSourceReference()) {
|
if ($newPackage && $newPackage->getSourceReference() !== $package->getSourceReference()) {
|
||||||
$operations[] = new UpdateOperation($package, $newPackage);
|
$operations[] = new UpdateOperation($package, $newPackage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// anti-alias local repository to allow updates to work fine
|
||||||
|
foreach ($repoManager->getLocalRepository()->getPackages() as $package) {
|
||||||
|
if ($package instanceof AliasPackage) {
|
||||||
|
$repoManager->getLocalRepository()->addPackage(clone $package->getAliasOf());
|
||||||
|
$repoManager->getLocalRepository()->removePackage($package);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// execute operations
|
||||||
|
if (!$operations) {
|
||||||
|
$io->write('<info>Nothing to install/update</info>');
|
||||||
|
}
|
||||||
|
|
||||||
foreach ($operations as $operation) {
|
foreach ($operations as $operation) {
|
||||||
if ($verbose) {
|
if ($verbose) {
|
||||||
$io->write((string) $operation);
|
$io->write((string) $operation);
|
||||||
|
@ -219,7 +259,7 @@ EOT
|
||||||
|
|
||||||
if (!$dryRun) {
|
if (!$dryRun) {
|
||||||
if ($update || !$composer->getLocker()->isLocked()) {
|
if ($update || !$composer->getLocker()->isLocked()) {
|
||||||
$composer->getLocker()->lockPackages($localRepo->getPackages());
|
$composer->getLocker()->setLockData($localRepo->getPackages(), $aliases);
|
||||||
$io->write('<info>Writing lock file</info>');
|
$io->write('<info>Writing lock file</info>');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,7 @@ EOT
|
||||||
|
|
||||||
// we only have a name, so search for the highest version of the given package
|
// we only have a name, so search for the highest version of the given package
|
||||||
$highestVersion = null;
|
$highestVersion = null;
|
||||||
foreach ($repos->findPackagesByName($input->getArgument('package')) as $package) {
|
foreach ($repos->findPackages($input->getArgument('package')) as $package) {
|
||||||
if (null === $highestVersion || version_compare($package->getVersion(), $highestVersion->getVersion(), '>=')) {
|
if (null === $highestVersion || version_compare($package->getVersion(), $highestVersion->getVersion(), '>=')) {
|
||||||
$highestVersion = $package;
|
$highestVersion = $package;
|
||||||
}
|
}
|
||||||
|
@ -164,7 +164,7 @@ EOT
|
||||||
|
|
||||||
$versions = array();
|
$versions = array();
|
||||||
|
|
||||||
foreach ($repos->findPackagesByName($package->getName()) as $version) {
|
foreach ($repos->findPackages($package->getName()) as $version) {
|
||||||
$versions[] = $version->getPrettyVersion();
|
$versions[] = $version->getPrettyVersion();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@ namespace Composer\DependencyResolver;
|
||||||
|
|
||||||
use Composer\Repository\RepositoryInterface;
|
use Composer\Repository\RepositoryInterface;
|
||||||
use Composer\Package\PackageInterface;
|
use Composer\Package\PackageInterface;
|
||||||
|
use Composer\Package\AliasPackage;
|
||||||
use Composer\Package\LinkConstraint\VersionConstraint;
|
use Composer\Package\LinkConstraint\VersionConstraint;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -103,6 +104,16 @@ class DefaultPolicy implements PolicyInterface
|
||||||
public function compareByPriorityPreferInstalled(Pool $pool, array $installedMap, PackageInterface $a, PackageInterface $b, $ignoreReplace = false)
|
public function compareByPriorityPreferInstalled(Pool $pool, array $installedMap, PackageInterface $a, PackageInterface $b, $ignoreReplace = false)
|
||||||
{
|
{
|
||||||
if ($a->getRepository() === $b->getRepository()) {
|
if ($a->getRepository() === $b->getRepository()) {
|
||||||
|
if ($a->getName() === $b->getName()) {
|
||||||
|
$aAliased = $a instanceof AliasPackage;
|
||||||
|
$bAliased = $b instanceof AliasPackage;
|
||||||
|
if ($aAliased && !$bAliased) {
|
||||||
|
return -1; // use a
|
||||||
|
}
|
||||||
|
if (!$aAliased && $bAliased) {
|
||||||
|
return 1; // use b
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!$ignoreReplace) {
|
if (!$ignoreReplace) {
|
||||||
// return original, not replaced
|
// return original, not replaced
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
namespace Composer\Installer;
|
namespace Composer\Installer;
|
||||||
|
|
||||||
use Composer\Package\PackageInterface;
|
use Composer\Package\PackageInterface;
|
||||||
|
use Composer\Package\AliasPackage;
|
||||||
use Composer\DependencyResolver\Operation\OperationInterface;
|
use Composer\DependencyResolver\Operation\OperationInterface;
|
||||||
use Composer\DependencyResolver\Operation\InstallOperation;
|
use Composer\DependencyResolver\Operation\InstallOperation;
|
||||||
use Composer\DependencyResolver\Operation\UpdateOperation;
|
use Composer\DependencyResolver\Operation\UpdateOperation;
|
||||||
|
@ -123,8 +124,12 @@ class InstallationManager
|
||||||
*/
|
*/
|
||||||
public function install(InstallOperation $operation)
|
public function install(InstallOperation $operation)
|
||||||
{
|
{
|
||||||
$installer = $this->getInstaller($operation->getPackage()->getType());
|
$package = $operation->getPackage();
|
||||||
$installer->install($operation->getPackage());
|
if ($package instanceof AliasPackage) {
|
||||||
|
$package = $package->getAliasOf();
|
||||||
|
}
|
||||||
|
$installer = $this->getInstaller($package->getType());
|
||||||
|
$installer->install($package);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -135,7 +140,13 @@ class InstallationManager
|
||||||
public function update(UpdateOperation $operation)
|
public function update(UpdateOperation $operation)
|
||||||
{
|
{
|
||||||
$initial = $operation->getInitialPackage();
|
$initial = $operation->getInitialPackage();
|
||||||
|
if ($initial instanceof AliasPackage) {
|
||||||
|
$initial = $initial->getAliasOf();
|
||||||
|
}
|
||||||
$target = $operation->getTargetPackage();
|
$target = $operation->getTargetPackage();
|
||||||
|
if ($target instanceof AliasPackage) {
|
||||||
|
$target = $target->getAliasOf();
|
||||||
|
}
|
||||||
|
|
||||||
$initialType = $initial->getType();
|
$initialType = $initial->getType();
|
||||||
$targetType = $target->getType();
|
$targetType = $target->getType();
|
||||||
|
@ -156,8 +167,12 @@ class InstallationManager
|
||||||
*/
|
*/
|
||||||
public function uninstall(UninstallOperation $operation)
|
public function uninstall(UninstallOperation $operation)
|
||||||
{
|
{
|
||||||
$installer = $this->getInstaller($operation->getPackage()->getType());
|
$package = $operation->getPackage();
|
||||||
$installer->uninstall($operation->getPackage());
|
if ($package instanceof AliasPackage) {
|
||||||
|
$package = $package->getAliasOf();
|
||||||
|
}
|
||||||
|
$installer = $this->getInstaller($package->getType());
|
||||||
|
$installer->uninstall($package);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -0,0 +1,236 @@
|
||||||
|
<?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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Composer\Package;
|
||||||
|
|
||||||
|
use Composer\Package\LinkConstraint\LinkConstraintInterface;
|
||||||
|
use Composer\Package\LinkConstraint\VersionConstraint;
|
||||||
|
use Composer\Repository\RepositoryInterface;
|
||||||
|
use Composer\Repository\PlatformRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||||
|
*/
|
||||||
|
class AliasPackage extends BasePackage
|
||||||
|
{
|
||||||
|
protected $version;
|
||||||
|
protected $dev;
|
||||||
|
protected $aliasOf;
|
||||||
|
|
||||||
|
protected $requires;
|
||||||
|
protected $conflicts;
|
||||||
|
protected $provides;
|
||||||
|
protected $replaces;
|
||||||
|
protected $recommends;
|
||||||
|
protected $suggests;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* All descendants' constructors should call this parent constructor
|
||||||
|
*
|
||||||
|
* @param PackageInterface $aliasOf The package this package is an alias of
|
||||||
|
* @param string $version The version the alias must report
|
||||||
|
*/
|
||||||
|
public function __construct($aliasOf, $version)
|
||||||
|
{
|
||||||
|
parent::__construct($aliasOf->getName());
|
||||||
|
|
||||||
|
$this->version = $version;
|
||||||
|
$this->aliasOf = $aliasOf;
|
||||||
|
$this->dev = 'dev-' === substr($version, 0, 4) || '-dev' === substr($version, -4);
|
||||||
|
|
||||||
|
foreach (self::$supportedLinkTypes as $type => $description) {
|
||||||
|
$links = $aliasOf->{'get'.ucfirst($description)}();
|
||||||
|
$newLinks = array();
|
||||||
|
foreach ($links as $link) {
|
||||||
|
// link is self.version, but must be replacing also the replaced version
|
||||||
|
if ('self.version' === $link->getPrettyConstraint()) {
|
||||||
|
$newLinks[] = new Link($link->getSource(), $link->getTarget(), new VersionConstraint('=', $this->version), $description, $this->version);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$this->$description = array_merge($links, $newLinks);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getAliasOf()
|
||||||
|
{
|
||||||
|
return $this->aliasOf;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
public function getVersion()
|
||||||
|
{
|
||||||
|
return $this->version;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
public function getPrettyVersion()
|
||||||
|
{
|
||||||
|
return $this->version;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
public function isDev()
|
||||||
|
{
|
||||||
|
return $this->dev;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
function getRequires()
|
||||||
|
{
|
||||||
|
return $this->requires;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
function getConflicts()
|
||||||
|
{
|
||||||
|
return $this->conflicts;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
function getProvides()
|
||||||
|
{
|
||||||
|
return $this->provides;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
function getReplaces()
|
||||||
|
{
|
||||||
|
return $this->replaces;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
function getRecommends()
|
||||||
|
{
|
||||||
|
return $this->recommends;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
function getSuggests()
|
||||||
|
{
|
||||||
|
return $this->suggests;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***************************************
|
||||||
|
* Wrappers around the aliased package *
|
||||||
|
***************************************/
|
||||||
|
|
||||||
|
public function getType()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getType();
|
||||||
|
}
|
||||||
|
public function getTargetDir()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getTargetDir();
|
||||||
|
}
|
||||||
|
public function getExtra()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getExtra();
|
||||||
|
}
|
||||||
|
public function setInstallationSource($type)
|
||||||
|
{
|
||||||
|
$this->aliasOf->setInstallationSource($type);
|
||||||
|
}
|
||||||
|
public function getInstallationSource()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getInstallationSource();
|
||||||
|
}
|
||||||
|
public function getSourceType()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getSourceType();
|
||||||
|
}
|
||||||
|
public function getSourceUrl()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getSourceUrl();
|
||||||
|
}
|
||||||
|
public function getSourceReference()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getSourceReference();
|
||||||
|
}
|
||||||
|
public function getDistType()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getDistType();
|
||||||
|
}
|
||||||
|
public function getDistUrl()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getDistUrl();
|
||||||
|
}
|
||||||
|
public function getDistReference()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getDistReference();
|
||||||
|
}
|
||||||
|
public function getDistSha1Checksum()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getDistSha1Checksum();
|
||||||
|
}
|
||||||
|
public function getScripts()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getScripts();
|
||||||
|
}
|
||||||
|
public function getLicense()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getLicense();
|
||||||
|
}
|
||||||
|
public function getAutoload()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getAutoload();
|
||||||
|
}
|
||||||
|
public function getRepositories()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getRepositories();
|
||||||
|
}
|
||||||
|
public function getReleaseDate()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getReleaseDate();
|
||||||
|
}
|
||||||
|
public function getBinaries()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getBinaries();
|
||||||
|
}
|
||||||
|
public function getKeywords()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getKeywords();
|
||||||
|
}
|
||||||
|
public function getDescription()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getDescription();
|
||||||
|
}
|
||||||
|
public function getHomepage()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getHomepage();
|
||||||
|
}
|
||||||
|
public function getAuthors()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->getAuthors();
|
||||||
|
}
|
||||||
|
public function __toString()
|
||||||
|
{
|
||||||
|
return $this->aliasOf->__toString();
|
||||||
|
}
|
||||||
|
}
|
|
@ -24,8 +24,18 @@ use Composer\Repository\PlatformRepository;
|
||||||
*/
|
*/
|
||||||
abstract class BasePackage implements PackageInterface
|
abstract class BasePackage implements PackageInterface
|
||||||
{
|
{
|
||||||
|
public static $supportedLinkTypes = array(
|
||||||
|
'require' => 'requires',
|
||||||
|
'conflict' => 'conflicts',
|
||||||
|
'provide' => 'provides',
|
||||||
|
'replace' => 'replaces',
|
||||||
|
'recommend' => 'recommends',
|
||||||
|
'suggest' => 'suggests',
|
||||||
|
);
|
||||||
|
|
||||||
protected $name;
|
protected $name;
|
||||||
protected $prettyName;
|
protected $prettyName;
|
||||||
|
|
||||||
protected $repository;
|
protected $repository;
|
||||||
protected $id;
|
protected $id;
|
||||||
|
|
||||||
|
|
|
@ -22,15 +22,6 @@ use Composer\Repository\RepositoryManager;
|
||||||
*/
|
*/
|
||||||
class ArrayLoader
|
class ArrayLoader
|
||||||
{
|
{
|
||||||
protected $supportedLinkTypes = array(
|
|
||||||
'require' => 'requires',
|
|
||||||
'conflict' => 'conflicts',
|
|
||||||
'provide' => 'provides',
|
|
||||||
'replace' => 'replaces',
|
|
||||||
'recommend' => 'recommends',
|
|
||||||
'suggest' => 'suggests',
|
|
||||||
);
|
|
||||||
|
|
||||||
protected $versionParser;
|
protected $versionParser;
|
||||||
|
|
||||||
public function __construct(VersionParser $parser = null)
|
public function __construct(VersionParser $parser = null)
|
||||||
|
@ -141,7 +132,7 @@ class ArrayLoader
|
||||||
$package->setDistSha1Checksum(isset($config['dist']['shasum']) ? $config['dist']['shasum'] : null);
|
$package->setDistSha1Checksum(isset($config['dist']['shasum']) ? $config['dist']['shasum'] : null);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->supportedLinkTypes as $type => $description) {
|
foreach (Package\BasePackage::$supportedLinkTypes as $type => $description) {
|
||||||
if (isset($config[$type])) {
|
if (isset($config[$type])) {
|
||||||
$method = 'set'.ucfirst($description);
|
$method = 'set'.ucfirst($description);
|
||||||
$package->{$method}(
|
$package->{$method}(
|
||||||
|
@ -162,9 +153,10 @@ class ArrayLoader
|
||||||
$links = array();
|
$links = array();
|
||||||
foreach ($linksSpecs as $packageName => $constraint) {
|
foreach ($linksSpecs as $packageName => $constraint) {
|
||||||
if ('self.version' === $constraint) {
|
if ('self.version' === $constraint) {
|
||||||
$constraint = $package->getPrettyVersion();
|
$parsedConstraint = $this->versionParser->parseConstraints($package->getPrettyVersion());
|
||||||
|
} else {
|
||||||
|
$parsedConstraint = $this->versionParser->parseConstraints($constraint);
|
||||||
}
|
}
|
||||||
$parsedConstraint = $this->versionParser->parseConstraints($constraint);
|
|
||||||
$links[] = new Package\Link($package->getName(), $packageName, $parsedConstraint, $description, $constraint);
|
$links[] = new Package\Link($package->getName(), $packageName, $parsedConstraint, $description, $constraint);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,21 @@ class RootPackageLoader extends ArrayLoader
|
||||||
|
|
||||||
$package = parent::load($config);
|
$package = parent::load($config);
|
||||||
|
|
||||||
|
if (isset($config['require'])) {
|
||||||
|
$aliases = array();
|
||||||
|
foreach ($config['require'] as $reqName => $reqVersion) {
|
||||||
|
if (preg_match('{^([^,\s]+) +as +([^,\s]+)$}', $reqVersion, $match)) {
|
||||||
|
$aliases[] = array(
|
||||||
|
'package' => strtolower($reqName),
|
||||||
|
'version' => $this->versionParser->normalize($match[1]),
|
||||||
|
'alias' => $this->versionParser->normalize($match[2]),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$package->setAliases($aliases);
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($config['repositories'])) {
|
if (isset($config['repositories'])) {
|
||||||
foreach ($config['repositories'] as $index => $repo) {
|
foreach ($config['repositories'] as $index => $repo) {
|
||||||
if (isset($repo['packagist']) && $repo['packagist'] === false) {
|
if (isset($repo['packagist']) && $repo['packagist'] === false) {
|
||||||
|
|
|
@ -91,6 +91,12 @@ class Locker
|
||||||
return $packages;
|
return $packages;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getAliases()
|
||||||
|
{
|
||||||
|
$lockList = $this->getLockData();
|
||||||
|
return isset($lockList['aliases']) ? $lockList['aliases'] : array();
|
||||||
|
}
|
||||||
|
|
||||||
public function getLockData()
|
public function getLockData()
|
||||||
{
|
{
|
||||||
if (!$this->isLocked()) {
|
if (!$this->isLocked()) {
|
||||||
|
@ -101,15 +107,17 @@ class Locker
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Locks provided packages into lockfile.
|
* Locks provided data into lockfile.
|
||||||
*
|
*
|
||||||
* @param array $packages array of packages
|
* @param array $packages array of packages
|
||||||
|
* @param array $aliases array of aliases
|
||||||
*/
|
*/
|
||||||
public function lockPackages(array $packages)
|
public function setLockData(array $packages, array $aliases)
|
||||||
{
|
{
|
||||||
$lock = array(
|
$lock = array(
|
||||||
'hash' => $this->hash,
|
'hash' => $this->hash,
|
||||||
'packages' => array(),
|
'packages' => array(),
|
||||||
|
'aliases' => $aliases,
|
||||||
);
|
);
|
||||||
foreach ($packages as $package) {
|
foreach ($packages as $package) {
|
||||||
$name = $package->getPrettyName();
|
$name = $package->getPrettyName();
|
||||||
|
|
|
@ -41,6 +41,7 @@ class MemoryPackage extends BasePackage
|
||||||
protected $extra = array();
|
protected $extra = array();
|
||||||
protected $binaries = array();
|
protected $binaries = array();
|
||||||
protected $scripts = array();
|
protected $scripts = array();
|
||||||
|
protected $aliases = array();
|
||||||
protected $dev;
|
protected $dev;
|
||||||
|
|
||||||
protected $requires = array();
|
protected $requires = array();
|
||||||
|
@ -156,6 +157,22 @@ class MemoryPackage extends BasePackage
|
||||||
return $this->scripts;
|
return $this->scripts;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $aliases
|
||||||
|
*/
|
||||||
|
public function setAliases(array $aliases)
|
||||||
|
{
|
||||||
|
$this->aliases = $aliases;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
public function getAliases()
|
||||||
|
{
|
||||||
|
return $this->aliases;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -293,6 +293,13 @@ interface PackageInterface
|
||||||
*/
|
*/
|
||||||
function getDescription();
|
function getDescription();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the package binaries
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
function getBinaries();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the package homepage
|
* Returns the package homepage
|
||||||
*
|
*
|
||||||
|
|
|
@ -34,6 +34,11 @@ class VersionParser
|
||||||
{
|
{
|
||||||
$version = trim($version);
|
$version = trim($version);
|
||||||
|
|
||||||
|
// ignore aliases and just assume the alias is required instead of the source
|
||||||
|
if (preg_match('{^([^,\s]+) +as +([^,\s]+)$}', $version, $match)) {
|
||||||
|
$version = $match[2];
|
||||||
|
}
|
||||||
|
|
||||||
// match master-like branches
|
// match master-like branches
|
||||||
if (preg_match('{^(?:dev-)?(?:master|trunk|default)$}i', $version)) {
|
if (preg_match('{^(?:dev-)?(?:master|trunk|default)$}i', $version)) {
|
||||||
return '9999999-dev';
|
return '9999999-dev';
|
||||||
|
|
|
@ -44,14 +44,21 @@ class ArrayRepository implements RepositoryInterface
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
public function findPackagesByName($name)
|
public function findPackages($name, $version = null)
|
||||||
{
|
{
|
||||||
// normalize name
|
// normalize name
|
||||||
$name = strtolower($name);
|
$name = strtolower($name);
|
||||||
|
|
||||||
|
// normalize version
|
||||||
|
if (null !== $version) {
|
||||||
|
$versionParser = new VersionParser();
|
||||||
|
$version = $versionParser->normalize($version);
|
||||||
|
}
|
||||||
|
|
||||||
$packages = array();
|
$packages = array();
|
||||||
|
|
||||||
foreach ($this->getPackages() as $package) {
|
foreach ($this->getPackages() as $package) {
|
||||||
if ($package->getName() === $name) {
|
if ($package->getName() === $name && (null === $version || $version === $package->getVersion())) {
|
||||||
$packages[] = $package;
|
$packages[] = $package;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,12 +68,12 @@ class CompositeRepository implements RepositoryInterface
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function findPackagesByName($name)
|
public function findPackages($name, $version = null)
|
||||||
{
|
{
|
||||||
$packages = array();
|
$packages = array();
|
||||||
foreach ($this->repositories as $repository) {
|
foreach ($this->repositories as $repository) {
|
||||||
/* @var $repository RepositoryInterface */
|
/* @var $repository RepositoryInterface */
|
||||||
$packages[] = $repository->findPackagesByName($name);
|
$packages[] = $repository->findPackages($name, $version);
|
||||||
}
|
}
|
||||||
return call_user_func_array('array_merge', $packages);
|
return call_user_func_array('array_merge', $packages);
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ interface RepositoryInterface extends \Countable
|
||||||
function hasPackage(PackageInterface $package);
|
function hasPackage(PackageInterface $package);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Searches for a package by it's name and version (if has one).
|
* Searches for the first match of a package by name and version.
|
||||||
*
|
*
|
||||||
* @param string $name package name
|
* @param string $name package name
|
||||||
* @param string $version package version
|
* @param string $version package version
|
||||||
|
@ -42,13 +42,14 @@ interface RepositoryInterface extends \Countable
|
||||||
function findPackage($name, $version);
|
function findPackage($name, $version);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Searches for packages by it's name.
|
* Searches for all packages matching a name and optionally a version.
|
||||||
*
|
*
|
||||||
* @param string $name package name
|
* @param string $name package name
|
||||||
|
* @param string $version package version
|
||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
function findPackagesByName($name);
|
function findPackages($name, $version = null);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns list of registered packages.
|
* Returns list of registered packages.
|
||||||
|
|
|
@ -50,6 +50,25 @@ class RepositoryManager
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Searches for all packages matching a name and optionally a version in managed repositories.
|
||||||
|
*
|
||||||
|
* @param string $name package name
|
||||||
|
* @param string $version package version
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function findPackages($name, $version)
|
||||||
|
{
|
||||||
|
$packages = array();
|
||||||
|
|
||||||
|
foreach ($this->repositories as $repository) {
|
||||||
|
$packages = array_merge($packages, $repository->findPackages($name, $version));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $packages;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds repository
|
* Adds repository
|
||||||
*
|
*
|
||||||
|
|
|
@ -114,7 +114,7 @@ class LockerTest extends \PHPUnit_Framework_TestCase
|
||||||
$locker->getLockedPackages();
|
$locker->getLockedPackages();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testLockPackages()
|
public function testSetLockData()
|
||||||
{
|
{
|
||||||
$json = $this->createJsonFileMock();
|
$json = $this->createJsonFileMock();
|
||||||
$repo = $this->createRepositoryManagerMock();
|
$repo = $this->createRepositoryManagerMock();
|
||||||
|
@ -151,9 +151,10 @@ class LockerTest extends \PHPUnit_Framework_TestCase
|
||||||
array('package' => 'pkg1', 'version' => '1.0.0-beta'),
|
array('package' => 'pkg1', 'version' => '1.0.0-beta'),
|
||||||
array('package' => 'pkg2', 'version' => '0.1.10')
|
array('package' => 'pkg2', 'version' => '0.1.10')
|
||||||
),
|
),
|
||||||
|
'aliases' => array(),
|
||||||
));
|
));
|
||||||
|
|
||||||
$locker->lockPackages(array($package1, $package2));
|
$locker->setLockData(array($package1, $package2), array());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testLockBadPackages()
|
public function testLockBadPackages()
|
||||||
|
@ -171,7 +172,7 @@ class LockerTest extends \PHPUnit_Framework_TestCase
|
||||||
|
|
||||||
$this->setExpectedException('LogicException');
|
$this->setExpectedException('LogicException');
|
||||||
|
|
||||||
$locker->lockPackages(array($package1));
|
$locker->setLockData(array($package1), array());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testIsFresh()
|
public function testIsFresh()
|
||||||
|
|
|
@ -53,6 +53,7 @@ class VersionParserTest extends \PHPUnit_Framework_TestCase
|
||||||
'parses trunk' => array('dev-trunk', '9999999-dev'),
|
'parses trunk' => array('dev-trunk', '9999999-dev'),
|
||||||
'parses arbitrary' => array('dev-feature-foo', 'dev-feature-foo'),
|
'parses arbitrary' => array('dev-feature-foo', 'dev-feature-foo'),
|
||||||
'parses arbitrary2' => array('DEV-FOOBAR', 'dev-foobar'),
|
'parses arbitrary2' => array('DEV-FOOBAR', 'dev-foobar'),
|
||||||
|
'ignores aliases' => array('dev-master as 1.0.0', '1.0.0.0'),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -128,6 +129,7 @@ class VersionParserTest extends \PHPUnit_Framework_TestCase
|
||||||
'accepts master' => array('>=dev-master', new VersionConstraint('>=', '9999999-dev')),
|
'accepts master' => array('>=dev-master', new VersionConstraint('>=', '9999999-dev')),
|
||||||
'accepts master/2' => array('dev-master', new VersionConstraint('=', '9999999-dev')),
|
'accepts master/2' => array('dev-master', new VersionConstraint('=', '9999999-dev')),
|
||||||
'accepts arbitrary' => array('dev-feature-a', new VersionConstraint('=', 'dev-feature-a')),
|
'accepts arbitrary' => array('dev-feature-a', new VersionConstraint('=', 'dev-feature-a')),
|
||||||
|
'ignores aliases' => array('dev-master as 1.0.0', new VersionConstraint('=', '1.0.0.0')),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -51,18 +51,18 @@ class ArrayRepositoryTest extends TestCase
|
||||||
$this->assertFalse($repo->hasPackage($this->getPackage('bar', '1')));
|
$this->assertFalse($repo->hasPackage($this->getPackage('bar', '1')));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testFindPackagesByName()
|
public function testFindPackages()
|
||||||
{
|
{
|
||||||
$repo = new ArrayRepository();
|
$repo = new ArrayRepository();
|
||||||
$repo->addPackage($this->getPackage('foo', '1'));
|
$repo->addPackage($this->getPackage('foo', '1'));
|
||||||
$repo->addPackage($this->getPackage('bar', '2'));
|
$repo->addPackage($this->getPackage('bar', '2'));
|
||||||
$repo->addPackage($this->getPackage('bar', '3'));
|
$repo->addPackage($this->getPackage('bar', '3'));
|
||||||
|
|
||||||
$foo = $repo->findPackagesByName('foo');
|
$foo = $repo->findPackages('foo');
|
||||||
$this->assertCount(1, $foo);
|
$this->assertCount(1, $foo);
|
||||||
$this->assertEquals('foo', $foo[0]->getName());
|
$this->assertEquals('foo', $foo[0]->getName());
|
||||||
|
|
||||||
$bar = $repo->findPackagesByName('bar');
|
$bar = $repo->findPackages('bar');
|
||||||
$this->assertCount(2, $bar);
|
$this->assertCount(2, $bar);
|
||||||
$this->assertEquals('bar', $bar[0]->getName());
|
$this->assertEquals('bar', $bar[0]->getName());
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,15 +22,15 @@ class CompositeRepositoryTest extends TestCase
|
||||||
{
|
{
|
||||||
$arrayRepoOne = new ArrayRepository;
|
$arrayRepoOne = new ArrayRepository;
|
||||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||||
|
|
||||||
$arrayRepoTwo = new ArrayRepository;
|
$arrayRepoTwo = new ArrayRepository;
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||||
|
|
||||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||||
|
|
||||||
$this->assertTrue($repo->hasPackage($this->getPackage('foo', '1')), "Should have package 'foo/1'");
|
$this->assertTrue($repo->hasPackage($this->getPackage('foo', '1')), "Should have package 'foo/1'");
|
||||||
$this->assertTrue($repo->hasPackage($this->getPackage('bar', '1')), "Should have package 'bar/1'");
|
$this->assertTrue($repo->hasPackage($this->getPackage('bar', '1')), "Should have package 'bar/1'");
|
||||||
|
|
||||||
$this->assertFalse($repo->hasPackage($this->getPackage('foo', '2')), "Should not have package 'foo/2'");
|
$this->assertFalse($repo->hasPackage($this->getPackage('foo', '2')), "Should not have package 'foo/2'");
|
||||||
$this->assertFalse($repo->hasPackage($this->getPackage('bar', '2')), "Should not have package 'bar/2'");
|
$this->assertFalse($repo->hasPackage($this->getPackage('bar', '2')), "Should not have package 'bar/2'");
|
||||||
}
|
}
|
||||||
|
@ -39,12 +39,12 @@ class CompositeRepositoryTest extends TestCase
|
||||||
{
|
{
|
||||||
$arrayRepoOne = new ArrayRepository;
|
$arrayRepoOne = new ArrayRepository;
|
||||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||||
|
|
||||||
$arrayRepoTwo = new ArrayRepository;
|
$arrayRepoTwo = new ArrayRepository;
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||||
|
|
||||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||||
|
|
||||||
$this->assertEquals('foo', $repo->findPackage('foo', '1')->getName(), "Should find package 'foo/1' and get name of 'foo'");
|
$this->assertEquals('foo', $repo->findPackage('foo', '1')->getName(), "Should find package 'foo/1' and get name of 'foo'");
|
||||||
$this->assertEquals('1', $repo->findPackage('foo', '1')->getPrettyVersion(), "Should find package 'foo/1' and get pretty version of '1'");
|
$this->assertEquals('1', $repo->findPackage('foo', '1')->getPrettyVersion(), "Should find package 'foo/1' and get pretty version of '1'");
|
||||||
$this->assertEquals('bar', $repo->findPackage('bar', '1')->getName(), "Should find package 'bar/1' and get name of 'bar'");
|
$this->assertEquals('bar', $repo->findPackage('bar', '1')->getName(), "Should find package 'bar/1' and get name of 'bar'");
|
||||||
|
@ -52,7 +52,7 @@ class CompositeRepositoryTest extends TestCase
|
||||||
$this->assertNull($repo->findPackage('foo', '2'), "Should not find package 'foo/2'");
|
$this->assertNull($repo->findPackage('foo', '2'), "Should not find package 'foo/2'");
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testFindPackagesByName()
|
public function testFindPackages()
|
||||||
{
|
{
|
||||||
$arrayRepoOne = new ArrayRepository;
|
$arrayRepoOne = new ArrayRepository;
|
||||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||||
|
@ -63,32 +63,32 @@ class CompositeRepositoryTest extends TestCase
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '2'));
|
$arrayRepoTwo->addPackage($this->getPackage('bar', '2'));
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('foo', '3'));
|
$arrayRepoTwo->addPackage($this->getPackage('foo', '3'));
|
||||||
|
|
||||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||||
|
|
||||||
$bats = $repo->findPackagesByName('bat');
|
$bats = $repo->findPackages('bat');
|
||||||
$this->assertCount(1, $bats, "Should find one instance of 'bats' (defined in just one repository)");
|
$this->assertCount(1, $bats, "Should find one instance of 'bats' (defined in just one repository)");
|
||||||
$this->assertEquals('bat', $bats[0]->getName(), "Should find packages named 'bat'");
|
$this->assertEquals('bat', $bats[0]->getName(), "Should find packages named 'bat'");
|
||||||
|
|
||||||
$bars = $repo->findPackagesByName('bar');
|
$bars = $repo->findPackages('bar');
|
||||||
$this->assertCount(2, $bars, "Should find two instances of 'bar' (both defined in the same repository)");
|
$this->assertCount(2, $bars, "Should find two instances of 'bar' (both defined in the same repository)");
|
||||||
$this->assertEquals('bar', $bars[0]->getName(), "Should find packages named 'bar'");
|
$this->assertEquals('bar', $bars[0]->getName(), "Should find packages named 'bar'");
|
||||||
|
|
||||||
$foos = $repo->findPackagesByName('foo');
|
$foos = $repo->findPackages('foo');
|
||||||
$this->assertCount(3, $foos, "Should find three instances of 'foo' (two defined in one repository, the third in the other)");
|
$this->assertCount(3, $foos, "Should find three instances of 'foo' (two defined in one repository, the third in the other)");
|
||||||
$this->assertEquals('foo', $foos[0]->getName(), "Should find packages named 'foo'");
|
$this->assertEquals('foo', $foos[0]->getName(), "Should find packages named 'foo'");
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetPackages()
|
public function testGetPackages()
|
||||||
{
|
{
|
||||||
$arrayRepoOne = new ArrayRepository;
|
$arrayRepoOne = new ArrayRepository;
|
||||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||||
|
|
||||||
$arrayRepoTwo = new ArrayRepository;
|
$arrayRepoTwo = new ArrayRepository;
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||||
|
|
||||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||||
|
|
||||||
$packages = $repo->getPackages();
|
$packages = $repo->getPackages();
|
||||||
$this->assertCount(2, $packages, "Should get two packages");
|
$this->assertCount(2, $packages, "Should get two packages");
|
||||||
$this->assertEquals("foo", $packages[0]->getName(), "First package should have name of 'foo'");
|
$this->assertEquals("foo", $packages[0]->getName(), "First package should have name of 'foo'");
|
||||||
|
@ -96,17 +96,17 @@ class CompositeRepositoryTest extends TestCase
|
||||||
$this->assertEquals("bar", $packages[1]->getName(), "Second package should have name of 'bar'");
|
$this->assertEquals("bar", $packages[1]->getName(), "Second package should have name of 'bar'");
|
||||||
$this->assertEquals("1", $packages[1]->getPrettyVersion(), "Second package should have pretty version of '1'");
|
$this->assertEquals("1", $packages[1]->getPrettyVersion(), "Second package should have pretty version of '1'");
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testAddRepository()
|
public function testAddRepository()
|
||||||
{
|
{
|
||||||
$arrayRepoOne = new ArrayRepository;
|
$arrayRepoOne = new ArrayRepository;
|
||||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||||
|
|
||||||
$arrayRepoTwo = new ArrayRepository;
|
$arrayRepoTwo = new ArrayRepository;
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '2'));
|
$arrayRepoTwo->addPackage($this->getPackage('bar', '2'));
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '3'));
|
$arrayRepoTwo->addPackage($this->getPackage('bar', '3'));
|
||||||
|
|
||||||
$repo = new CompositeRepository(array($arrayRepoOne));
|
$repo = new CompositeRepository(array($arrayRepoOne));
|
||||||
$this->assertCount(1, $repo, "Composite repository should have just one package before addRepository() is called");
|
$this->assertCount(1, $repo, "Composite repository should have just one package before addRepository() is called");
|
||||||
$repo->addRepository($arrayRepoTwo);
|
$repo->addRepository($arrayRepoTwo);
|
||||||
|
@ -117,12 +117,12 @@ class CompositeRepositoryTest extends TestCase
|
||||||
{
|
{
|
||||||
$arrayRepoOne = new ArrayRepository;
|
$arrayRepoOne = new ArrayRepository;
|
||||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||||
|
|
||||||
$arrayRepoTwo = new ArrayRepository;
|
$arrayRepoTwo = new ArrayRepository;
|
||||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||||
|
|
||||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||||
|
|
||||||
$this->assertEquals(2, count($repo), "Should return '2' for count(\$repo)");
|
$this->assertEquals(2, count($repo), "Should return '2' for count(\$repo)");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue