Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
25.00% |
3 / 12 |
|
33.33% |
1 / 3 |
CRAP | |
0.00% |
0 / 1 |
ClassNameReference | |
25.00% |
3 / 12 |
|
33.33% |
1 / 3 |
21.19 | |
0.00% |
0 / 1 |
validate | |
20.00% |
2 / 10 |
|
0.00% |
0 / 1 |
12.19 | |||
createRandom | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getOptions | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | namespace Apie\Maker\ValueObjects; |
3 | |
4 | use Apie\Core\Attributes\FakeMethod; |
5 | use Apie\Core\FileStorage\StoredFile; |
6 | use Apie\Core\Lists\StringList; |
7 | use Apie\Core\Lists\StringSet; |
8 | use Apie\Core\ValueObjects\Exceptions\InvalidStringForValueObjectException; |
9 | use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface; |
10 | use Apie\Core\ValueObjects\Interfaces\LimitedOptionsInterface; |
11 | use Apie\Core\ValueObjects\IsStringValueObject; |
12 | use Apie\Maker\Concerns\IsClassNameReference; |
13 | use DateTime; |
14 | use DateTimeImmutable; |
15 | use DateTimeInterface; |
16 | use DateTimeZone; |
17 | use Faker\Generator; |
18 | use Psr\Http\Message\UploadedFileInterface; |
19 | use ReflectionClass; |
20 | |
21 | #[FakeMethod('createRandom')] |
22 | class ClassNameReference implements HasRegexValueObjectInterface, LimitedOptionsInterface |
23 | { |
24 | use IsClassNameReference; |
25 | use IsStringValueObject; |
26 | |
27 | private const CLASSNAMES = [ |
28 | StringList::class, |
29 | __CLASS__, |
30 | VendorValueObject::class, |
31 | UploadedFileInterface::class, |
32 | StoredFile::class, |
33 | DateTimeInterface::class, |
34 | DateTimeImmutable::class, |
35 | DateTime::class, |
36 | DateTimeZone::class, |
37 | ]; |
38 | |
39 | public static function validate(string $input): void |
40 | { |
41 | if (!preg_match(static::getRegularExpression(), $input)) { |
42 | throw new InvalidStringForValueObjectException( |
43 | $input, |
44 | new ReflectionClass(self::class) |
45 | ); |
46 | } |
47 | if (!class_exists($input) && !interface_exists($input)) { |
48 | throw new InvalidStringForValueObjectException( |
49 | $input, |
50 | new ReflectionClass(self::class) |
51 | ); |
52 | } |
53 | } |
54 | |
55 | public static function createRandom(Generator $factory): self |
56 | { |
57 | return new self($factory->randomElement(self::CLASSNAMES)); |
58 | } |
59 | |
60 | public static function getOptions(): StringSet |
61 | { |
62 | return new StringSet(self::CLASSNAMES); |
63 | } |
64 | } |