-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow WithStory attribute on parent class
- Loading branch information
Showing
9 changed files
with
150 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?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\Tests\Fixture\Stories; | ||
|
||
use Symfony\Component\HttpKernel\KernelInterface; | ||
use Zenstruck\Foundry\Story; | ||
use Zenstruck\Foundry\Tests\Fixture\Factories\Entity\GenericEntityFactory; | ||
|
||
/** | ||
* @author Nicolas PHILIPPE <[email protected]> | ||
*/ | ||
final class ServiceStory extends Story | ||
{ | ||
public function __construct( | ||
private readonly KernelInterface $kernel | ||
) { | ||
} | ||
|
||
public function build(): void | ||
{ | ||
$this->addState( | ||
'foo', | ||
GenericEntityFactory::createOne(['prop1' => $this->kernel->getEnvironment()]) | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
tests/Integration/Attribute/WithStory/ParentClassWithStoryAttributeTestCase.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Zenstruck\Foundry\Tests\Integration\Attribute\WithStory; | ||
|
||
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; | ||
use Zenstruck\Foundry\Attribute\WithStory; | ||
use Zenstruck\Foundry\Test\Factories; | ||
use Zenstruck\Foundry\Test\ResetDatabase; | ||
use Zenstruck\Foundry\Tests\Fixture\Stories\EntityStory; | ||
|
||
/** | ||
* @author Nicolas PHILIPPE <[email protected]> | ||
*/ | ||
#[WithStory(EntityStory::class)] | ||
abstract class ParentClassWithStoryAttributeTestCase extends KernelTestCase | ||
{ | ||
use Factories, ResetDatabase; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,25 @@ | |
|
||
declare(strict_types=1); | ||
|
||
namespace Integration\Attribute\WithStory; | ||
namespace Zenstruck\Foundry\Tests\Integration\Attribute\WithStory; | ||
|
||
use PHPUnit\Framework\Attributes\RequiresPhpunit; | ||
use PHPUnit\Framework\Attributes\RequiresPhpunitExtension; | ||
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; | ||
use Zenstruck\Foundry\Attribute\WithStory; | ||
use Zenstruck\Foundry\PHPUnit\FoundryExtension; | ||
use Zenstruck\Foundry\Test\Factories; | ||
use Zenstruck\Foundry\Test\ResetDatabase; | ||
use Zenstruck\Foundry\Tests\Fixture\Factories\Entity\GenericEntityFactory; | ||
use Zenstruck\Foundry\Tests\Fixture\Stories\EntityPoolStory; | ||
use Zenstruck\Foundry\Tests\Fixture\Stories\EntityStory; | ||
|
||
/** | ||
* @author Nicolas PHILIPPE <[email protected]> | ||
* @requires PHPUnit 11.4 | ||
*/ | ||
#[RequiresPhpunit('11.4')] | ||
#[RequiresPhpunitExtension(FoundryExtension::class)] | ||
#[WithStory(EntityStory::class)] | ||
final class WithStoryOnClassTest extends KernelTestCase | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,26 @@ | |
|
||
declare(strict_types=1); | ||
|
||
namespace Integration\Attribute\WithStory; | ||
namespace Zenstruck\Foundry\Tests\Integration\Attribute\WithStory; | ||
|
||
use PHPUnit\Framework\Attributes\RequiresPhpunit; | ||
use PHPUnit\Framework\Attributes\RequiresPhpunitExtension; | ||
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; | ||
use Zenstruck\Foundry\Attribute\WithStory; | ||
use Zenstruck\Foundry\PHPUnit\FoundryExtension; | ||
use Zenstruck\Foundry\Test\Factories; | ||
use Zenstruck\Foundry\Test\ResetDatabase; | ||
use Zenstruck\Foundry\Tests\Fixture\Factories\Entity\GenericEntityFactory; | ||
use Zenstruck\Foundry\Tests\Fixture\Stories\EntityPoolStory; | ||
use Zenstruck\Foundry\Tests\Fixture\Stories\EntityStory; | ||
use Zenstruck\Foundry\Tests\Fixture\Stories\ServiceStory; | ||
|
||
/** | ||
* @author Nicolas PHILIPPE <[email protected]> | ||
* @requires PHPUnit 11.4 | ||
*/ | ||
#[RequiresPhpunit('11.4')] | ||
#[RequiresPhpunitExtension(FoundryExtension::class)] | ||
final class WithStoryOnMethodTest extends KernelTestCase | ||
{ | ||
use Factories, ResetDatabase; | ||
|
@@ -37,4 +47,13 @@ public function can_use_multiple_story_in_attribute(): void | |
{ | ||
GenericEntityFactory::assert()->count(5); | ||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
#[WithStory(ServiceStory::class)] | ||
public function can_use_service_story(): void | ||
{ | ||
$this->assertSame('dev', ServiceStory::get('foo')->getProp1()); | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
tests/Integration/Attribute/WithStory/WithStoryOnParentClassTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Zenstruck\Foundry\Tests\Integration\Attribute\WithStory; | ||
|
||
use PHPUnit\Framework\Attributes\RequiresPhpunit; | ||
use PHPUnit\Framework\Attributes\RequiresPhpunitExtension; | ||
use Zenstruck\Foundry\Attribute\WithStory; | ||
use Zenstruck\Foundry\PHPUnit\FoundryExtension; | ||
use Zenstruck\Foundry\Tests\Fixture\Factories\Entity\GenericEntityFactory; | ||
use Zenstruck\Foundry\Tests\Fixture\Stories\EntityPoolStory; | ||
|
||
/** | ||
* @author Nicolas PHILIPPE <[email protected]> | ||
* @requires PHPUnit 11.4 | ||
*/ | ||
#[RequiresPhpunit('11.4')] | ||
#[RequiresPhpunitExtension(FoundryExtension::class)] | ||
#[WithStory(EntityPoolStory::class)] | ||
final class WithStoryOnParentClassTest extends ParentClassWithStoryAttributeTestCase | ||
{ | ||
/** | ||
* @test | ||
*/ | ||
public function can_use_story_in_attribute_from_parent_class(): void | ||
{ | ||
GenericEntityFactory::assert()->count(5); | ||
} | ||
} |