2013-08-09 19:24:58 +00:00
|
|
|
<?php
|
2013-10-11 23:12:02 +00:00
|
|
|
|
2013-08-15 19:45:42 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
2013-08-09 19:24:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Downloader;
|
|
|
|
|
|
|
|
use Composer\Downloader\PerforceDownloader;
|
|
|
|
use Composer\Config;
|
|
|
|
use Composer\Repository\VcsRepository;
|
2014-03-14 19:45:31 +00:00
|
|
|
use Composer\IO\IOInterface;
|
2013-08-09 19:24:58 +00:00
|
|
|
|
2013-08-15 19:45:42 +00:00
|
|
|
/**
|
|
|
|
* @author Matt Whittom <Matt.Whittom@veteransunited.com>
|
|
|
|
*/
|
2013-09-04 14:24:49 +00:00
|
|
|
class PerforceDownloaderTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
2014-03-14 19:45:31 +00:00
|
|
|
|
|
|
|
protected $config;
|
|
|
|
protected $downloader;
|
|
|
|
protected $io;
|
|
|
|
protected $package;
|
|
|
|
protected $processExecutor;
|
|
|
|
protected $repoConfig;
|
|
|
|
protected $repository;
|
|
|
|
protected $testPath;
|
2013-08-09 19:24:58 +00:00
|
|
|
|
2014-03-14 19:45:31 +00:00
|
|
|
public function setUp()
|
2013-09-04 14:24:49 +00:00
|
|
|
{
|
2014-03-14 19:45:31 +00:00
|
|
|
$this->testPath = sys_get_temp_dir() . '/composer-test';
|
|
|
|
$this->repoConfig = $this->getRepoConfig();
|
|
|
|
$this->config = $this->getConfig();
|
|
|
|
$this->io = $this->getMockIoInterface();
|
|
|
|
$this->processExecutor = $this->getMockProcessExecutor();
|
|
|
|
$this->repository = $this->getMockRepository($this->repoConfig, $this->io, $this->config);
|
|
|
|
$this->package = $this->getMockPackageInterface($this->repository);
|
|
|
|
$this->downloader = new PerforceDownloader($this->io, $this->config, $this->processExecutor);
|
2013-08-09 19:24:58 +00:00
|
|
|
}
|
|
|
|
|
2014-03-14 19:45:31 +00:00
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
$this->downloader = null;
|
|
|
|
$this->package = null;
|
|
|
|
$this->repository = null;
|
|
|
|
$this->io = null;
|
|
|
|
$this->config = null;
|
|
|
|
$this->repoConfig = null;
|
|
|
|
$this->testPath = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getMockProcessExecutor()
|
|
|
|
{
|
|
|
|
return $this->getMock('Composer\Util\ProcessExecutor');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getConfig()
|
|
|
|
{
|
|
|
|
$config = new Config();
|
|
|
|
$settings = array('config' => array('home' => $this->testPath));
|
|
|
|
$config->merge($settings);
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getMockIoInterface()
|
|
|
|
{
|
|
|
|
return $this->getMock('Composer\IO\IOInterface');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getMockPackageInterface(VcsRepository $repository)
|
2013-09-04 14:24:49 +00:00
|
|
|
{
|
|
|
|
$package = $this->getMock('Composer\Package\PackageInterface');
|
2014-03-14 19:45:31 +00:00
|
|
|
$package->expects($this->any())->method('getRepository')->will($this->returnValue($repository));
|
|
|
|
return $package;
|
2013-08-09 19:24:58 +00:00
|
|
|
}
|
|
|
|
|
2014-03-14 19:45:31 +00:00
|
|
|
protected function getRepoConfig()
|
|
|
|
{
|
|
|
|
return array('url' => 'TEST_URL', 'p4user' => 'TEST_USER');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getMockRepository(array $repoConfig, IOInterface $io, Config $config)
|
|
|
|
{
|
|
|
|
$class = 'Composer\Repository\VcsRepository';
|
|
|
|
$methods = array('getRepoConfig');
|
|
|
|
$args = array($repoConfig, $io, $config);
|
|
|
|
$repository = $this->getMock($class, $methods, $args);
|
|
|
|
$repository->expects($this->any())->method('getRepoConfig')->will($this->returnValue($repoConfig));
|
|
|
|
return $repository;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInitPerforceInstantiatesANewPerforceObject()
|
|
|
|
{
|
|
|
|
$this->downloader->initPerforce($this->package, $this->testPath, 'SOURCE_REF');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInitPerforceDoesNothingIfPerforceAlreadySet()
|
|
|
|
{
|
|
|
|
$perforce = $this->getMockBuilder('Composer\Util\Perforce')->disableOriginalConstructor()->getMock();
|
|
|
|
$this->downloader->setPerforce($perforce);
|
|
|
|
$this->repository->expects($this->never())->method('getRepoConfig');
|
|
|
|
$this->downloader->initPerforce($this->package, $this->testPath, 'SOURCE_REF');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testInitPerforceInstantiatesANewPerforceObject
|
|
|
|
* @depends testInitPerforceDoesNothingIfPerforceAlreadySet
|
|
|
|
*/
|
2013-09-04 14:24:49 +00:00
|
|
|
public function testDoDownload()
|
|
|
|
{
|
2014-03-14 19:45:31 +00:00
|
|
|
//I really don't like this test but the logic of each Perforce method is tested in the Perforce class. Really I am just enforcing workflow.
|
2013-09-09 19:48:24 +00:00
|
|
|
$ref = 'SOURCE_REF';
|
|
|
|
$label = 'LABEL';
|
2014-03-14 19:45:31 +00:00
|
|
|
$this->package->expects($this->once())->method('getSourceReference')->will($this->returnValue($ref));
|
|
|
|
$this->package->expects($this->once())->method('getPrettyVersion')->will($this->returnValue($label));
|
|
|
|
$this->io->expects($this->once())->method('write')->with($this->stringContains('Cloning '.$ref));
|
|
|
|
$perforceMethods = array('setStream', 'p4Login', 'writeP4ClientSpec', 'connectClient', 'syncCodeBase', 'cleanupClientSpec');
|
|
|
|
$perforce = $this->getMockBuilder('Composer\Util\Perforce', $perforceMethods)->disableOriginalConstructor()->getMock();
|
|
|
|
$perforce->expects($this->at(0))->method('setStream')->with($this->equalTo($ref));
|
|
|
|
$perforce->expects($this->at(1))->method('p4Login')->with($this->identicalTo($this->io));
|
|
|
|
$perforce->expects($this->at(2))->method('writeP4ClientSpec');
|
|
|
|
$perforce->expects($this->at(3))->method('connectClient');
|
|
|
|
$perforce->expects($this->at(4))->method('syncCodeBase');
|
|
|
|
$perforce->expects($this->at(5))->method('cleanupClientSpec');
|
|
|
|
$this->downloader->setPerforce($perforce);
|
|
|
|
$this->downloader->doDownload($this->package, $this->testPath);
|
2013-08-09 19:24:58 +00:00
|
|
|
}
|
|
|
|
}
|