Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
41.18% covered (danger)
41.18%
7 / 17
66.67% covered (warning)
66.67%
2 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
VendorValueObject
41.18% covered (danger)
41.18%
7 / 17
66.67% covered (warning)
66.67%
2 / 3
21.03
0.00% covered (danger)
0.00%
0 / 1
 validate
23.08% covered (danger)
23.08%
3 / 13
0.00% covered (danger)
0.00%
0 / 1
16.38
 getOptions
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
2
 createRandom
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Maker\ValueObjects;
3
4use Apie\ApieCommonPlugin\ObjectProviderFactory;
5use Apie\Core\Attributes\FakeMethod;
6use Apie\Core\Lists\StringSet;
7use Apie\Core\ValueObjects\Exceptions\InvalidStringForValueObjectException;
8use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface;
9use Apie\Core\ValueObjects\Interfaces\LimitedOptionsInterface;
10use Apie\Core\ValueObjects\IsStringValueObject;
11use Apie\Maker\Concerns\IsClassNameReference;
12use Faker\Generator;
13use ReflectionClass;
14
15#[FakeMethod('createRandom')]
16final 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}