Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
94.74% covered (success)
94.74%
18 / 19
85.71% covered (warning)
85.71%
6 / 7
CRAP
0.00% covered (danger)
0.00%
0 / 1
FakerDatalayer
94.74% covered (success)
94.74%
18 / 19
85.71% covered (warning)
85.71%
6 / 7
8.01
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 all
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
1
 find
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
 persistNew
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
2
 persistExisting
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 removeExisting
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 upsert
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2namespace Apie\Faker\Datalayers;
3
4use Apie\Core\BoundedContext\BoundedContextId;
5use Apie\Core\Datalayers\ApieDatalayerWithFilters;
6use Apie\Core\Datalayers\Concerns\FiltersOnAllFields;
7use Apie\Core\Datalayers\Lists\EntityListInterface;
8use Apie\Core\Datalayers\Search\LazyLoadedListFilterer;
9use Apie\Core\Entities\EntityInterface;
10use Apie\Core\Identifiers\AutoIncrementInteger;
11use Apie\Core\Identifiers\IdentifierInterface;
12use Apie\Core\IdentifierUtils;
13use Faker\Generator;
14use ReflectionClass;
15
16class FakerDatalayer implements ApieDatalayerWithFilters
17{
18    use FiltersOnAllFields;
19
20    public function __construct(private readonly Generator $faker, private readonly LazyLoadedListFilterer $filterer)
21    {
22    }
23
24    public function all(ReflectionClass $class, ?BoundedContextId $boundedContextId = null): EntityListInterface
25    {
26        return new FakeEntityList(
27            $class,
28            $boundedContextId ?? new BoundedContextId('unknown'),
29            $this->filterer,
30            $this->faker
31        );
32    }
33
34    public function find(IdentifierInterface $identifier, ?BoundedContextId $boundedContextId = null): EntityInterface
35    {
36        $class = IdentifierUtils::identifierToEntityClass($identifier);
37        $object = $this->faker->fakeClass($class->name);
38        IdentifierUtils::injectIdentifier($object, $identifier);
39        return $object;
40    }
41
42    public function persistNew(EntityInterface $entity, ?BoundedContextId $boundedContextId = null): EntityInterface
43    {
44        $identifier = $entity->getId();
45        if ($identifier instanceof AutoIncrementInteger) {
46            $className = get_class($identifier);
47            IdentifierUtils::injectIdentifier($entity, $className::createRandom($this->faker));
48        }
49        return $entity;
50    }
51
52    public function persistExisting(EntityInterface $entity, ?BoundedContextId $boundedContextId = null): EntityInterface
53    {
54        return $entity;
55    }
56
57    public function removeExisting(EntityInterface $entity, ?BoundedContextId $boundedContextId = null): void
58    {
59    }
60
61    public function upsert(EntityInterface $entity, ?BoundedContextId $boundedContextId): EntityInterface
62    {
63        return $this->persistNew($entity, $boundedContextId);
64    }
65}