Skip to content

test: add missing test for class declaring invalid type alias #1037

test: add missing test for class declaring invalid type alias

test: add missing test for class declaring invalid type alias #1037

Triggered via push March 27, 2024 22:11
Status Success
Total duration 3m 35s
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/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;
Mutation tests: src/Mapper/Tree/Builder/InterfaceNodeBuilder.php#L107
Escaped Mutant for Mutator "IfNegation": --- Original +++ New @@ @@ } if (count($classArguments) === 1 && count($value) === 1) { $name = $classArguments->at(0)->name(); - if (array_key_exists($name, $value)) { + if (!array_key_exists($name, $value)) { $value = $value[$name]; } }
Mutation tests: src/Mapper/Tree/Builder/TreeNode.php#L40
Escaped Mutant for Mutator "CastFloat": --- Original +++ New @@ @@ // node is not a *native* PHP float type (for instance a class property // with a `@var float` annotation). if ($shell->type() instanceof FloatType && is_int($value)) { - $value = (float) $value; + $value = $value; } $this->shell = $shell; $this->value = $value;