forked from SonsOfPHP/sonsofphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDependencyMergerTest.php
More file actions
70 lines (56 loc) · 2.22 KB
/
DependencyMergerTest.php
File metadata and controls
70 lines (56 loc) · 2.22 KB
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
<?php
declare(strict_types=1);
namespace Chorale\Tests\Composer;
use Chorale\Composer\ComposerJsonReaderInterface;
use Chorale\Composer\DependencyMerger;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\Small;
use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
#[CoversClass(DependencyMerger::class)]
#[Group('unit')]
#[Small]
final class DependencyMergerTest extends TestCase
{
#[Test]
public function testComputeRootMergeMergesPackageRequirementsUsingUnionCaretStrategy(): void
{
$reader = new class implements ComposerJsonReaderInterface {
public function read(string $absolutePath): array
{
if (str_contains($absolutePath, 'pkg1')) {
return ['name' => 'pkg1', 'require' => ['foo/bar' => '^1.0']];
}
if (str_contains($absolutePath, 'pkg2')) {
return ['name' => 'pkg2', 'require' => ['foo/bar' => '^1.2']];
}
return [];
}
};
$merger = new DependencyMerger($reader);
$result = $merger->computeRootMerge('/root', ['pkg1', 'pkg2']);
$this->assertSame(['foo/bar' => '^1.2'], $result['require']);
$this->assertSame([], $result['conflicts']);
}
#[Test]
public function testComputeRootMergeRecordsConflictWhenMixedConstraintTypes(): void
{
$reader = new class implements ComposerJsonReaderInterface {
public function read(string $absolutePath): array
{
if (str_contains($absolutePath, 'pkg1')) {
return ['name' => 'pkg1', 'require' => ['foo/bar' => '^1.0']];
}
if (str_contains($absolutePath, 'pkg2')) {
return ['name' => 'pkg2', 'require' => ['foo/bar' => '1.3.0']];
}
return [];
}
};
$merger = new DependencyMerger($reader);
$result = $merger->computeRootMerge('/root', ['pkg1', 'pkg2']);
$this->assertSame(['foo/bar' => '^1.0'], $result['require']);
$this->assertSame('non-caret-mixed', $result['conflicts'][0]['reason']);
}
}