Skip to content

Refactoring: extract root package configuration reader to separate class #721

Refactoring: extract root package configuration reader to separate class

Refactoring: extract root package configuration reader to separate class #721

Triggered via pull request March 22, 2024 12:07
@vjikvjik
synchronize #172
refactoring
Status Success
Total duration 5m 1s
Artifacts

mutation.yml

on: pull_request
Matrix: mutation / roave-infection
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
mutation / PHP 8.2-ubuntu-latest: src/Command/CopyCommand.php#L58
Escaped Mutant for Mutator "UnwrapTrim": --- Original +++ New @@ @@ */ $builder = new PackageFilesProcess($this->getComposer(), [$package]); $filesystem = new Filesystem(); - $targetPath = $builder->paths()->absolute(trim($target, '\\/')); + $targetPath = $builder->paths()->absolute($target); $filesystem->ensureDirectoryExists($targetPath); $prefix = str_replace('/', '-', $package); foreach ($this->prepareFiles($builder->files(), $selectedFileNames) as $file) {
mutation / PHP 8.2-ubuntu-latest: src/Command/CopyCommand.php#L59
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ $builder = new PackageFilesProcess($this->getComposer(), [$package]); $filesystem = new Filesystem(); $targetPath = $builder->paths()->absolute(trim($target, '\\/')); - $filesystem->ensureDirectoryExists($targetPath); + $prefix = str_replace('/', '-', $package); foreach ($this->prepareFiles($builder->files(), $selectedFileNames) as $file) { $filename = str_replace('/', '-', $file->filename());
mutation / PHP 8.2-ubuntu-latest: src/Command/RebuildCommand.php#L33
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ * @psalm-suppress DeprecatedMethod */ new MergePlanProcess($this->getComposer()); - return 0; + return -1; } }
mutation / PHP 8.2-ubuntu-latest: src/Composer/MergePlanProcess.php#L66
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ $isOptional = false; if (Options::isOptional($file)) { $isOptional = true; - $file = substr($file, 1); + $file = substr($file, 0); } if (Options::isVariable($file)) { $this->mergePlan->add($file, $packageName, $group);
mutation / PHP 8.2-ubuntu-latest: src/Composer/MergePlanProcess.php#L66
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ $isOptional = false; if (Options::isOptional($file)) { $isOptional = true; - $file = substr($file, 1); + $file = substr($file, 2); } if (Options::isVariable($file)) { $this->mergePlan->add($file, $packageName, $group);
mutation / PHP 8.2-ubuntu-latest: src/Composer/MergePlanProcess.php#L66
Escaped Mutant for Mutator "UnwrapSubstr": --- Original +++ New @@ @@ $isOptional = false; if (Options::isOptional($file)) { $isOptional = true; - $file = substr($file, 1); + $file = $file; } if (Options::isVariable($file)) { $this->mergePlan->add($file, $packageName, $group);
mutation / PHP 8.2-ubuntu-latest: src/Composer/MergePlanProcess.php#L70
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ $file = substr($file, 1); } if (Options::isVariable($file)) { - $this->mergePlan->add($file, $packageName, $group); + continue; } $absoluteFilePath = $this->helper->getAbsolutePackageFilePath($package, $options, $file);
mutation / PHP 8.2-ubuntu-latest: src/Composer/MergePlanProcess.php#L71
Escaped Mutant for Mutator "Continue_": --- Original +++ New @@ @@ } if (Options::isVariable($file)) { $this->mergePlan->add($file, $packageName, $group); - continue; + break; } $absoluteFilePath = $this->helper->getAbsolutePackageFilePath($package, $options, $file); if (Options::containsWildcard($file)) {
mutation / PHP 8.2-ubuntu-latest: src/Composer/MergePlanProcess.php#L76
Escaped Mutant for Mutator "IfNegation": --- Original +++ New @@ @@ continue; } $absoluteFilePath = $this->helper->getAbsolutePackageFilePath($package, $options, $file); - if (Options::containsWildcard($file)) { + if (!Options::containsWildcard($file)) { $matches = glob($absoluteFilePath); if (empty($matches)) { continue;
mutation / PHP 8.2-ubuntu-latest: src/Composer/MergePlanProcess.php#L80
Escaped Mutant for Mutator "Continue_": --- Original +++ New @@ @@ if (Options::containsWildcard($file)) { $matches = glob($absoluteFilePath); if (empty($matches)) { - continue; + break; } foreach ($matches as $match) { $this->mergePlan->add($this->normalizePackageFilePath($package, $match, $isVendorOverrideLayer), $packageName, $group);