Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
25.00% covered (danger)
25.00%
3 / 12
33.33% covered (danger)
33.33%
1 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
ClassNameReference
25.00% covered (danger)
25.00%
3 / 12
33.33% covered (danger)
33.33%
1 / 3
21.19
0.00% covered (danger)
0.00%
0 / 1
 validate
20.00% covered (danger)
20.00%
2 / 10
0.00% covered (danger)
0.00%
0 / 1
12.19
 createRandom
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getOptions
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2namespace Apie\Maker\ValueObjects;
3
4use Apie\Core\Attributes\FakeMethod;
5use Apie\Core\FileStorage\StoredFile;
6use Apie\Core\Lists\StringList;
7use Apie\Core\Lists\StringSet;
8use Apie\Core\ValueObjects\Exceptions\InvalidStringForValueObjectException;
9use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface;
10use Apie\Core\ValueObjects\Interfaces\LimitedOptionsInterface;
11use Apie\Core\ValueObjects\IsStringValueObject;
12use Apie\Maker\Concerns\IsClassNameReference;
13use DateTime;
14use DateTimeImmutable;
15use DateTimeInterface;
16use DateTimeZone;
17use Faker\Generator;
18use Psr\Http\Message\UploadedFileInterface;
19use ReflectionClass;
20
21#[FakeMethod('createRandom')]
22class 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}