forked from sebastianbergmann/php-code-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProcessedFunctionCoverageData.php
More file actions
119 lines (101 loc) · 3.23 KB
/
ProcessedFunctionCoverageData.php
File metadata and controls
119 lines (101 loc) · 3.23 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
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
113
114
115
116
117
118
119
<?php declare(strict_types=1);
/*
* This file is part of phpunit/php-code-coverage.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\CodeCoverage\Data;
use NoDiscard;
use SebastianBergmann\CodeCoverage\Driver\XdebugDriver;
/**
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
*
* @phpstan-import-type TestIdType from ProcessedCodeCoverageData
* @phpstan-import-type XdebugFunctionCoverageType from XdebugDriver
*/
final readonly class ProcessedFunctionCoverageData
{
/** @var array<int, ProcessedBranchCoverageData> */
public array $branches;
/** @var array<int, ProcessedPathCoverageData> */
public array $paths;
/**
* @param XdebugFunctionCoverageType $xdebugCoverageData
*/
public static function fromXdebugCoverage(array $xdebugCoverageData): self
{
$branches = [];
foreach ($xdebugCoverageData['branches'] as $branchId => $branch) {
$branches[$branchId] = ProcessedBranchCoverageData::fromXdebugCoverage($branch);
}
$paths = [];
foreach ($xdebugCoverageData['paths'] as $pathId => $path) {
$paths[$pathId] = ProcessedPathCoverageData::fromXdebugCoverage($path);
}
return new self(
$branches,
$paths,
);
}
/**
* @param array<int, ProcessedBranchCoverageData> $branches
* @param array<int, ProcessedPathCoverageData> $paths
*/
public function __construct(
array $branches,
array $paths,
) {
$this->paths = $paths;
$this->branches = $branches;
}
#[NoDiscard]
public function merge(self $data): self
{
$branches = null;
if ($data->branches !== $this->branches) {
$branches = $this->branches;
foreach ($data->branches as $branchId => $branch) {
if (!isset($branches[$branchId])) {
$branches[$branchId] = $branch;
} else {
$branches[$branchId] = $branches[$branchId]->merge($branch);
}
}
}
$paths = null;
if ($data->paths !== $this->paths) {
$paths = $this->paths;
foreach ($data->paths as $pathId => $path) {
if (!isset($paths[$pathId])) {
$paths[$pathId] = $path;
} else {
$paths[$pathId] = $paths[$pathId]->merge($path);
}
}
}
if ($branches === null && $paths === null) {
return $this;
}
return new self(
$branches ?? $this->branches,
$paths ?? $this->paths,
);
}
/**
* @param TestIdType $testCaseId
*/
public function recordBranchHit(int $branchId, string $testCaseId): void
{
$this->branches[$branchId]->recordHit($testCaseId);
}
/**
* @param TestIdType $testCaseId
*/
public function recordPathHit(int $pathId, string $testCaseId): void
{
$this->paths[$pathId]->recordHit($testCaseId);
}
}