Skip to content

Commit 88ada05

Browse files
committed
fix: add missing Test attribute
1 parent 4eea1c8 commit 88ada05

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

src/ObjectFactory.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function __construct()
4646
{
4747
parent::__construct();
4848

49-
$this->validationEnabled = Configuration::instance()->validationEnabled;
49+
$this->validationEnabled = Configuration::isBooted() && Configuration::instance()->validationEnabled;
5050
}
5151

5252
/**
@@ -194,7 +194,7 @@ public function getValidationGroups(): string|GroupSequence|array|null
194194
*/
195195
protected function initializeInternal(): static
196196
{
197-
if (!Configuration::instance()->hasEventDispatcher()) {
197+
if (!Configuration::isBooted() || !Configuration::instance()->hasEventDispatcher()) {
198198
return $this;
199199
}
200200

src/Persistence/PersistentObjectFactory.php

+12-9
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function __construct()
4949
{
5050
parent::__construct();
5151

52-
$this->persist = Configuration::instance()->isPersistenceEnabled() ? PersistMode::PERSIST : PersistMode::WITHOUT_PERSISTING;
52+
$this->persist = $this->isPersistenceEnabled() ? PersistMode::PERSIST : PersistMode::WITHOUT_PERSISTING;
5353
}
5454

5555
/**
@@ -272,17 +272,11 @@ final public function afterPersist(callable $callback): static
272272
*/
273273
public function persistMode(): PersistMode
274274
{
275-
return Configuration::instance()->isPersistenceEnabled() ? $this->persist : PersistMode::WITHOUT_PERSISTING;
275+
return $this->isPersistenceEnabled() ? $this->persist : PersistMode::WITHOUT_PERSISTING;
276276
}
277277

278278
final public function isPersisting(): bool
279279
{
280-
$config = Configuration::instance();
281-
282-
if (!$config->isPersistenceEnabled()) {
283-
return false;
284-
}
285-
286280
return $this->persistMode()->isPersisting();
287281
}
288282

@@ -424,7 +418,7 @@ static function(object $object, array $parameters, PersistentObjectFactory $fact
424418
}
425419
);
426420

427-
if (!Configuration::instance()->hasEventDispatcher()) {
421+
if (!Configuration::isBooted() || !Configuration::instance()->hasEventDispatcher()) {
428422
return $factory;
429423
}
430424

@@ -459,4 +453,13 @@ private function throwIfCannotCreateObject(): void
459453

460454
throw new \LogicException(\sprintf('Cannot create object in a data provider for non-proxy factories. Transform your factory into a "%s", or call "create()" method in the test. See https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#phpunit-data-providers', PersistentProxyObjectFactory::class));
461455
}
456+
457+
private function isPersistenceEnabled(): bool
458+
{
459+
try {
460+
return Configuration::instance()->isPersistenceEnabled();
461+
} catch (FoundryNotBooted) {
462+
return false;
463+
}
464+
}
462465
}

tests/Unit/Persistence/PersistentObjectFactoryTest.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
namespace Zenstruck\Foundry\Tests\Unit\Persistence;
1313

14+
use PHPUnit\Framework\Attributes\DataProvider;
1415
use PHPUnit\Framework\Attributes\Test;
1516
use PHPUnit\Framework\TestCase;
1617
use Zenstruck\Foundry\FactoryCollection;
@@ -69,7 +70,9 @@ public function random_or_create(): void
6970
* @dataProvider factoryCollectionDataProvider
7071
* @param FactoryCollection<GenericEntity, GenericEntityFactory> $collection
7172
*/
72-
public function can_use_factory_collection_methods_in_data_providers(FactoryCollection $collection): void // @phpstan-ignore generics.notSubtype
73+
#[Test] // @phpstan-ignore generics.notSubtype
74+
#[DataProvider('factoryCollectionDataProvider')]
75+
public function can_use_factory_collection_methods_in_data_providers(FactoryCollection $collection): void
7376
{
7477
self::assertEquals(
7578
[

0 commit comments

Comments
 (0)