/** * @expectedException \RuntimeException * @expectedExceptionMessage We cannot retrieve information on magento/product-community-edition. */ public function testGetPackageVersionsFailed() { $communityPackage = $this->getMock('\\Composer\\Package\\Package', [], [], '', false); $enterprisePackage = $this->getMock('\\Composer\\Package\\Package', [], [], '', false); $communityPackage->expects($this->once())->method('getName')->willReturn('magento/product-community-edition'); $enterprisePackage->expects($this->once())->method('getName')->willReturn('magento/product-enterprise-edition'); $this->composerInformation->expects($this->any())->method('isSystemPackage')->willReturn(true); $this->composerInformation->expects($this->once())->method('isPackageInComposerJson')->willReturn(true); $this->repository->expects($this->once())->method('getPackages')->willReturn([$communityPackage, $enterprisePackage]); $this->locker->expects($this->once())->method('getLockedRepository')->willReturn($this->repository); $this->composer->expects($this->once())->method('getLocker')->willReturn($this->locker); $this->magentoComposerApp->expects($this->once())->method('createComposer')->willReturn($this->composer); $this->composerAppFactory->expects($this->once())->method('create')->willReturn($this->magentoComposerApp); $this->composerAppFactory->expects($this->once())->method('createInfoCommand')->willReturn($this->infoCommand); $this->systemPackage = new SystemPackage($this->composerAppFactory, $this->composerInformation); $this->infoCommand->expects($this->once())->method('run')->with('magento/product-community-edition')->willReturn(false); $this->systemPackage->getPackageVersions(); }