-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathFactory.php
273 lines (238 loc) · 6.82 KB
/
Factory.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?php
/*
* This file is part of the zenstruck/foundry package.
*
* (c) Kevin Bond <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Zenstruck\Foundry;
use Faker;
use Zenstruck\Foundry\Exception\CannotCreateFactory;
/**
* @author Kevin Bond <[email protected]>
*
* @immutable
*
* @template T
* @phpstan-type Parameters = array<string,mixed>
* @phpstan-type Attributes = Parameters|callable(int):Parameters
* @phpstan-type Sequence = iterable<Parameters>|callable(): iterable<Parameters>
*/
abstract class Factory
{
/**
* Memoization of normalized parameters.
*
* @internal
* @var Parameters|null
*/
protected ?array $normalizedParameters = null;
/** @phpstan-var Attributes[] */
private array $attributes;
// keep an empty constructor for BC
public function __construct()
{
}
/**
* @phpstan-return static
* @phpstan-param Attributes $attributes
*/
final public static function new(array|callable $attributes = []): static
{
if (Configuration::isBooted()) {
$factory = Configuration::instance()->factories->get(static::class);
}
try {
$factory ??= new static(); // @phpstan-ignore new.static
} catch (\ArgumentCountError $e) {
throw CannotCreateFactory::argumentCountError($e);
}
return $factory
->initializeInternal()
->initialize()
->with($attributes);
}
/**
* @phpstan-param Attributes $attributes
*
* @return T
*/
public static function createOne(array|callable $attributes = []): mixed
{
return static::new()->create($attributes);
}
/**
* @phpstan-param Attributes $attributes
*
* @return list<T>
*/
final public static function createMany(int $number, array|callable $attributes = []): array
{
return static::new()->many($number)->create($attributes);
}
/**
* @phpstan-param Attributes $attributes
*
* @return list<T>
*/
final public static function createRange(int $min, int $max, array|callable $attributes = []): array
{
return static::new()->range($min, $max)->create($attributes);
}
/**
* @phpstan-param Sequence $sequence
*
* @return list<T>
*/
final public static function createSequence(iterable|callable $sequence): array
{
return static::new()->sequence($sequence)->create();
}
/**
* @phpstan-param Attributes $attributes
*
* @return T
*/
abstract public function create(array|callable $attributes = []): mixed;
/**
* @return FactoryCollection<T, static>
*/
final public function many(int $count): FactoryCollection
{
return FactoryCollection::many($this, $count); // @phpstan-ignore return.type
}
/**
* @return FactoryCollection<T, static>
*/
final public function range(int $min, int $max): FactoryCollection
{
return FactoryCollection::range($this, $min, $max); // @phpstan-ignore return.type
}
/**
* @phpstan-param Sequence $sequence
* @return FactoryCollection<T, static>
*/
final public function sequence(iterable|callable $sequence): FactoryCollection
{
if (\is_callable($sequence)) {
$sequence = $sequence();
}
return FactoryCollection::sequence($this, $sequence); // @phpstan-ignore return.type
}
/**
* @phpstan-param Attributes $attributes
*
* @psalm-return static<T>
* @phpstan-return static
*/
final public function with(array|callable $attributes = []): static
{
$clone = clone $this;
$clone->attributes[] = $attributes;
return $clone;
}
final protected static function faker(): Faker\Generator
{
return Configuration::instance()->faker;
}
/**
* Override to adjust default attributes & config.
*/
protected function initialize(): static
{
return $this;
}
/**
* @internal
*
* @phpstan-param Attributes $attributes
*
* @phpstan-return Parameters
*/
final protected function normalizeAttributes(array|callable $attributes = []): array
{
$attributes = [$this->defaults(), ...$this->attributes, $attributes];
$index = 1;
// find if an index was set by factory collection
foreach ($attributes as $i => $attr) {
if (\is_array($attr) && isset($attr['__index'])) {
$index = $attr['__index'];
unset($attributes[$i]);
break;
}
}
return \array_merge(
...\array_map(static fn(array|callable $attr) => \is_callable($attr) ? $attr($index) : $attr, $attributes)
);
}
/**
* @internal
*/
protected function initializeInternal(): static
{
return $this;
}
/**
* @internal
*
* @phpstan-param Parameters $parameters
*
* @phpstan-return Parameters
*/
protected function normalizeParameters(array $parameters): array
{
return $this->normalizedParameters = \array_combine(
\array_keys($parameters),
\array_map($this->normalizeParameter(...), \array_keys($parameters), $parameters)
);
}
/**
* @internal
*/
protected function normalizeParameter(string $field, mixed $value): mixed
{
if ($value instanceof LazyValue) {
$value = $value();
}
if ($value instanceof self) {
$value = $value->create();
}
if (FactoryCollection::accepts($value)) {
$value = FactoryCollection::fromFactoriesList($value);
}
if ($value instanceof FactoryCollection) {
$value = $this->normalizeCollection($field, $value);
}
if (\is_array($value)) {
return \array_combine(
\array_keys($value),
\array_map($this->normalizeParameter(...), \array_fill(0, \count($value), $field), $value)
);
}
return \is_object($value) ? $this->normalizeObject($value) : $value;
}
/**
* @internal
*
* @param FactoryCollection<mixed, Factory<mixed>> $collection
*
* @return self<mixed>[]
*/
protected function normalizeCollection(string $field, FactoryCollection $collection): array
{
return \array_map(fn(Factory $f) => $this->normalizeParameter($field, $f), $collection->all());
}
/**
* @internal
*/
protected function normalizeObject(object $object): object
{
return $object;
}
/**
* @phpstan-return Attributes
*/
abstract protected function defaults(): array|callable;
}