2016-03-02 21:13:06 +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\SuggestedPackagesReporter;
|
2020-02-07 03:18:45 +00:00
|
|
|
use Composer\Test\TestCase;
|
2016-03-02 21:13:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @coversDefaultClass Composer\Installer\SuggestedPackagesReporter
|
|
|
|
*/
|
2017-11-04 14:52:13 +00:00
|
|
|
class SuggestedPackagesReporterTest extends TestCase
|
2016-03-02 21:13:06 +00:00
|
|
|
{
|
2021-10-27 12:41:30 +00:00
|
|
|
/**
|
|
|
|
* @var \PHPUnit\Framework\MockObject\MockObject
|
|
|
|
*/
|
2016-03-02 21:13:06 +00:00
|
|
|
private $io;
|
2021-10-27 12:41:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Composer\Installer\SuggestedPackagesReporter
|
|
|
|
*/
|
2016-03-02 21:13:06 +00:00
|
|
|
private $suggestedPackagesReporter;
|
|
|
|
|
|
|
|
protected function setUp()
|
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$this->io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
2016-03-02 21:13:06 +00:00
|
|
|
|
|
|
|
$this->suggestedPackagesReporter = new SuggestedPackagesReporter($this->io);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::__construct
|
|
|
|
*/
|
2020-02-13 15:02:31 +00:00
|
|
|
public function testConstructor()
|
2016-03-02 21:13:06 +00:00
|
|
|
{
|
|
|
|
$this->io->expects($this->once())
|
2020-02-13 15:02:31 +00:00
|
|
|
->method('write');
|
2016-03-02 21:13:06 +00:00
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->suggestedPackagesReporter->addPackage('a', 'b', 'c');
|
|
|
|
$this->suggestedPackagesReporter->output(SuggestedPackagesReporter::MODE_LIST);
|
2016-03-02 21:13:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::getPackages
|
|
|
|
*/
|
|
|
|
public function testGetPackagesEmptyByDefault()
|
|
|
|
{
|
2017-11-30 14:58:10 +00:00
|
|
|
$this->assertEmpty($this->suggestedPackagesReporter->getPackages());
|
2016-03-02 21:13:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::getPackages
|
|
|
|
* @covers ::addPackage
|
|
|
|
*/
|
|
|
|
public function testGetPackages()
|
|
|
|
{
|
|
|
|
$suggestedPackage = $this->getSuggestedPackageArray();
|
|
|
|
$this->suggestedPackagesReporter->addPackage(
|
|
|
|
$suggestedPackage['source'],
|
|
|
|
$suggestedPackage['target'],
|
|
|
|
$suggestedPackage['reason']
|
|
|
|
);
|
|
|
|
$this->assertSame(
|
|
|
|
array($suggestedPackage),
|
|
|
|
$this->suggestedPackagesReporter->getPackages()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test addPackage appends packages.
|
|
|
|
* Also test targets can be duplicated.
|
|
|
|
*
|
|
|
|
* @covers ::addPackage
|
|
|
|
*/
|
|
|
|
public function testAddPackageAppends()
|
|
|
|
{
|
|
|
|
$suggestedPackageA = $this->getSuggestedPackageArray();
|
|
|
|
$suggestedPackageB = $this->getSuggestedPackageArray();
|
|
|
|
$suggestedPackageB['source'] = 'different source';
|
|
|
|
$suggestedPackageB['reason'] = 'different reason';
|
|
|
|
$this->suggestedPackagesReporter->addPackage(
|
|
|
|
$suggestedPackageA['source'],
|
|
|
|
$suggestedPackageA['target'],
|
|
|
|
$suggestedPackageA['reason']
|
|
|
|
);
|
|
|
|
$this->suggestedPackagesReporter->addPackage(
|
|
|
|
$suggestedPackageB['source'],
|
|
|
|
$suggestedPackageB['target'],
|
|
|
|
$suggestedPackageB['reason']
|
|
|
|
);
|
|
|
|
$this->assertSame(
|
|
|
|
array($suggestedPackageA, $suggestedPackageB),
|
|
|
|
$this->suggestedPackagesReporter->getPackages()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::addSuggestionsFromPackage
|
|
|
|
*/
|
|
|
|
public function testAddSuggestionsFromPackage()
|
|
|
|
{
|
|
|
|
$package = $this->createPackageMock();
|
|
|
|
$package->expects($this->once())
|
|
|
|
->method('getSuggests')
|
|
|
|
->will($this->returnValue(array(
|
|
|
|
'target-a' => 'reason-a',
|
|
|
|
'target-b' => 'reason-b',
|
|
|
|
)));
|
|
|
|
$package->expects($this->once())
|
|
|
|
->method('getPrettyName')
|
|
|
|
->will($this->returnValue('package-pretty-name'));
|
|
|
|
|
|
|
|
$this->suggestedPackagesReporter->addSuggestionsFromPackage($package);
|
|
|
|
$this->assertSame(array(
|
|
|
|
array(
|
|
|
|
'source' => 'package-pretty-name',
|
|
|
|
'target' => 'target-a',
|
|
|
|
'reason' => 'reason-a',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'source' => 'package-pretty-name',
|
|
|
|
'target' => 'target-b',
|
|
|
|
'reason' => 'reason-b',
|
|
|
|
),
|
|
|
|
), $this->suggestedPackagesReporter->getPackages());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::output
|
|
|
|
*/
|
|
|
|
public function testOutput()
|
|
|
|
{
|
|
|
|
$this->suggestedPackagesReporter->addPackage('a', 'b', 'c');
|
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->io->expects($this->at(0))
|
|
|
|
->method('write')
|
|
|
|
->with('<comment>a</comment> suggests:');
|
|
|
|
|
|
|
|
$this->io->expects($this->at(1))
|
|
|
|
->method('write')
|
|
|
|
->with(' - <info>b</info>: c');
|
2016-03-02 21:13:06 +00:00
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->suggestedPackagesReporter->output(SuggestedPackagesReporter::MODE_BY_PACKAGE);
|
2016-03-02 21:13:06 +00:00
|
|
|
}
|
|
|
|
|
2018-06-09 11:23:41 +00:00
|
|
|
/**
|
|
|
|
* @covers ::output
|
|
|
|
*/
|
2020-02-13 15:02:31 +00:00
|
|
|
public function testOutputWithNoSuggestionReason()
|
2018-06-09 11:23:41 +00:00
|
|
|
{
|
|
|
|
$this->suggestedPackagesReporter->addPackage('a', 'b', '');
|
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->io->expects($this->at(0))
|
|
|
|
->method('write')
|
|
|
|
->with('<comment>a</comment> suggests:');
|
|
|
|
|
|
|
|
$this->io->expects($this->at(1))
|
|
|
|
->method('write')
|
|
|
|
->with(' - <info>b</info>');
|
2018-06-09 11:23:41 +00:00
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->suggestedPackagesReporter->output(SuggestedPackagesReporter::MODE_BY_PACKAGE);
|
2018-06-09 11:23:41 +00:00
|
|
|
}
|
|
|
|
|
2017-04-08 11:37:25 +00:00
|
|
|
/**
|
|
|
|
* @covers ::output
|
|
|
|
*/
|
|
|
|
public function testOutputIgnoresFormatting()
|
|
|
|
{
|
2017-04-19 15:24:47 +00:00
|
|
|
$this->suggestedPackagesReporter->addPackage('source', 'target1', "\x1b[1;37;42m Like us\r\non Facebook \x1b[0m");
|
|
|
|
$this->suggestedPackagesReporter->addPackage('source', 'target2', "<bg=green>Like us on Facebook</>");
|
2017-04-08 11:37:25 +00:00
|
|
|
|
2017-04-19 15:24:47 +00:00
|
|
|
$this->io->expects($this->at(0))
|
2020-02-13 15:02:31 +00:00
|
|
|
->method('write')
|
|
|
|
->with('<comment>source</comment> suggests:');
|
2017-04-19 15:24:47 +00:00
|
|
|
|
|
|
|
$this->io->expects($this->at(1))
|
2020-02-13 15:02:31 +00:00
|
|
|
->method('write')
|
|
|
|
->with(' - <info>target1</info>: [1;37;42m Like us on Facebook [0m');
|
2017-04-08 11:37:25 +00:00
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->io->expects($this->at(2))
|
|
|
|
->method('write')
|
|
|
|
->with(' - <info>target2</info>: \\<bg=green>Like us on Facebook\\</>');
|
|
|
|
|
|
|
|
$this->suggestedPackagesReporter->output(SuggestedPackagesReporter::MODE_BY_PACKAGE);
|
2017-04-08 11:37:25 +00:00
|
|
|
}
|
|
|
|
|
2016-03-02 21:13:06 +00:00
|
|
|
/**
|
|
|
|
* @covers ::output
|
|
|
|
*/
|
|
|
|
public function testOutputMultiplePackages()
|
|
|
|
{
|
|
|
|
$this->suggestedPackagesReporter->addPackage('a', 'b', 'c');
|
|
|
|
$this->suggestedPackagesReporter->addPackage('source package', 'target', 'because reasons');
|
|
|
|
|
|
|
|
$this->io->expects($this->at(0))
|
2020-02-13 15:02:31 +00:00
|
|
|
->method('write')
|
|
|
|
->with('<comment>a</comment> suggests:');
|
2016-03-02 21:13:06 +00:00
|
|
|
|
|
|
|
$this->io->expects($this->at(1))
|
2020-02-13 15:02:31 +00:00
|
|
|
->method('write')
|
|
|
|
->with(' - <info>b</info>: c');
|
|
|
|
|
|
|
|
$this->io->expects($this->at(2))
|
|
|
|
->method('write')
|
|
|
|
->with('');
|
|
|
|
|
|
|
|
$this->io->expects($this->at(3))
|
|
|
|
->method('write')
|
|
|
|
->with('<comment>source package</comment> suggests:');
|
|
|
|
|
|
|
|
$this->io->expects($this->at(4))
|
|
|
|
->method('write')
|
|
|
|
->with(' - <info>target</info>: because reasons');
|
2016-03-02 21:13:06 +00:00
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->suggestedPackagesReporter->output(SuggestedPackagesReporter::MODE_BY_PACKAGE);
|
2016-03-02 21:13:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::output
|
|
|
|
*/
|
|
|
|
public function testOutputSkipInstalledPackages()
|
|
|
|
{
|
2020-04-23 08:29:22 +00:00
|
|
|
$repository = $this->getMockBuilder('Composer\Repository\InstalledRepository')->disableOriginalConstructor()->getMock();
|
2018-04-12 08:24:56 +00:00
|
|
|
$package1 = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
|
|
|
$package2 = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2016-03-02 21:13:06 +00:00
|
|
|
|
|
|
|
$package1->expects($this->once())
|
|
|
|
->method('getNames')
|
|
|
|
->will($this->returnValue(array('x', 'y')));
|
|
|
|
|
|
|
|
$package2->expects($this->once())
|
|
|
|
->method('getNames')
|
|
|
|
->will($this->returnValue(array('b')));
|
|
|
|
|
|
|
|
$repository->expects($this->once())
|
|
|
|
->method('getPackages')
|
|
|
|
->will($this->returnValue(array(
|
|
|
|
$package1,
|
|
|
|
$package2,
|
|
|
|
)));
|
|
|
|
|
|
|
|
$this->suggestedPackagesReporter->addPackage('a', 'b', 'c');
|
|
|
|
$this->suggestedPackagesReporter->addPackage('source package', 'target', 'because reasons');
|
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->io->expects($this->at(0))
|
|
|
|
->method('write')
|
|
|
|
->with('<comment>source package</comment> suggests:');
|
|
|
|
|
|
|
|
$this->io->expects($this->at(1))
|
|
|
|
->method('write')
|
|
|
|
->with(' - <info>target</info>: because reasons');
|
2016-03-02 21:13:06 +00:00
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->suggestedPackagesReporter->output(SuggestedPackagesReporter::MODE_BY_PACKAGE, $repository);
|
2016-03-02 21:13:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::output
|
|
|
|
*/
|
|
|
|
public function testOutputNotGettingInstalledPackagesWhenNoSuggestions()
|
|
|
|
{
|
2020-04-23 08:29:22 +00:00
|
|
|
$repository = $this->getMockBuilder('Composer\Repository\InstalledRepository')->disableOriginalConstructor()->getMock();
|
2016-03-02 21:13:06 +00:00
|
|
|
$repository->expects($this->exactly(0))
|
|
|
|
->method('getPackages');
|
|
|
|
|
2020-02-13 15:02:31 +00:00
|
|
|
$this->suggestedPackagesReporter->output(SuggestedPackagesReporter::MODE_BY_PACKAGE, $repository);
|
2016-03-02 21:13:06 +00:00
|
|
|
}
|
|
|
|
|
2021-10-27 12:41:30 +00:00
|
|
|
/**
|
|
|
|
* @return array<string, string>
|
|
|
|
*/
|
2016-03-02 21:13:06 +00:00
|
|
|
private function getSuggestedPackageArray()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'source' => 'a',
|
|
|
|
'target' => 'b',
|
|
|
|
'reason' => 'c',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-27 12:41:30 +00:00
|
|
|
/**
|
|
|
|
* @return \Composer\Package\PackageInterface&\PHPUnit\Framework\MockObject\MockObject
|
|
|
|
*/
|
2016-03-02 21:13:06 +00:00
|
|
|
private function createPackageMock()
|
|
|
|
{
|
|
|
|
return $this->getMockBuilder('Composer\Package\Package')
|
2021-08-21 15:41:52 +00:00
|
|
|
->setConstructorArgs(array(md5((string) mt_rand()), '1.0.0.0', '1.0.0'))
|
2016-03-02 21:13:06 +00:00
|
|
|
->getMock();
|
|
|
|
}
|
|
|
|
}
|