nelmio/alice reference
In a nutshell
Alice lets you create fixtures/fake data for testing using YAML/JSON/PHP files.
Recipes
Create a number of objects using ranges
Use list of values
Get name (key) of current fixture
Use the <current()>
token to get the current fixture name:
In the above example, <current()>
will return user_alice
for the value alice
and user_bob
for the value bob
.
If we used a range like user{1..0}
, <current()>
will return user1
, user2
, etc.
Reference other fixtures
Reference specific fixture
Ensure value is unique
For method calls or constructors, you can do something like:
Ensure array-like property is unique
In the above example, user1#friends
and `user2#friends won’t contain any duplicate fixture values.
Handle relations
Or:
Or:
Randomly set data
Use notation like '50%? value : otherValue
to randomly set data.
In the above example, 50% of users will have a favoriteNumber
, the other 50% will their favoriteNumber
set to null
.
Specify constructor arguments
If your entities have constructors that require arguments, you can specify the arguments like so:
This will do something like:
Don’t execute the constructor
Other notes
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment