Skip to content

fix: load needed information only during interface inferring #1043

fix: load needed information only during interface inferring

fix: load needed information only during interface inferring #1043

Triggered via push March 30, 2024 17:52
Status Success
Total duration 3m 43s
Artifacts

mutation.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

11 warnings
Mutation tests
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions/cache@v3.2.5. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Mutation tests: src/Cache/ChainCache.php#L109
Escaped Mutant for Mutator "LogicalAndSingleSubExprNegation": --- Original +++ New @@ @@ { $saved = true; foreach ($values as $key => $value) { - $saved = $this->set($key, $value, $ttl) && $saved; + $saved = $this->set($key, $value, $ttl) && !$saved; } return $saved; }
Mutation tests: src/Cache/FileSystemCache.php#L183
Escaped Mutant for Mutator "LogicalAndSingleSubExprNegation": --- Original +++ New @@ @@ { $deleted = true; foreach ($keys as $key) { - $deleted = $this->delete($key) && $deleted; + $deleted = $this->delete($key) && !$deleted; } return $deleted; }
Mutation tests: src/Definition/Repository/Cache/Compiler/AttributesCompiler.php#L64
Escaped Mutant for Mutator "IfNegation": --- Original +++ New @@ @@ } $argumentsCode = []; foreach ($arguments as $argument) { - if (is_object($argument)) { + if (!is_object($argument)) { $argumentsCode[] = 'unserialize(' . var_export(serialize($argument), true) . ')'; } elseif (is_array($argument)) { $argumentsCode[] = '[' . $this->compileAttributeArguments($argument) . ']';
Mutation tests: src/Definition/Repository/Reflection/ReflectionClassDefinitionRepository.php#L200
Escaped Mutant for Mutator "UnwrapTrim": --- Original +++ New @@ @@ try { $types[$name] = $typeParser->parse($raw); } catch (InvalidType $exception) { - $raw = trim($raw); + $raw = $raw; $types[$name] = UnresolvableType::forLocalAlias($raw, $name, $type, $exception); } }
Mutation tests: src/Definition/Repository/Reflection/ReflectionTypeResolver.php#L108
Escaped Mutant for Mutator "UnwrapTrim": --- Original +++ New @@ @@ try { return $parser->parse($raw); } catch (InvalidType $exception) { - $raw = trim($raw); + $raw = $raw; $signature = Reflection::signature($reflection); if ($reflection instanceof ReflectionProperty) { return UnresolvableType::forProperty($raw, $signature, $exception);
Mutation tests: src/Mapper/Object/ArgumentsValues.php#L42
Escaped Mutant for Mutator "TrueValue": --- Original +++ New @@ @@ public static function forInterface(Arguments $arguments, mixed $value, bool $allowSuperfluousKeys) : self { $self = new self($arguments); - $self->forInterface = true; + $self->forInterface = false; if (count($arguments) > 0) { $self = $self->transform($value, $allowSuperfluousKeys); }
Mutation tests: src/Mapper/Object/Factory/ConstructorObjectBuilderFactory.php#L184
Escaped Mutant for Mutator "Continue_": --- Original +++ New @@ @@ foreach ($this->constructors as $constructor) { $function = $constructor->definition; if ($function->class && Reflection::enumExists($function->class) && in_array($function->name, ['from', 'tryFrom'], true)) { - continue; + break; } if (!$function->returnType instanceof ObjectType) { throw new InvalidConstructorReturnType($function);
Mutation tests: src/Mapper/Object/FilteredObjectBuilder.php#L67
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ } $constructors[$filledNumber][] = $builder; } - ksort($constructors); + $constructorsWithMostArguments = array_pop($constructors) ?: []; if (count($constructorsWithMostArguments) === 0) { throw new CannotFindObjectBuilder($builders);
Mutation tests: src/Mapper/Object/FilteredObjectBuilder.php#L90
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ { $arguments = $builder->describeArguments(); if (!is_array($source)) { - return count($arguments) === 1 ? 1 : false; + return count($arguments) === 1 ? 0 : false; } /** @infection-ignore-all */ $filled = 0;
Mutation tests: src/Mapper/Object/FilteredObjectBuilder.php#L90
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ { $arguments = $builder->describeArguments(); if (!is_array($source)) { - return count($arguments) === 1 ? 1 : false; + return count($arguments) === 1 ? 2 : false; } /** @infection-ignore-all */ $filled = 0;