Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
4 / 4
CRAP
100.00% covered (success)
100.00%
1 / 1
DatabaseText
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
4 / 4
4
100.00% covered (success)
100.00%
1 / 1
 getRegularExpression
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 convert
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 createRandom
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 createSchema
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Core\ValueObjects;
3
4use Apie\Core\Attributes\FakeMethod;
5use Apie\Core\Attributes\ProvideIndex;
6use Apie\Core\Attributes\SchemaMethod;
7use Apie\Core\ValueObjects\Concerns\IndexesWords;
8use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface;
9use Faker\Generator;
10
11#[FakeMethod('createRandom')]
12#[SchemaMethod('createSchema')]
13#[ProvideIndex('getIndexes')]
14final class DatabaseText implements HasRegexValueObjectInterface
15{
16    use IndexesWords;
17    use IsStringWithRegexValueObject;
18
19    public static function getRegularExpression(): string
20    {
21        return '/^.{0,65535}$/s';
22    }
23
24    protected function convert(string $input): string
25    {
26        return trim($input);
27    }
28
29    public static function createRandom(Generator $generator): self
30    {
31        return new DatabaseText($generator->realText(1024));
32    }
33
34    /**
35     * Provide OpenAPI schema. This is overwritten as some libraries will try to generate strings of 65535 characters
36     * all the time for example strings resulting in terrible performance.
37     *
38     * @return array<string, string|int>
39     */
40    public static function createSchema(): array
41    {
42        return [
43            'type' => 'string',
44            'minLength' => 0,
45            'maxLength' => 65535,
46            'example' => 'Lorem Ipsum',
47        ];
48    }
49}