1
0
Fork 0
composer/tests/Composer/Test/Package/Archiver/ArchiveManagerTest.php

191 lines
5.8 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
2012-08-23 19:35:17 +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.
*/
namespace Composer\Test\Package\Archiver;
use Composer\IO\NullIO;
2012-08-28 21:55:26 +00:00
use Composer\Factory;
use Composer\Package\Archiver\ArchiveManager;
use Composer\Package\CompletePackage;
use Composer\Util\Loop;
use Composer\Test\Mock\FactoryMock;
2022-02-22 15:47:09 +00:00
use Composer\Util\Platform;
use Composer\Util\ProcessExecutor;
2012-08-23 19:35:17 +00:00
class ArchiveManagerTest extends ArchiverTestCase
2012-08-23 19:35:17 +00:00
{
/**
* @var ArchiveManager
*/
2012-08-23 19:35:17 +00:00
protected $manager;
2021-10-16 08:16:06 +00:00
/**
* @var string
*/
protected $targetDir;
2012-08-23 19:35:17 +00:00
2021-12-08 16:03:05 +00:00
public function setUp(): void
2012-08-23 19:35:17 +00:00
{
parent::setUp();
2012-08-28 21:55:26 +00:00
$factory = new Factory();
$dm = $factory->createDownloadManager(
$io = new NullIO,
$config = FactoryMock::createConfig(),
$httpDownloader = $factory->createHttpDownloader($io, $config),
new ProcessExecutor($io)
);
$loop = new Loop($httpDownloader);
$this->manager = $factory->createArchiveManager($factory->createConfig(), $dm, $loop);
2012-10-21 16:23:35 +00:00
$this->targetDir = $this->testDir.'/composer_archiver_tests';
2012-08-23 19:35:17 +00:00
}
public function testUnknownFormat(): void
2012-08-23 19:35:17 +00:00
{
2021-12-09 19:55:26 +00:00
self::expectException('RuntimeException');
2012-08-23 19:35:17 +00:00
$package = $this->setupPackage();
$this->manager->archive($package, '__unknown_format__', $this->targetDir);
2012-08-23 19:35:17 +00:00
}
public function testArchiveTar(): void
2012-08-23 19:35:17 +00:00
{
$this->skipIfNotExecutable('git');
2012-08-23 19:35:17 +00:00
$this->setupGitRepo();
$package = $this->setupPackage();
$this->manager->archive($package, 'tar', $this->targetDir);
2012-08-23 19:35:17 +00:00
$target = $this->getTargetName($package, 'tar');
$this->assertFileExists($target);
2013-10-11 23:12:02 +00:00
$tmppath = sys_get_temp_dir().'/composer_archiver/'.$this->manager->getPackageFilename($package);
2020-09-11 09:27:26 +00:00
$this->assertFileDoesNotExist($tmppath);
2012-08-23 19:35:17 +00:00
unlink($target);
}
public function testArchiveCustomFileName(): void
2012-08-23 19:35:17 +00:00
{
$this->skipIfNotExecutable('git');
$this->setupGitRepo();
$package = $this->setupPackage();
2015-10-07 17:42:19 +00:00
$fileName = 'testArchiveName';
$this->manager->archive($package, 'tar', $this->targetDir, $fileName);
2015-10-07 17:42:19 +00:00
$target = $this->targetDir . '/' . $fileName . '.tar';
$this->assertFileExists($target);
$tmppath = sys_get_temp_dir().'/composer_archiver/'.$this->manager->getPackageFilename($package);
2020-09-11 09:27:26 +00:00
$this->assertFileDoesNotExist($tmppath);
unlink($target);
}
2015-10-25 15:19:15 +00:00
public function testGetPackageFilenameParts(): void
{
$expected = [
'base' => 'archivertest-archivertest',
'version' => 'master',
'source_reference' => '4f26ae',
];
$package = $this->setupPackage();
self::assertSame(
$expected,
$this->manager->getPackageFilenameParts($package)
);
}
public function testGetPackageFilename(): void
{
$package = $this->setupPackage();
self::assertSame(
'archivertest-archivertest-master-4f26ae',
$this->manager->getPackageFilename($package)
);
}
2022-02-22 15:47:09 +00:00
protected function getTargetName(CompletePackage $package, string $format, ?string $fileName = null): string
{
2015-10-25 15:19:15 +00:00
if (null === $fileName) {
$packageName = $this->manager->getPackageFilename($package);
2015-10-05 01:03:06 +00:00
} else {
$packageName = $fileName;
}
2015-10-05 01:03:06 +00:00
2017-09-11 17:40:43 +00:00
return $this->targetDir.'/'.$packageName.'.'.$format;
2012-08-23 19:35:17 +00:00
}
2012-10-21 16:23:35 +00:00
/**
* Create local git repository to run tests against!
*/
protected function setupGitRepo(): void
2012-10-21 16:23:35 +00:00
{
2022-02-22 15:47:09 +00:00
$currentWorkDir = Platform::getCwd();
2012-10-21 16:23:35 +00:00
chdir($this->testDir);
$output = null;
$result = $this->process->execute('git init -q', $output, $this->testDir);
2012-10-21 16:23:35 +00:00
if ($result > 0) {
chdir($currentWorkDir);
throw new \RuntimeException('Could not init: '.$this->process->getErrorOutput());
}
$result = $this->process->execute('git checkout -b master', $output, $this->testDir);
if ($result > 0) {
chdir($currentWorkDir);
throw new \RuntimeException('Could not checkout master branch: '.$this->process->getErrorOutput());
}
$result = $this->process->execute('git config user.email "you@example.com"', $output, $this->testDir);
if ($result > 0) {
chdir($currentWorkDir);
throw new \RuntimeException('Could not config: '.$this->process->getErrorOutput());
}
$result = $this->process->execute('git config commit.gpgsign false', $output, $this->testDir);
if ($result > 0) {
chdir($currentWorkDir);
throw new \RuntimeException('Could not config: '.$this->process->getErrorOutput());
}
$result = $this->process->execute('git config user.name "Your Name"', $output, $this->testDir);
if ($result > 0) {
chdir($currentWorkDir);
throw new \RuntimeException('Could not config: '.$this->process->getErrorOutput());
}
$result = file_put_contents('composer.json', '{"name":"faker/faker", "description": "description", "license": "MIT"}');
2012-10-21 16:23:35 +00:00
if (false === $result) {
chdir($currentWorkDir);
throw new \RuntimeException('Could not save file.');
}
$result = $this->process->execute('git add composer.json && git commit -m "commit composer.json" -q', $output, $this->testDir);
2012-10-21 16:23:35 +00:00
if ($result > 0) {
chdir($currentWorkDir);
throw new \RuntimeException('Could not commit: '.$this->process->getErrorOutput());
}
chdir($currentWorkDir);
}
2012-08-23 19:35:17 +00:00
}