Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
22 / 22
100.00% covered (success)
100.00%
4 / 4
CRAP
100.00% covered (success)
100.00%
1 / 1
CountryAndPhoneNumber
100.00% covered (success)
100.00%
22 / 22
100.00% covered (success)
100.00%
4 / 4
6
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getFields
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
 validateState
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
1 / 1
2
 createRandom
100.00% covered (success)
100.00%
8 / 8
100.00% covered (success)
100.00%
1 / 1
2
1<?php
2namespace Apie\CountryAndPhoneNumber;
3
4use Apie\Core\Attributes\FakeMethod;
5use Apie\Core\ValueObjects\CompositeValueObject;
6use Apie\Core\ValueObjects\CompositeWithOwnValidation;
7use Apie\Core\ValueObjects\Fields\FieldInterface;
8use Apie\Core\ValueObjects\Fields\FromProperty;
9use Apie\CountryAndPhoneNumber\Exceptions\PhoneNumberAndCountryMismatch;
10use Apie\CountryAndPhoneNumber\Factories\PhoneNumberFactory;
11use Apie\CountryAndPhoneNumber\Fields\DynamicPhoneNumberProperty;
12use Apie\Serializer\Exceptions\ValidationException;
13use Faker\Generator;
14use libphonenumber\PhoneNumberFormat;
15use libphonenumber\PhoneNumberUtil;
16use PrinsFrank\Standards\Country\CountryAlpha2;
17use ReflectionProperty;
18
19#[FakeMethod('createRandom')]
20final class CountryAndPhoneNumber implements CompositeWithOwnValidation
21{
22    use CompositeValueObject;
23
24    public function __construct(private CountryAlpha2 $country, private PhoneNumber $phoneNumber)
25    {
26        $this->validateState();
27    }
28
29    /**
30     * @return array<string, FieldInterface>
31     */
32    public static function getFields(): array
33    {
34        return [
35            'country' => new FromProperty(new ReflectionProperty(CountryAndPhoneNumber::class, 'country')),
36            'phoneNumber' => new DynamicPhoneNumberProperty(),
37        ];
38    }
39
40    private function validateState(): void
41    {
42        if ($this->country !== $this->phoneNumber->fromCountry()) {
43            throw ValidationException::createFromArray(
44                [
45                    'phoneNumber'  => new PhoneNumberAndCountryMismatch(
46                        $this->country,
47                        $this->phoneNumber->fromCountry()
48                    )
49                ]
50            );
51        }
52    }
53
54    public static function createRandom(Generator $generator): self
55    {
56        $phoneNumber = '';
57        do {
58            $country = $generator->randomElement(CountryAlpha2::cases());
59            $phoneNumberUtil = PhoneNumberUtil::getInstance();
60            $phoneNumberObject = $phoneNumberUtil->getExampleNumber($country->value);
61            if ($phoneNumberObject) {
62                $phoneNumber = $phoneNumberUtil->format($phoneNumberObject, PhoneNumberFormat::E164);
63            }
64        } while ($phoneNumber === '');
65        return new self($country, PhoneNumberFactory::createFrom($phoneNumber, $country));
66    }
67}