1
0
Fork 0
composer/tests/Composer/Test/Command/InitCommandTest.php

203 lines
6.8 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
2013-05-25 15:56:02 +00:00
2013-05-27 08:41:50 +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-05-26 11:44:26 +00:00
namespace Composer\Test\Command;
2013-05-25 15:56:02 +00:00
use Composer\Command\InitCommand;
use Composer\Test\TestCase;
2013-05-25 15:56:02 +00:00
class InitCommandTest extends TestCase
{
public function testParseValidAuthorString(): void
2013-05-25 15:56:02 +00:00
{
$command = new InitCommand;
2022-02-22 21:10:52 +00:00
$author = $this->callParseAuthorString($command, 'John Smith <john@example.com>');
2013-05-26 14:10:17 +00:00
$this->assertEquals('John Smith', $author['name']);
$this->assertEquals('john@example.com', $author['email']);
2013-05-25 15:56:02 +00:00
}
public function testParseValidAuthorStringWithoutEmail(): void
2022-02-16 12:24:15 +00:00
{
$command = new InitCommand;
2022-02-22 21:10:52 +00:00
$author = $this->callParseAuthorString($command, 'John Smith');
2022-02-16 12:24:15 +00:00
$this->assertEquals('John Smith', $author['name']);
$this->assertNull($author['email']);
}
public function testParseValidUtf8AuthorString(): void
{
$command = new InitCommand;
2022-02-22 21:10:52 +00:00
$author = $this->callParseAuthorString($command, 'Matti Meikäläinen <matti@example.com>');
$this->assertEquals('Matti Meikäläinen', $author['name']);
$this->assertEquals('matti@example.com', $author['email']);
}
public function testParseValidUtf8AuthorStringWithNonSpacingMarks(): void
{
// \xCC\x88 is UTF-8 for U+0308 diaeresis (umlaut) combining mark
$utf8_expected = "Matti Meika\xCC\x88la\xCC\x88inen";
$command = new InitCommand;
2022-02-22 21:10:52 +00:00
$author = $this->callParseAuthorString($command, $utf8_expected." <matti@example.com>");
$this->assertEquals($utf8_expected, $author['name']);
$this->assertEquals('matti@example.com', $author['email']);
}
public function testParseNumericAuthorString(): void
2015-04-20 11:09:18 +00:00
{
$command = new InitCommand;
2022-02-22 21:10:52 +00:00
$author = $this->callParseAuthorString($command, 'h4x0r <h4x@example.com>');
2015-04-20 11:09:18 +00:00
$this->assertEquals('h4x0r', $author['name']);
$this->assertEquals('h4x@example.com', $author['email']);
}
2017-03-08 14:07:29 +00:00
/**
* Test scenario for issue #5631
* @link https://github.com/composer/composer/issues/5631 Issue #5631
*/
public function testParseValidAlias1AuthorString(): void
{
2017-03-08 14:07:29 +00:00
$command = new InitCommand;
$author = $this->callParseAuthorString(
$command,
2020-11-22 13:48:56 +00:00
'Johnathon "Johnny" Smith <john@example.com>'
2018-07-24 12:32:52 +00:00
);
2017-03-08 14:07:29 +00:00
$this->assertEquals('Johnathon "Johnny" Smith', $author['name']);
$this->assertEquals('john@example.com', $author['email']);
}
2017-03-08 14:07:29 +00:00
/**
* Test scenario for issue #5631
* @link https://github.com/composer/composer/issues/5631 Issue #5631
*/
public function testParseValidAlias2AuthorString(): void
{
2017-03-08 14:07:29 +00:00
$command = new InitCommand;
$author = $this->callParseAuthorString(
$command,
2020-11-22 13:48:56 +00:00
'Johnathon (Johnny) Smith <john@example.com>'
2018-07-24 12:32:52 +00:00
);
2017-03-08 14:07:29 +00:00
$this->assertEquals('Johnathon (Johnny) Smith', $author['name']);
$this->assertEquals('john@example.com', $author['email']);
}
2015-04-20 11:09:18 +00:00
public function testParseEmptyAuthorString(): void
2013-05-25 15:56:02 +00:00
{
$command = new InitCommand;
2021-12-09 19:55:26 +00:00
self::expectException('InvalidArgumentException');
2022-02-22 21:10:52 +00:00
$this->callParseAuthorString($command, '');
2013-05-25 15:56:02 +00:00
}
2013-05-25 16:01:14 +00:00
public function testParseAuthorStringWithInvalidEmail(): void
2013-05-25 16:01:14 +00:00
{
$command = new InitCommand;
2021-12-09 19:55:26 +00:00
self::expectException('InvalidArgumentException');
2022-02-22 21:10:52 +00:00
$this->callParseAuthorString($command, 'John Smith <john>');
2013-05-25 16:01:14 +00:00
}
public function testNamespaceFromValidPackageName(): void
{
$command = new InitCommand;
$namespace = $command->namespaceFromPackageName('new_projects.acme-extra/package-name');
$this->assertEquals('NewProjectsAcmeExtra\PackageName', $namespace);
}
public function testNamespaceFromInvalidPackageName(): void
{
$command = new InitCommand;
$namespace = $command->namespaceFromPackageName('invalid-package-name');
$this->assertNull($namespace);
}
public function testNamespaceFromMissingPackageName(): void
{
$command = new InitCommand;
$namespace = $command->namespaceFromPackageName('');
$this->assertNull($namespace);
}
2022-02-22 21:10:52 +00:00
2023-10-05 16:44:09 +00:00
public function testFormatAuthors(): void
{
2023-10-05 16:44:09 +00:00
$authorWithEmail = 'John Smith <john@example.com>';
$authorWithoutEmail = 'John Smith';
$command = new DummyInitCommand;
$authors = $command->formatAuthors($authorWithEmail);
$this->assertEquals(['name' => 'John Smith', 'email' => 'john@example.com'], $authors[0]);
$authors = $command->formatAuthors($authorWithoutEmail);
$this->assertEquals(['name' => 'John Smith'], $authors[0]);
}
2023-10-05 16:44:09 +00:00
public function testGetGitConfig(): void
{
2023-10-05 16:44:09 +00:00
$command = new DummyInitCommand;
$gitConfig = $command->getGitConfig();
$this->assertArrayHasKey('user.name', $gitConfig);
$this->assertArrayHasKey('user.email', $gitConfig);
$this->assertArrayHasKey('remote.origin.url', $gitConfig);
}
2023-10-05 16:44:09 +00:00
public function testAddVendorIgnore(): void
{
2023-10-05 16:44:09 +00:00
$command = new DummyInitCommand;
2023-10-05 17:03:58 +00:00
$ignoreFile = self::getUniqueTmpDirectory().'/ignore';
2023-10-05 16:44:09 +00:00
$command->addVendorIgnore($ignoreFile);
$this->assertFileExists($ignoreFile);
2023-10-05 17:03:58 +00:00
if (file_exists($ignoreFile)) {
$content = (string) file_get_contents($ignoreFile);
$this->assertStringContainsString('/vendor/', $content);
}
}
2023-10-05 16:44:09 +00:00
public function testHasVendorIgnore(): void
{
2023-10-05 16:44:09 +00:00
$command = new DummyInitCommand;
2023-10-05 17:03:58 +00:00
$ignoreFile = self::getUniqueTmpDirectory().'/ignore';
2023-10-05 16:44:09 +00:00
$this->assertFalse($command->hasVendorIgnore($ignoreFile));
$command->addVendorIgnore($ignoreFile);
$this->assertTrue($command->hasVendorIgnore($ignoreFile));
}
2023-10-05 16:44:09 +00:00
/**
* @return array{name: string, email: string|null}
*/
private function callParseAuthorString(InitCommand $command, string $string): array
{
2023-10-05 16:44:09 +00:00
$reflMethod = new \ReflectionMethod($command, 'parseAuthorString');
$reflMethod->setAccessible(true);
2023-10-05 16:44:09 +00:00
return $reflMethod->invoke($command, $string);
}
2023-10-05 16:44:09 +00:00
}
2023-10-05 16:44:09 +00:00
class DummyInitCommand extends InitCommand
{
public function formatAuthors(string $author): array
{
2023-10-05 16:44:09 +00:00
return parent::formatAuthors($author);
}
2023-10-05 16:44:09 +00:00
public function getGitConfig(): array
{
2023-10-05 16:44:09 +00:00
return parent::getGitConfig();
}
2023-10-05 16:44:09 +00:00
public function addVendorIgnore(string $ignoreFile, string $vendor = '/vendor/'): void
{
2023-10-05 16:44:09 +00:00
parent::addVendorIgnore($ignoreFile, $vendor);
}
2023-10-05 16:44:09 +00:00
public function hasVendorIgnore(string $ignoreFile, string $vendor = 'vendor'): bool
{
2023-10-05 16:44:09 +00:00
return parent::hasVendorIgnore($ignoreFile, $vendor);
}
2013-05-25 15:56:02 +00:00
}