* Jordi Boggiano * * 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\MetapackageInstaller; use Composer\Test\TestCase; class MetapackageInstallerTest extends TestCase { /** * @var \Composer\Repository\InstalledRepositoryInterface&\PHPUnit\Framework\MockObject\MockObject */ private $repository; /** * @var MetapackageInstaller */ private $installer; /** * @var \Composer\IO\IOInterface&\PHPUnit\Framework\MockObject\MockObject */ private $io; protected function setUp(): void { $this->repository = $this->getMockBuilder('Composer\Repository\InstalledRepositoryInterface')->getMock(); $this->io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock(); $this->installer = new MetapackageInstaller($this->io); } public function testInstall(): void { $package = $this->createPackageMock(); $this->repository ->expects($this->once()) ->method('addPackage') ->with($package); $this->installer->install($this->repository, $package); } public function testUpdate(): void { $initial = $this->createPackageMock(); $initial->expects($this->once()) ->method('getVersion') ->will($this->returnValue('1.0.0')); $target = $this->createPackageMock(); $target->expects($this->once()) ->method('getVersion') ->will($this->returnValue('1.0.1')); $this->repository ->expects($this->exactly(2)) ->method('hasPackage') ->with($initial) ->will($this->onConsecutiveCalls(true, false)); $this->repository ->expects($this->once()) ->method('removePackage') ->with($initial); $this->repository ->expects($this->once()) ->method('addPackage') ->with($target); $this->installer->update($this->repository, $initial, $target); self::expectException('InvalidArgumentException'); $this->installer->update($this->repository, $initial, $target); } public function testUninstall(): void { $package = $this->createPackageMock(); $this->repository ->expects($this->exactly(2)) ->method('hasPackage') ->with($package) ->will($this->onConsecutiveCalls(true, false)); $this->repository ->expects($this->once()) ->method('removePackage') ->with($package); $this->installer->uninstall($this->repository, $package); self::expectException('InvalidArgumentException'); $this->installer->uninstall($this->repository, $package); } /** * @return \Composer\Package\PackageInterface&\PHPUnit\Framework\MockObject\MockObject */ private function createPackageMock() { return $this->getMockBuilder('Composer\Package\Package') ->setConstructorArgs(array(md5((string) mt_rand()), '1.0.0.0', '1.0.0')) ->getMock(); } }