123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <?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\Downloader;
- use Composer\Downloader\FossilDownloader;
- use Composer\Test\TestCase;
- use Composer\Util\Filesystem;
- use Composer\Util\Platform;
- class FossilDownloaderTest extends TestCase
- {
- /** @var string */
- private $workingDir;
- protected function setUp()
- {
- $this->workingDir = $this->getUniqueTmpDirectory();
- }
- protected function tearDown()
- {
- if (is_dir($this->workingDir)) {
- $fs = new Filesystem;
- $fs->removeDirectory($this->workingDir);
- }
- }
- protected function getDownloaderMock($io = null, $config = null, $executor = null, $filesystem = null)
- {
- $io = $io ?: $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
- $config = $config ?: $this->getMockBuilder('Composer\Config')->getMock();
- $executor = $executor ?: $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $filesystem = $filesystem ?: $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
- return new FossilDownloader($io, $config, $executor, $filesystem);
- }
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testInstallForPackageWithoutSourceReference()
- {
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->once())
- ->method('getSourceReference')
- ->will($this->returnValue(null));
- $downloader = $this->getDownloaderMock();
- $downloader->install($packageMock, '/path');
- }
- public function testInstall()
- {
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('trunk'));
- $packageMock->expects($this->once())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('http://fossil.kd2.org/kd2fw/')));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $expectedFossilCommand = $this->getCmd('fossil clone \'http://fossil.kd2.org/kd2fw/\' \'repo.fossil\'');
- $processExecutor->expects($this->at(0))
- ->method('execute')
- ->with($this->equalTo($expectedFossilCommand))
- ->will($this->returnValue(0));
- $expectedFossilCommand = $this->getCmd('fossil open \'repo.fossil\' --nested');
- $processExecutor->expects($this->at(1))
- ->method('execute')
- ->with($this->equalTo($expectedFossilCommand))
- ->will($this->returnValue(0));
- $expectedFossilCommand = $this->getCmd('fossil update \'trunk\'');
- $processExecutor->expects($this->at(2))
- ->method('execute')
- ->with($this->equalTo($expectedFossilCommand))
- ->will($this->returnValue(0));
- $downloader = $this->getDownloaderMock(null, null, $processExecutor);
- $downloader->install($packageMock, 'repo');
- }
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testUpdateforPackageWithoutSourceReference()
- {
- $initialPackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $sourcePackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $sourcePackageMock->expects($this->once())
- ->method('getSourceReference')
- ->will($this->returnValue(null));
- $downloader = $this->getDownloaderMock();
- $downloader->prepare('update', $sourcePackageMock, '/path', $initialPackageMock);
- $downloader->update($initialPackageMock, $sourcePackageMock, '/path');
- $downloader->cleanup('update', $sourcePackageMock, '/path', $initialPackageMock);
- }
- public function testUpdate()
- {
- // Ensure file exists
- $file = $this->workingDir . '/.fslckout';
- if (!file_exists($file)) {
- touch($file);
- }
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('trunk'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('http://fossil.kd2.org/kd2fw/')));
- $packageMock->expects($this->any())
- ->method('getVersion')
- ->will($this->returnValue('1.0.0.0'));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $expectedFossilCommand = $this->getCmd("fossil changes");
- $processExecutor->expects($this->at(0))
- ->method('execute')
- ->with($this->equalTo($expectedFossilCommand))
- ->will($this->returnValue(0));
- $expectedFossilCommand = $this->getCmd("fossil pull && fossil up 'trunk'");
- $processExecutor->expects($this->at(1))
- ->method('execute')
- ->with($this->equalTo($expectedFossilCommand))
- ->will($this->returnValue(0));
- $downloader = $this->getDownloaderMock(null, null, $processExecutor);
- $downloader->prepare('update', $packageMock, $this->workingDir, $packageMock);
- $downloader->update($packageMock, $packageMock, $this->workingDir);
- $downloader->cleanup('update', $packageMock, $this->workingDir, $packageMock);
- }
- public function testRemove()
- {
- $expectedResetCommand = $this->getCmd('cd \'composerPath\' && fossil status');
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->any())
- ->method('execute')
- ->with($this->equalTo($expectedResetCommand));
- $filesystem = $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
- $filesystem->expects($this->once())
- ->method('removeDirectory')
- ->with($this->equalTo('composerPath'))
- ->will($this->returnValue(true));
- $downloader = $this->getDownloaderMock(null, null, $processExecutor, $filesystem);
- $downloader->remove($packageMock, 'composerPath');
- }
- public function testGetInstallationSource()
- {
- $downloader = $this->getDownloaderMock(null);
- $this->assertEquals('source', $downloader->getInstallationSource());
- }
- private function getCmd($cmd)
- {
- return Platform::isWindows() ? strtr($cmd, "'", '"') : $cmd;
- }
- }
|