File: BasePackageTest.php

package info (click to toggle)
composer 2.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,528 kB
  • sloc: php: 83,030; makefile: 59; xml: 39
file content (112 lines) | stat: -rw-r--r-- 3,986 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php declare(strict_types=1);

/*
 * 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;

use Composer\Package\BasePackage;
use Composer\Test\TestCase;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\DoesNotPerformAssertions;
use PHPUnit\Framework\Attributes\RequiresPhpunit;

class BasePackageTest extends TestCase
{
    #[DoesNotPerformAssertions]
    #[RequiresPhpunit('< 12')]
    public function testSetSameRepository(): void
    {
        $package = $this->getMockForAbstractClass('Composer\Package\BasePackage', ['foo']);
        $repository = $this->getMockBuilder('Composer\Repository\RepositoryInterface')->getMock();

        $package->setRepository($repository);
        try {
            $package->setRepository($repository);
        } catch (\Exception $e) {
            $this->fail('Set against the same repository is allowed.');
        }
    }

    #[RequiresPhpunit('< 12')]
    public function testSetAnotherRepository(): void
    {
        self::expectException('LogicException');

        $package = $this->getMockForAbstractClass('Composer\Package\BasePackage', ['foo']);

        $package->setRepository($this->getMockBuilder('Composer\Repository\RepositoryInterface')->getMock());
        $package->setRepository($this->getMockBuilder('Composer\Repository\RepositoryInterface')->getMock());
    }

    #[DataProvider('provideFormattedVersions')]
    #[RequiresPhpunit('< 12')]
    public function testFormatVersionForDevPackage(string $sourceReference, bool $truncate, string $expected): void
    {
        $package = $this->getMockForAbstractClass('\Composer\Package\BasePackage', [], '', false);
        $package->expects($this->once())->method('isDev')->willReturn(true);
        $package->expects($this->any())->method('getSourceType')->willReturn('git');
        $package->expects($this->once())->method('getPrettyVersion')->willReturn('PrettyVersion');
        $package->expects($this->any())->method('getSourceReference')->willReturn($sourceReference);

        self::assertSame($expected, $package->getFullPrettyVersion($truncate));
    }

    public static function provideFormattedVersions(): array
    {
        return [
            [
                'sourceReference' => 'v2.1.0-RC2',
                'truncate' => true,
                'expected' => 'PrettyVersion v2.1.0-RC2',
            ],
            [
                'sourceReference' => 'bbf527a27356414bfa9bf520f018c5cb7af67c77',
                'truncate' => true,
                'expected' => 'PrettyVersion bbf527a',
            ],
            [
                'sourceReference' => 'v1.0.0',
                'truncate' => false,
                'expected' => 'PrettyVersion v1.0.0',
            ],
            [
                'sourceReference' => 'bbf527a27356414bfa9bf520f018c5cb7af67c77',
                'truncate' => false,
                'expected' => 'PrettyVersion bbf527a27356414bfa9bf520f018c5cb7af67c77',
            ],
        ];
    }

    /**
     * @param string[] $packageNames
     * @param non-empty-string $wrap
     */
    #[DataProvider('dataPackageNamesToRegexp')]
    public function testPackageNamesToRegexp(array $packageNames, $wrap, string $expectedRegexp): void
    {
        $regexp = BasePackage::packageNamesToRegexp($packageNames, $wrap);

        self::assertSame($expectedRegexp, $regexp);
    }

    /**
     * @return mixed[][]
     */
    public static function dataPackageNamesToRegexp(): array
    {
        return [
            [ ['ext-*', 'monolog/monolog'], '{^%s$}i', '{^ext\-.*|monolog/monolog$}i' ],
            [ ['php'], '{^%s$}i', '{^php$}i' ],
            [ ['*'], '{^%s$}i', '{^.*$}i' ],
            [ ['foo', 'bar'], '§%s§', '§foo|bar§' ],
        ];
    }
}