2017-09-26 13:06:39 +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\Package\Version;
|
|
|
|
|
|
|
|
use Composer\Package\Version\VersionParser;
|
2020-02-07 03:18:45 +00:00
|
|
|
use Composer\Test\TestCase;
|
2017-09-26 13:06:39 +00:00
|
|
|
|
2017-11-04 14:52:13 +00:00
|
|
|
class VersionParserTest extends TestCase
|
2017-09-26 13:06:39 +00:00
|
|
|
{
|
|
|
|
/**
|
2021-11-01 20:44:12 +00:00
|
|
|
* @dataProvider provideParseNameVersionPairsData
|
|
|
|
*
|
|
|
|
* @param string[] $pairs
|
|
|
|
* @param array<array<string, string>> $result
|
2017-09-26 13:06:39 +00:00
|
|
|
*/
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseNameVersionPairs($pairs, $result): void
|
2017-09-26 13:06:39 +00:00
|
|
|
{
|
|
|
|
$versionParser = new VersionParser();
|
|
|
|
|
|
|
|
$this->assertSame($result, $versionParser->parseNameVersionPairs($pairs));
|
|
|
|
}
|
|
|
|
|
2022-02-21 12:42:28 +00:00
|
|
|
public function provideParseNameVersionPairsData(): array
|
2017-09-26 13:06:39 +00:00
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array(array('php:^7.0'), array(array('name' => 'php', 'version' => '^7.0'))),
|
|
|
|
array(array('php', '^7.0'), array(array('name' => 'php', 'version' => '^7.0'))),
|
|
|
|
array(array('php', 'ext-apcu'), array(array('name' => 'php'), array('name' => 'ext-apcu'))),
|
2021-09-05 07:56:28 +00:00
|
|
|
array(array('foo/*', 'bar*', 'acme/baz', '*@dev'), array(array('name' => 'foo/*'), array('name' => 'bar*'), array('name' => 'acme/baz', 'version' => '*@dev'))),
|
|
|
|
array(array('php', '*'), array(array('name' => 'php', 'version' => '*'))),
|
2017-09-26 13:06:39 +00:00
|
|
|
);
|
|
|
|
}
|
2018-04-13 11:48:30 +00:00
|
|
|
|
|
|
|
/**
|
2021-11-01 20:44:12 +00:00
|
|
|
* @dataProvider provideIsUpgradeTests
|
|
|
|
*
|
|
|
|
* @param string $from
|
|
|
|
* @param string $to
|
|
|
|
* @param bool $expected
|
2018-04-13 11:48:30 +00:00
|
|
|
*/
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testIsUpgrade($from, $to, $expected): void
|
2018-04-13 11:48:30 +00:00
|
|
|
{
|
|
|
|
$this->assertSame($expected, VersionParser::isUpgrade($from, $to));
|
|
|
|
}
|
|
|
|
|
2022-02-21 12:42:28 +00:00
|
|
|
public function provideIsUpgradeTests(): array
|
2018-04-13 11:48:30 +00:00
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('0.9.0.0', '1.0.0.0', true),
|
|
|
|
array('1.0.0.0', '0.9.0.0', false),
|
2020-06-25 06:56:14 +00:00
|
|
|
array('1.0.0.0', VersionParser::DEFAULT_BRANCH_ALIAS, true),
|
|
|
|
array(VersionParser::DEFAULT_BRANCH_ALIAS, VersionParser::DEFAULT_BRANCH_ALIAS, true),
|
|
|
|
array(VersionParser::DEFAULT_BRANCH_ALIAS, '1.0.0.0', false),
|
2018-04-13 11:48:30 +00:00
|
|
|
array('1.0.0.0', 'dev-foo', true),
|
|
|
|
array('dev-foo', 'dev-foo', true),
|
|
|
|
array('dev-foo', '1.0.0.0', true),
|
|
|
|
);
|
|
|
|
}
|
2017-09-26 13:06:39 +00:00
|
|
|
}
|