Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
86.67% covered (warning)
86.67%
13 / 15
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
InteractiveConsoleCommand
86.67% covered (warning)
86.67%
13 / 15
0.00% covered (danger)
0.00%
0 / 2
6.09
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getInputs
92.86% covered (success)
92.86%
13 / 14
0.00% covered (danger)
0.00%
0 / 1
5.01
1<?php
2namespace Apie\IntegrationTests\Console;
3
4use Apie\Core\Context\ApieContext;
5use Apie\Core\Dto\DtoInterface;
6use Apie\Core\Entities\EntityInterface;
7use Apie\Core\Metadata\Fields\DiscriminatorColumn;
8use Apie\Core\Metadata\MetadataFactory;
9use ReflectionClass;
10
11class InteractiveConsoleCommand implements DtoInterface
12{
13    /**
14     * @param class-string<EntityInterface> $class
15     * @param array<string, array<int, int|float|string>> $inputPerField
16     */
17    public function __construct(
18        public readonly string $command,
19        public readonly string $class,
20        public readonly array $inputPerField,
21        public readonly ?string $polymorphicClass = null
22    ) {
23
24    }
25
26    /**
27     * @return array<int, string|int|float>
28     */
29    public function getInputs(): array
30    {
31        $metadata = MetadataFactory::getCreationMetadata(new ReflectionClass($this->polymorphicClass ?? $this->class), new ApieContext());
32        $inputs = [];
33        if ($this->polymorphicClass) {
34            $inputs[] = $this->polymorphicClass;
35        }
36        $handled = [];
37        foreach ($metadata->getHashmap() as $key => $mapping) {
38            if ($mapping instanceof DiscriminatorColumn) {
39                continue;
40            }
41            $handled[] = $key;
42            $inputs = [...$inputs, ...$this->inputPerField[$key]];
43        }
44        $diff = array_diff($handled, array_keys($this->inputPerField));
45        if (!empty($diff)) {
46            throw new \LogicException('Mapping inputs failed, found unknown keys: ' . implode(', ', $diff));
47        }
48        return $inputs;
49    }
50}