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

125 lines
4.2 KiB
PHP
Raw Normal View History

2013-05-25 15:56:02 +00:00
<?php
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;
2013-05-26 14:10:17 +00:00
$author = $command->parseAuthorString('John Smith <john@example.com>');
$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;
$author = $command->parseAuthorString('John Smith');
$this->assertEquals('John Smith', $author['name']);
$this->assertNull($author['email']);
}
public function testParseValidUtf8AuthorString(): void
{
$command = new InitCommand;
$author = $command->parseAuthorString('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;
$author = $command->parseAuthorString($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;
$author = $command->parseAuthorString('h4x0r <h4x@example.com>');
$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 = $command->parseAuthorString(
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 = $command->parseAuthorString(
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');
2013-05-25 15:56:02 +00:00
$command->parseAuthorString('');
}
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');
2013-05-25 16:01:14 +00:00
$command->parseAuthorString('John Smith <john>');
}
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);
}
2013-05-25 15:56:02 +00:00
}