1
0
Fork 0
composer/tests/Composer/Test/Installer/LibraryInstallerTest.php

243 lines
7.4 KiB
PHP
Raw Normal View History

2011-09-23 21:23:16 +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\Installer;
use Composer\Installer\LibraryInstaller;
use Composer\Util\Filesystem;
use Composer\Test\TestCase;
use Composer\Composer;
use Composer\Config;
2011-09-23 21:23:16 +00:00
class LibraryInstallerTest extends TestCase
2011-09-23 21:23:16 +00:00
{
protected $composer;
protected $config;
protected $vendorDir;
protected $binDir;
protected $dm;
protected $repository;
protected $io;
protected $fs;
2011-09-23 21:23:16 +00:00
protected function setUp()
{
$this->fs = new Filesystem;
2011-12-03 14:39:06 +00:00
$this->composer = new Composer();
$this->config = new Config();
$this->composer->setConfig($this->config);
2011-12-21 15:46:23 +00:00
$this->vendorDir = realpath(sys_get_temp_dir()).DIRECTORY_SEPARATOR.'composer-test-vendor';
$this->ensureDirectoryExistsAndClear($this->vendorDir);
2011-12-03 14:39:06 +00:00
2011-12-21 15:46:23 +00:00
$this->binDir = realpath(sys_get_temp_dir()).DIRECTORY_SEPARATOR.'composer-test-bin';
$this->ensureDirectoryExistsAndClear($this->binDir);
2011-09-23 21:23:16 +00:00
$this->config->merge(array(
'config' => array(
'vendor-dir' => $this->vendorDir,
'bin-dir' => $this->binDir,
),
));
2011-09-23 21:23:16 +00:00
$this->dm = $this->getMockBuilder('Composer\Downloader\DownloadManager')
->disableOriginalConstructor()
->getMock();
$this->composer->setDownloadManager($this->dm);
2011-09-23 21:23:16 +00:00
2012-04-17 23:06:23 +00:00
$this->repository = $this->getMock('Composer\Repository\InstalledRepositoryInterface');
2012-04-14 13:45:25 +00:00
$this->io = $this->getMock('Composer\IO\IOInterface');
2011-09-23 21:23:16 +00:00
}
protected function tearDown()
{
$this->fs->removeDirectory($this->vendorDir);
$this->fs->removeDirectory($this->binDir);
}
public function testInstallerCreationShouldNotCreateVendorDirectory()
2011-09-23 21:23:16 +00:00
{
$this->fs->removeDirectory($this->vendorDir);
new LibraryInstaller($this->io, $this->composer);
$this->assertFileNotExists($this->vendorDir);
}
2011-09-23 21:23:16 +00:00
public function testInstallerCreationShouldNotCreateBinDirectory()
{
$this->fs->removeDirectory($this->binDir);
2011-09-23 21:23:16 +00:00
new LibraryInstaller($this->io, $this->composer);
$this->assertFileNotExists($this->binDir);
2011-09-23 21:23:16 +00:00
}
public function testIsInstalled()
{
$library = new LibraryInstaller($this->io, $this->composer);
2011-09-23 21:23:16 +00:00
$package = $this->createPackageMock();
$this->repository
2011-09-23 21:23:16 +00:00
->expects($this->exactly(2))
->method('hasPackage')
2011-09-23 21:23:16 +00:00
->with($package)
->will($this->onConsecutiveCalls(true, false));
2012-04-14 13:45:25 +00:00
$this->assertTrue($library->isInstalled($this->repository, $package));
$this->assertFalse($library->isInstalled($this->repository, $package));
2011-09-23 21:23:16 +00:00
}
/**
* @depends testInstallerCreationShouldNotCreateVendorDirectory
* @depends testInstallerCreationShouldNotCreateBinDirectory
*/
2011-09-23 21:23:16 +00:00
public function testInstall()
{
$library = new LibraryInstaller($this->io, $this->composer);
2011-09-23 21:23:16 +00:00
$package = $this->createPackageMock();
$package
->expects($this->any())
2011-12-15 14:14:33 +00:00
->method('getPrettyName')
->will($this->returnValue('some/package'));
2011-09-23 21:23:16 +00:00
$this->dm
->expects($this->once())
->method('download')
2011-12-03 14:39:06 +00:00
->with($package, $this->vendorDir.'/some/package');
2011-09-23 21:23:16 +00:00
$this->repository
2011-09-23 21:23:16 +00:00
->expects($this->once())
->method('addPackage')
->with($package);
2011-09-23 21:23:16 +00:00
2012-04-14 13:45:25 +00:00
$library->install($this->repository, $package);
$this->assertFileExists($this->vendorDir, 'Vendor dir should be created');
$this->assertFileExists($this->binDir, 'Bin dir should be created');
2011-09-23 21:23:16 +00:00
}
/**
* @depends testInstallerCreationShouldNotCreateVendorDirectory
* @depends testInstallerCreationShouldNotCreateBinDirectory
*/
2011-09-23 21:23:16 +00:00
public function testUpdate()
{
$library = new LibraryInstaller($this->io, $this->composer);
2011-09-23 21:23:16 +00:00
$initial = $this->createPackageMock();
$target = $this->createPackageMock();
$initial
->expects($this->any())
2011-12-15 14:14:33 +00:00
->method('getPrettyName')
->will($this->returnValue('package1'));
$this->repository
->expects($this->exactly(3))
->method('hasPackage')
->will($this->onConsecutiveCalls(true, false, false));
2011-09-23 21:23:16 +00:00
$this->dm
->expects($this->once())
->method('update')
2011-12-03 14:39:06 +00:00
->with($initial, $target, $this->vendorDir.'/package1');
2011-09-23 21:23:16 +00:00
$this->repository
2011-09-23 21:23:16 +00:00
->expects($this->once())
->method('removePackage')
2011-09-23 21:23:16 +00:00
->with($initial);
$this->repository
2011-09-23 21:23:16 +00:00
->expects($this->once())
->method('addPackage')
->with($target);
2011-09-23 21:23:16 +00:00
2012-04-14 13:45:25 +00:00
$library->update($this->repository, $initial, $target);
$this->assertFileExists($this->vendorDir, 'Vendor dir should be created');
$this->assertFileExists($this->binDir, 'Bin dir should be created');
2011-09-23 21:23:16 +00:00
$this->setExpectedException('InvalidArgumentException');
2011-09-23 21:23:16 +00:00
2012-04-14 13:45:25 +00:00
$library->update($this->repository, $initial, $target);
2011-09-23 21:23:16 +00:00
}
public function testUninstall()
{
$library = new LibraryInstaller($this->io, $this->composer);
2011-09-23 21:23:16 +00:00
$package = $this->createPackageMock();
$package
->expects($this->any())
2011-12-15 14:14:33 +00:00
->method('getPrettyName')
->will($this->returnValue('pkg'));
$this->repository
2011-09-23 21:23:16 +00:00
->expects($this->exactly(2))
->method('hasPackage')
2011-09-23 21:23:16 +00:00
->with($package)
->will($this->onConsecutiveCalls(true, false));
$this->dm
->expects($this->once())
->method('remove')
2011-12-03 14:39:06 +00:00
->with($package, $this->vendorDir.'/pkg');
2011-09-23 21:23:16 +00:00
$this->repository
2011-09-23 21:23:16 +00:00
->expects($this->once())
->method('removePackage')
2011-09-23 21:23:16 +00:00
->with($package);
2012-04-14 13:45:25 +00:00
$library->uninstall($this->repository, $package);
2011-09-23 21:23:16 +00:00
2011-11-21 17:19:32 +00:00
// TODO re-enable once #125 is fixed and we throw exceptions again
// $this->setExpectedException('InvalidArgumentException');
2011-09-23 21:23:16 +00:00
2012-04-14 13:45:25 +00:00
$library->uninstall($this->repository, $package);
2011-09-23 21:23:16 +00:00
}
public function testGetInstallPath()
{
$library = new LibraryInstaller($this->io, $this->composer);
$package = $this->createPackageMock();
$package
->expects($this->once())
->method('getTargetDir')
->will($this->returnValue(null));
2011-12-03 14:39:06 +00:00
$this->assertEquals($this->vendorDir.'/'.$package->getName(), $library->getInstallPath($package));
}
public function testGetInstallPathWithTargetDir()
{
$library = new LibraryInstaller($this->io, $this->composer);
$package = $this->createPackageMock();
$package
->expects($this->once())
->method('getTargetDir')
->will($this->returnValue('Some/Namespace'));
2011-12-03 14:39:06 +00:00
$package
->expects($this->any())
2011-12-15 14:14:33 +00:00
->method('getPrettyName')
2011-12-03 14:39:06 +00:00
->will($this->returnValue('foo/bar'));
2011-12-15 14:14:33 +00:00
$this->assertEquals($this->vendorDir.'/'.$package->getPrettyName().'/Some/Namespace', $library->getInstallPath($package));
}
protected function createPackageMock()
2011-09-23 21:23:16 +00:00
{
return $this->getMockBuilder('Composer\Package\Package')
->setConstructorArgs(array(md5(rand()), '1.0.0.0', '1.0.0'))
2011-09-23 21:23:16 +00:00
->getMock();
}
}