-
-
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 service story in WithStory attribute
- Loading branch information
Showing
8 changed files
with
142 additions
and
49 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,36 @@ | ||
<?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 Symfony\Component\Routing\RouterInterface; | ||
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 RouterInterface $router | ||
) { | ||
} | ||
|
||
public function build(): void | ||
{ | ||
$this->addState( | ||
'foo', | ||
GenericEntityFactory::createOne(['prop1' => $this->router->getContext()->getHost()]) | ||
); | ||
} | ||
} |
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 |
---|---|---|
|
@@ -18,9 +18,9 @@ | |
|
||
/** | ||
* @author Nicolas PHILIPPE <[email protected]> | ||
* @requires PHPUnit 11.4 | ||
* @requires PHPUnit 10 | ||
*/ | ||
#[RequiresPhpunit('11.4')] | ||
#[RequiresPhpunit('10')] | ||
#[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 |
---|---|---|
|
@@ -14,13 +14,14 @@ | |
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; | ||
use Zenstruck\Foundry\Tests\Integration\RequiresORM; | ||
|
||
/** | ||
* @author Nicolas PHILIPPE <[email protected]> | ||
* @requires PHPUnit 11.4 | ||
* @requires PHPUnit 10 | ||
*/ | ||
#[RequiresPhpunit('11.4')] | ||
#[RequiresPhpunit('10')] | ||
#[RequiresPhpunitExtension(FoundryExtension::class)] | ||
final class WithStoryOnMethodTest extends KernelTestCase | ||
{ | ||
|
@@ -47,4 +48,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('localhost', ServiceStory::get('foo')->getProp1()); | ||
} | ||
} |
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 |
---|---|---|
|
@@ -13,9 +13,9 @@ | |
|
||
/** | ||
* @author Nicolas PHILIPPE <[email protected]> | ||
* @requires PHPUnit 11.4 | ||
* @requires PHPUnit 10 | ||
*/ | ||
#[RequiresPhpunit('11.4')] | ||
#[RequiresPhpunit('10')] | ||
#[RequiresPhpunitExtension(FoundryExtension::class)] | ||
#[WithStory(EntityPoolStory::class)] | ||
final class WithStoryOnParentClassTest extends ParentClassWithStoryAttributeTestCase | ||
|