2022-02-23 15:58:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2017-05-19 09:40: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Repository;
|
|
|
|
|
|
|
|
use Composer\Repository\RepositoryFactory;
|
2018-11-12 14:23:32 +00:00
|
|
|
use Composer\Test\TestCase;
|
2017-05-19 09:40:42 +00:00
|
|
|
|
|
|
|
class RepositoryFactoryTest extends TestCase
|
|
|
|
{
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testManagerWithAllRepositoryTypes(): void
|
2017-05-19 09:40:42 +00:00
|
|
|
{
|
|
|
|
$manager = RepositoryFactory::manager(
|
2018-04-12 08:24:56 +00:00
|
|
|
$this->getMockBuilder('Composer\IO\IOInterface')->getMock(),
|
2018-10-31 11:44:54 +00:00
|
|
|
$this->getMockBuilder('Composer\Config')->getMock(),
|
|
|
|
$this->getMockBuilder('Composer\Util\HttpDownloader')->disableOriginalConstructor()->getMock(),
|
|
|
|
$this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')->disableOriginalConstructor()->getMock()
|
2017-05-19 09:40:42 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$ref = new \ReflectionProperty($manager, 'repositoryClasses');
|
|
|
|
$ref->setAccessible(true);
|
|
|
|
$repositoryClasses = $ref->getValue($manager);
|
|
|
|
|
2022-08-17 12:20:07 +00:00
|
|
|
$this->assertEquals([
|
2017-05-19 09:40:42 +00:00
|
|
|
'composer',
|
|
|
|
'vcs',
|
|
|
|
'package',
|
|
|
|
'pear',
|
|
|
|
'git',
|
2021-11-10 20:58:03 +00:00
|
|
|
'bitbucket',
|
2018-01-19 09:51:32 +00:00
|
|
|
'git-bitbucket',
|
2017-05-19 09:40:42 +00:00
|
|
|
'github',
|
|
|
|
'gitlab',
|
|
|
|
'svn',
|
|
|
|
'fossil',
|
|
|
|
'perforce',
|
|
|
|
'hg',
|
|
|
|
'artifact',
|
|
|
|
'path',
|
2022-08-17 12:20:07 +00:00
|
|
|
], array_keys($repositoryClasses));
|
2017-05-19 09:40:42 +00:00
|
|
|
}
|
2020-01-30 17:35:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider generateRepositoryNameProvider
|
2021-10-27 13:29:52 +00:00
|
|
|
*
|
|
|
|
* @param int|string $index
|
|
|
|
* @param array<string, string> $config
|
|
|
|
* @param array<string, mixed> $existingRepos
|
|
|
|
*
|
|
|
|
* @phpstan-param array{url?: string} $config
|
2020-01-30 17:35:33 +00:00
|
|
|
*/
|
2022-02-18 13:32:38 +00:00
|
|
|
public function testGenerateRepositoryName($index, array $config, array $existingRepos, string $expected): void
|
2020-01-30 17:35:33 +00:00
|
|
|
{
|
|
|
|
$this->assertSame($expected, RepositoryFactory::generateRepositoryName($index, $config, $existingRepos));
|
|
|
|
}
|
|
|
|
|
2022-02-21 12:42:28 +00:00
|
|
|
public function generateRepositoryNameProvider(): array
|
2020-01-30 17:35:33 +00:00
|
|
|
{
|
2022-08-17 12:20:07 +00:00
|
|
|
return [
|
|
|
|
[0, [], [], '0'],
|
|
|
|
[0, [], [[]], '02'],
|
|
|
|
[0, ['url' => 'https://example.org'], [], 'example.org'],
|
|
|
|
[0, ['url' => 'https://example.org'], ['example.org' => []], 'example.org2'],
|
|
|
|
['example.org', ['url' => 'https://example.org/repository'], [], 'example.org'],
|
|
|
|
['example.org', ['url' => 'https://example.org/repository'], ['example.org' => []], 'example.org2'],
|
|
|
|
];
|
2020-01-30 17:35:33 +00:00
|
|
|
}
|
2017-05-19 09:40:42 +00:00
|
|
|
}
|