Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
3 / 3
CRAP
100.00% covered (success)
100.00%
1 / 1
DateTimeRange
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
3 / 3
5
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
 createRandom
100.00% covered (success)
100.00%
10 / 10
100.00% covered (success)
100.00%
1 / 1
2
 validateState
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
2
1<?php
2namespace Apie\DateValueObjects\Ranges;
3
4use Apie\Core\Attributes\FakeMethod;
5use Apie\Core\Exceptions\RangeMismatchException;
6use Apie\Core\ValueObjects\CompositeValueObject;
7use Apie\Core\ValueObjects\Interfaces\ValueObjectInterface;
8use Apie\DateValueObjects\DateWithTimezone;
9use Apie\Serializer\Exceptions\ValidationException;
10use DateTime;
11use Faker\Generator;
12
13#[FakeMethod("createRandom")]
14final class DateTimeRange implements ValueObjectInterface
15{
16    use CompositeValueObject;
17
18    private DateWithTimezone $start;
19    private DateWithTimezone $end;
20
21    public function __construct(DateWithTimezone $start, DateWithTimezone $end)
22    {
23        $this->start = $start;
24        $this->end = $end;
25        $this->validateState();
26    }
27
28    public static function createRandom(Generator $faker): self
29    {
30        $time1 = $faker->unixTime();
31        $time2 = $faker->unixTime();
32        if ($time1 > $time2) {
33            list($time2, $time1) = [$time1, $time2];
34        }
35        $firstDate = new DateTime('@' . $time1);
36        $secondDate = new DateTime('@' . $time1);
37
38        return new self(
39            DateWithTimezone::createFromDateTimeObject($firstDate),
40            DateWithTimezone::createFromDateTimeObject($secondDate),
41        );
42    }
43
44    private function validateState(): void
45    {
46        if ($this->start->toDate() > $this->end->toDate()) {
47            throw ValidationException::createFromArray(
48                [
49                    'start' => new RangeMismatchException($this->start->toDate(), $this->end->toDate())
50                ]
51            );
52        }
53    }
54}