Files
Chamilo/vendor/symfony/intl/Tests/Util/IcuVersionTest.php
T
Xes 73154ae174
Behat tests 1.11.x 🐞 / PHP 7.4 Test on ubuntu-latest (push) Canceled after 0s
PHP-CS-Fixer / composer_install (7.4) (push) Canceled after 0s
Chamilo 1.11.40 (ZIP oficial v1.11.40)
Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip
sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439
Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
2026-08-06 17:59:45 +02:00

113 lines
3.5 KiB
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Intl\Tests\Util;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Intl\Util\IcuVersion;
/**
* @author Bernhard Schussek <bschussek@gmail.com>
*/
class IcuVersionTest extends TestCase
{
public function normalizeProvider()
{
return [
[null, '1', '10'],
[null, '1.2', '12'],
[null, '1.2.3', '12.3'],
[null, '1.2.3.4', '12.3.4'],
[1, '1', '10'],
[1, '1.2', '12'],
[1, '1.2.3', '12'],
[1, '1.2.3.4', '12'],
[2, '1', '10'],
[2, '1.2', '12'],
[2, '1.2.3', '12.3'],
[2, '1.2.3.4', '12.3'],
[3, '1', '10'],
[3, '1.2', '12'],
[3, '1.2.3', '12.3'],
[3, '1.2.3.4', '12.3.4'],
];
}
/**
* @dataProvider normalizeProvider
*/
public function testNormalize($precision, $version, $result)
{
$this->assertSame($result, IcuVersion::normalize($version, $precision));
}
public function compareProvider()
{
return [
[null, '1', '==', '1', true],
[null, '1.0', '==', '1.1', false],
[null, '1.0.0', '==', '1.0.1', false],
[null, '1.0.0.0', '==', '1.0.0.1', false],
[null, '1.0.0.0.0', '==', '1.0.0.0.1', false],
[null, '1', '==', '10', true],
[null, '1.0', '==', '11', false],
[null, '1.0.0', '==', '10.1', false],
[null, '1.0.0.0', '==', '10.0.1', false],
[null, '1.0.0.0.0', '==', '10.0.0.1', false],
[1, '1', '==', '1', true],
[1, '1.0', '==', '1.1', false],
[1, '1.0.0', '==', '1.0.1', true],
[1, '1.0.0.0', '==', '1.0.0.1', true],
[1, '1.0.0.0.0', '==', '1.0.0.0.1', true],
[1, '1', '==', '10', true],
[1, '1.0', '==', '11', false],
[1, '1.0.0', '==', '10.1', true],
[1, '1.0.0.0', '==', '10.0.1', true],
[1, '1.0.0.0.0', '==', '10.0.0.1', true],
[2, '1', '==', '1', true],
[2, '1.0', '==', '1.1', false],
[2, '1.0.0', '==', '1.0.1', false],
[2, '1.0.0.0', '==', '1.0.0.1', true],
[2, '1.0.0.0.0', '==', '1.0.0.0.1', true],
[2, '1', '==', '10', true],
[2, '1.0', '==', '11', false],
[2, '1.0.0', '==', '10.1', false],
[2, '1.0.0.0', '==', '10.0.1', true],
[2, '1.0.0.0.0', '==', '10.0.0.1', true],
[3, '1', '==', '1', true],
[3, '1.0', '==', '1.1', false],
[3, '1.0.0', '==', '1.0.1', false],
[3, '1.0.0.0', '==', '1.0.0.1', false],
[3, '1.0.0.0.0', '==', '1.0.0.0.1', true],
[3, '1', '==', '10', true],
[3, '1.0', '==', '11', false],
[3, '1.0.0', '==', '10.1', false],
[3, '1.0.0.0', '==', '10.0.1', false],
[3, '1.0.0.0.0', '==', '10.0.0.1', true],
];
}
/**
* @dataProvider compareProvider
*/
public function testCompare($precision, $version1, $operator, $version2, $result)
{
$this->assertSame($result, IcuVersion::compare($version1, $version2, $operator, $precision));
}
}