2011-10-01 12:32:56 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Package;
|
|
|
|
|
|
|
|
use Composer\Package\Locker;
|
|
|
|
|
|
|
|
class LockerTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
public function testIsLocked()
|
|
|
|
{
|
|
|
|
$json = $this->createJsonFileMock();
|
2012-06-20 10:05:18 +00:00
|
|
|
$locker = new Locker($json, $this->createRepositoryManagerMock(), $this->createInstallationManagerMock(), 'md5');
|
2011-10-01 12:32:56 +00:00
|
|
|
|
|
|
|
$json
|
2012-04-15 17:05:50 +00:00
|
|
|
->expects($this->any())
|
2011-10-01 12:32:56 +00:00
|
|
|
->method('exists')
|
|
|
|
->will($this->returnValue(true));
|
2012-04-15 17:05:50 +00:00
|
|
|
$json
|
|
|
|
->expects($this->any())
|
|
|
|
->method('read')
|
|
|
|
->will($this->returnValue(array('packages' => array())));
|
2011-10-01 12:32:56 +00:00
|
|
|
|
|
|
|
$this->assertTrue($locker->isLocked());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetNotLockedPackages()
|
|
|
|
{
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
$repo = $this->createRepositoryManagerMock();
|
2012-06-20 10:05:18 +00:00
|
|
|
$inst = $this->createInstallationManagerMock();
|
2011-10-01 12:32:56 +00:00
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$locker = new Locker($json, $repo, $inst, 'md5');
|
2011-10-01 12:32:56 +00:00
|
|
|
|
|
|
|
$json
|
|
|
|
->expects($this->once())
|
|
|
|
->method('exists')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$this->setExpectedException('LogicException');
|
|
|
|
|
|
|
|
$locker->getLockedPackages();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetLockedPackages()
|
|
|
|
{
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
$repo = $this->createRepositoryManagerMock();
|
2012-06-20 10:05:18 +00:00
|
|
|
$inst = $this->createInstallationManagerMock();
|
2011-10-01 12:32:56 +00:00
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$locker = new Locker($json, $repo, $inst, 'md5');
|
2011-10-01 12:32:56 +00:00
|
|
|
|
|
|
|
$json
|
|
|
|
->expects($this->once())
|
|
|
|
->method('exists')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$json
|
|
|
|
->expects($this->once())
|
|
|
|
->method('read')
|
|
|
|
->will($this->returnValue(array(
|
2011-12-24 14:28:12 +00:00
|
|
|
'packages' => array(
|
|
|
|
array('package' => 'pkg1', 'version' => '1.0.0-beta'),
|
|
|
|
array('package' => 'pkg2', 'version' => '0.1.10')
|
|
|
|
)
|
2011-10-01 12:32:56 +00:00
|
|
|
)));
|
|
|
|
|
|
|
|
$package1 = $this->createPackageMock();
|
|
|
|
$package2 = $this->createPackageMock();
|
|
|
|
|
2011-10-30 19:29:52 +00:00
|
|
|
$repo->getLocalRepository()
|
2011-10-01 12:32:56 +00:00
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('findPackage')
|
|
|
|
->with($this->logicalOr('pkg1', 'pkg2'), $this->logicalOr('1.0.0-beta', '0.1.10'))
|
|
|
|
->will($this->onConsecutiveCalls($package1, $package2));
|
|
|
|
|
|
|
|
$this->assertEquals(array($package1, $package2), $locker->getLockedPackages());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetPackagesWithoutRepo()
|
|
|
|
{
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
$repo = $this->createRepositoryManagerMock();
|
2012-06-20 10:05:18 +00:00
|
|
|
$inst = $this->createInstallationManagerMock();
|
2011-10-01 12:32:56 +00:00
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$locker = new Locker($json, $repo, $inst, 'md5');
|
2011-10-01 12:32:56 +00:00
|
|
|
|
|
|
|
$json
|
|
|
|
->expects($this->once())
|
|
|
|
->method('exists')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$json
|
|
|
|
->expects($this->once())
|
|
|
|
->method('read')
|
|
|
|
->will($this->returnValue(array(
|
2011-12-24 14:28:12 +00:00
|
|
|
'packages' => array(
|
|
|
|
array('package' => 'pkg1', 'version' => '1.0.0-beta'),
|
|
|
|
array('package' => 'pkg2', 'version' => '0.1.10')
|
|
|
|
)
|
2011-10-01 12:32:56 +00:00
|
|
|
)));
|
|
|
|
|
|
|
|
$package1 = $this->createPackageMock();
|
|
|
|
$package2 = $this->createPackageMock();
|
|
|
|
|
2011-10-30 19:29:52 +00:00
|
|
|
$repo->getLocalRepository()
|
2011-10-01 12:32:56 +00:00
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('findPackage')
|
|
|
|
->with($this->logicalOr('pkg1', 'pkg2'), $this->logicalOr('1.0.0-beta', '0.1.10'))
|
|
|
|
->will($this->onConsecutiveCalls($package1, null));
|
|
|
|
|
|
|
|
$this->setExpectedException('LogicException');
|
|
|
|
|
|
|
|
$locker->getLockedPackages();
|
|
|
|
}
|
|
|
|
|
2012-02-21 15:44:49 +00:00
|
|
|
public function testSetLockData()
|
2011-10-01 12:32:56 +00:00
|
|
|
{
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
$repo = $this->createRepositoryManagerMock();
|
2012-06-20 10:05:18 +00:00
|
|
|
$inst = $this->createInstallationManagerMock();
|
2011-10-01 12:32:56 +00:00
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$locker = new Locker($json, $repo, $inst, 'md5');
|
2011-10-01 12:32:56 +00:00
|
|
|
|
|
|
|
$package1 = $this->createPackageMock();
|
|
|
|
$package2 = $this->createPackageMock();
|
|
|
|
|
|
|
|
$package1
|
|
|
|
->expects($this->once())
|
2011-11-20 14:46:15 +00:00
|
|
|
->method('getPrettyName')
|
2011-10-01 12:32:56 +00:00
|
|
|
->will($this->returnValue('pkg1'));
|
|
|
|
$package1
|
|
|
|
->expects($this->once())
|
2011-11-20 14:46:15 +00:00
|
|
|
->method('getPrettyVersion')
|
2011-10-01 12:32:56 +00:00
|
|
|
->will($this->returnValue('1.0.0-beta'));
|
|
|
|
|
|
|
|
$package2
|
|
|
|
->expects($this->once())
|
2011-11-20 14:46:15 +00:00
|
|
|
->method('getPrettyName')
|
2011-10-01 12:32:56 +00:00
|
|
|
->will($this->returnValue('pkg2'));
|
|
|
|
$package2
|
|
|
|
->expects($this->once())
|
2011-11-20 14:46:15 +00:00
|
|
|
->method('getPrettyVersion')
|
2011-10-01 12:32:56 +00:00
|
|
|
->will($this->returnValue('0.1.10'));
|
|
|
|
|
|
|
|
$json
|
|
|
|
->expects($this->once())
|
|
|
|
->method('write')
|
|
|
|
->with(array(
|
2011-12-24 14:28:12 +00:00
|
|
|
'hash' => 'md5',
|
|
|
|
'packages' => array(
|
|
|
|
array('package' => 'pkg1', 'version' => '1.0.0-beta'),
|
|
|
|
array('package' => 'pkg2', 'version' => '0.1.10')
|
|
|
|
),
|
2012-04-14 13:45:25 +00:00
|
|
|
'packages-dev' => array(),
|
2012-02-21 15:44:49 +00:00
|
|
|
'aliases' => array(),
|
2012-05-11 15:20:10 +00:00
|
|
|
'minimum-stability' => 'dev',
|
|
|
|
'stability-flags' => array(),
|
2011-10-01 12:32:56 +00:00
|
|
|
));
|
|
|
|
|
2012-05-11 15:20:10 +00:00
|
|
|
$locker->setLockData(array($package1, $package2), array(), array(), 'dev', array());
|
2011-10-01 12:32:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testLockBadPackages()
|
|
|
|
{
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
$repo = $this->createRepositoryManagerMock();
|
2012-06-20 10:05:18 +00:00
|
|
|
$inst = $this->createInstallationManagerMock();
|
2011-10-01 12:32:56 +00:00
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$locker = new Locker($json, $repo, $inst, 'md5');
|
2011-10-01 12:32:56 +00:00
|
|
|
|
|
|
|
$package1 = $this->createPackageMock();
|
|
|
|
$package1
|
|
|
|
->expects($this->once())
|
2011-11-20 14:46:15 +00:00
|
|
|
->method('getPrettyName')
|
2011-10-01 12:32:56 +00:00
|
|
|
->will($this->returnValue('pkg1'));
|
|
|
|
|
|
|
|
$this->setExpectedException('LogicException');
|
|
|
|
|
2012-05-11 15:20:10 +00:00
|
|
|
$locker->setLockData(array($package1), array(), array(), 'dev', array());
|
2011-10-01 12:32:56 +00:00
|
|
|
}
|
|
|
|
|
2012-01-06 12:26:25 +00:00
|
|
|
public function testIsFresh()
|
|
|
|
{
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
$repo = $this->createRepositoryManagerMock();
|
2012-06-20 10:05:18 +00:00
|
|
|
$inst = $this->createInstallationManagerMock();
|
2012-01-06 12:26:25 +00:00
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$locker = new Locker($json, $repo, $inst, 'md5');
|
2012-01-06 12:26:25 +00:00
|
|
|
|
|
|
|
$json
|
|
|
|
->expects($this->once())
|
|
|
|
->method('read')
|
|
|
|
->will($this->returnValue(array('hash' => 'md5')));
|
|
|
|
|
|
|
|
$this->assertTrue($locker->isFresh());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsFreshFalse()
|
|
|
|
{
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
$repo = $this->createRepositoryManagerMock();
|
2012-06-20 10:05:18 +00:00
|
|
|
$inst = $this->createInstallationManagerMock();
|
2012-01-06 12:26:25 +00:00
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$locker = new Locker($json, $repo, $inst, 'md5');
|
2012-01-06 12:26:25 +00:00
|
|
|
|
|
|
|
$json
|
|
|
|
->expects($this->once())
|
|
|
|
->method('read')
|
|
|
|
->will($this->returnValue(array('hash' => 'oldmd5')));
|
|
|
|
|
|
|
|
$this->assertFalse($locker->isFresh());
|
|
|
|
}
|
|
|
|
|
2011-10-01 12:32:56 +00:00
|
|
|
private function createJsonFileMock()
|
|
|
|
{
|
|
|
|
return $this->getMockBuilder('Composer\Json\JsonFile')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function createRepositoryManagerMock()
|
|
|
|
{
|
2011-10-30 19:29:52 +00:00
|
|
|
$mock = $this->getMockBuilder('Composer\Repository\RepositoryManager')
|
2011-10-01 12:32:56 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2011-10-30 19:29:52 +00:00
|
|
|
|
|
|
|
$mock->expects($this->any())
|
|
|
|
->method('getLocalRepository')
|
|
|
|
->will($this->returnValue($this->getMockBuilder('Composer\Repository\ArrayRepository')->getMock()));
|
|
|
|
|
|
|
|
return $mock;
|
2011-10-01 12:32:56 +00:00
|
|
|
}
|
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
private function createInstallationManagerMock()
|
|
|
|
{
|
|
|
|
$mock = $this->getMockBuilder('Composer\Installer\InstallationManager')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
return $mock;
|
|
|
|
}
|
|
|
|
|
2011-10-01 12:32:56 +00:00
|
|
|
private function createPackageMock()
|
|
|
|
{
|
|
|
|
return $this->getMockBuilder('Composer\Package\PackageInterface')
|
|
|
|
->getMock();
|
|
|
|
}
|
|
|
|
}
|