Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
41.18% |
7 / 17 |
|
66.67% |
2 / 3 |
CRAP | |
0.00% |
0 / 1 |
VendorValueObject | |
41.18% |
7 / 17 |
|
66.67% |
2 / 3 |
21.03 | |
0.00% |
0 / 1 |
validate | |
23.08% |
3 / 13 |
|
0.00% |
0 / 1 |
16.38 | |||
getOptions | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
2 | |||
createRandom | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\Maker\ValueObjects; |
3 | |
4 | use Apie\ApieCommonPlugin\ObjectProviderFactory; |
5 | use Apie\Core\Attributes\FakeMethod; |
6 | use Apie\Core\Lists\StringSet; |
7 | use Apie\Core\ValueObjects\Exceptions\InvalidStringForValueObjectException; |
8 | use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface; |
9 | use Apie\Core\ValueObjects\Interfaces\LimitedOptionsInterface; |
10 | use Apie\Core\ValueObjects\IsStringValueObject; |
11 | use Apie\Maker\Concerns\IsClassNameReference; |
12 | use Faker\Generator; |
13 | use ReflectionClass; |
14 | |
15 | #[FakeMethod('createRandom')] |
16 | final class VendorValueObject implements HasRegexValueObjectInterface, LimitedOptionsInterface |
17 | { |
18 | use IsClassNameReference; |
19 | use IsStringValueObject; |
20 | |
21 | private static StringSet $options; |
22 | |
23 | public static function validate(string $input): void |
24 | { |
25 | if (!preg_match(static::getRegularExpression(), $input)) { |
26 | throw new InvalidStringForValueObjectException( |
27 | $input, |
28 | new ReflectionClass(self::class) |
29 | ); |
30 | } |
31 | if ($input === __CLASS__) { |
32 | return; |
33 | } |
34 | $objects = self::getOptions(); |
35 | if (!empty($objects) && !isset($objects[$input])) { |
36 | throw new InvalidStringForValueObjectException( |
37 | $input, |
38 | new ReflectionClass(self::class) |
39 | ); |
40 | } |
41 | } |
42 | |
43 | public static function getOptions(): StringSet |
44 | { |
45 | if (!isset(self::$options)) { |
46 | self::$options = new StringSet([__CLASS__, ...ObjectProviderFactory::create()->getAvailableValueObjects()]); |
47 | } |
48 | return self::$options; |
49 | } |
50 | |
51 | public static function createRandom(Generator $factory): self |
52 | { |
53 | return new self($factory->randomElement(self::getOptions()->toArray())); |
54 | } |
55 | } |