Skip to content

ci: add dependency analysis workflow #24

ci: add dependency analysis workflow

ci: add dependency analysis workflow #24

Triggered via pull request May 26, 2024 14:59
@lotyplotyp
synchronize #738
feat/infra-dx
Status Success
Total duration 2m 5s
Artifacts

testing.yml

on: pull_request
Matrix: code-coverage
Matrix: mutation-testing
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Cache/Providers/CacheServiceProvider.php#L25
Escaped Mutant for Mutator "UnwrapArrayMerge": --- Original +++ New @@ @@ { /** @var Repository $config */ $config = $this->app->get(Repository::class); - $config->set('cycle.tokenizer.directories', array_merge($config->get('cycle.tokenizer.directories', []), [__DIR__ . '/../Entities'])); + $config->set('cycle.tokenizer.directories', [__DIR__ . '/../Entities']); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/Registrators/RegisterSchema.php#L64
Escaped Mutant for Mutator "LogicalNot": --- Original +++ New @@ @@ /** @var CacheManagerContract $cache */ $cache = $app->get(CacheManagerContract::class); $schemaCompiler = Compiler::fromMemory(cache: $cache); - if ($schemaCompiler->isEmpty() || !$config->cacheSchema()) { + if ($schemaCompiler->isEmpty() || $config->cacheSchema()) { $schemaCompiler = Compiler::compile(registry: $app->get(Registry::class), queue: $app->get(GeneratorLoader::class)); $schemaCompiler->toMemory($cache); }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/Registrators/RegisterSchema.php#L64
Escaped Mutant for Mutator "LogicalOrAllSubExprNegation": --- Original +++ New @@ @@ /** @var CacheManagerContract $cache */ $cache = $app->get(CacheManagerContract::class); $schemaCompiler = Compiler::fromMemory(cache: $cache); - if ($schemaCompiler->isEmpty() || !$config->cacheSchema()) { + if (!$schemaCompiler->isEmpty() || $config->cacheSchema()) { $schemaCompiler = Compiler::compile(registry: $app->get(Registry::class), queue: $app->get(GeneratorLoader::class)); $schemaCompiler->toMemory($cache); }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/Registrators/RegisterSchema.php#L70
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ $schemaCompiler = Compiler::fromMemory(cache: $cache); if ($schemaCompiler->isEmpty() || !$config->cacheSchema()) { $schemaCompiler = Compiler::compile(registry: $app->get(Registry::class), queue: $app->get(GeneratorLoader::class)); - $schemaCompiler->toMemory($cache); + } return $schemaCompiler->toSchema(); }); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Queue/Providers/QueueServiceProvider.php#L25
Escaped Mutant for Mutator "UnwrapArrayMerge": --- Original +++ New @@ @@ { /** @var Repository $config */ $config = $this->app->get(Repository::class); - $config->set('cycle.tokenizer.directories', array_merge($config->get('cycle.tokenizer.directories', []), [__DIR__ . '/../Entities'])); + $config->set('cycle.tokenizer.directories', [__DIR__ . '/../Entities']); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Session/Providers/SessionServiceProvider.php#L25
Escaped Mutant for Mutator "UnwrapArrayMerge": --- Original +++ New @@ @@ { /** @var Repository $config */ $config = $this->app->get(Repository::class); - $config->set('cycle.tokenizer.directories', array_merge($config->get('cycle.tokenizer.directories', []), [__DIR__ . '/../Entities'])); + $config->set('cycle.tokenizer.directories', [__DIR__ . '/../Entities']); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Telescope/Providers/TelescopeServiceProvider.php#L25
Escaped Mutant for Mutator "UnwrapArrayMerge": --- Original +++ New @@ @@ { /** @var Repository $config */ $config = $this->app->get(Repository::class); - $config->set('cycle.tokenizer.directories', array_merge($config->get('cycle.tokenizer.directories', []), [__DIR__ . '/../Entities'])); + $config->set('cycle.tokenizer.directories', [__DIR__ . '/../Entities']); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Schema/Generators/GeneratorQueue.php#L36
Escaped Mutant for Mutator "CloneRemoval": --- Original +++ New @@ @@ } public function add(string $group, GeneratorInterface|string $generator) : GeneratorLoader { - $queue = clone $this; + $queue = $this; $queue->generators[$group][] = $generator; return $queue; }
mutation-testing (ubuntu-latest, 8.2, locked): src/Support/Arr.php#L54
Escaped Mutant for Mutator "LogicalAnd": --- Original +++ New @@ @@ return $array[$key] ?? $default; } foreach (explode('.', $key) as $segment) { - if (is_array($array) && array_key_exists($segment, $array)) { + if (is_array($array) || array_key_exists($segment, $array)) { $array = $array[$segment]; } else { return $default;
mutation-testing (ubuntu-latest, 8.2, locked): src/Testing/Concerns/InteractsWithDatabase.php#L109
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } protected function assertSoftDeleted($table, array $data = [], $connection = null, $deletedAtColumn = 'deleted_at') : self { - $this->assertThat($table, new SoftDeletedInDatabase(app(DatabaseProviderInterface::class), $data, $deletedAtColumn)); + return $this; } protected function assertNotSoftDeleted($table, array $data = [], $connection = null, $deletedAtColumn = 'deleted_at') : self