Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[12.x] Fix factory recycle for many to many relationships #55271

Draft
wants to merge 1 commit into
base: 12.x
Choose a base branch
from

Conversation

bertheyman
Copy link

Let's say we create a user using a factory, and it should get assigned an existing role:

$roles = Role::get();
$user = User::factory()
            ->recycle($roles)
            ->hasRoles()
            ->create();

Original output:

Currently, recycle will only taken into account for a belongsTo relationship.
$user will get a newly generated role, ignoring the recycle.

The docs make a mention of this:

If you have models that share a common relationship with another model, you may use the recycle method to ensure a single instance of the related model is recycled for all of the relationships created by the factory.

HasAttached makes it pretty clear what it can (not) do, recycle is much more ambiguous. My assumption based on the code only would be that it works for any kind of relationship.

Suggested output in this PR:

  • $user will recycle one of the provided $roles.
  • Added a test for this

If this goes forward, I'll send a matching PR for the docs.

It might be worth it adding support for one to many (from the owner side, has()) as well.
There's two possibilities there:

  • Recycled child already has a value for this relationship. Currently overwritten with a new one (no recycle)
  • Recycled child has no value for this relationship. Currently generating a new one (no recycle)
    Might need help here, as this situation is more complex with more choices to make in the (testing) approach.

Previous discussion when integrating the for() with recycle here.

@bertheyman bertheyman changed the title Fix factory recycle for many to many relationships [12.x] Fix factory recycle for many to many relationships Apr 3, 2025
@taylorotwell
Copy link
Member

Hmm, I may let @jessarcher take a look at this one. I'm not totally sure recycle is what we want to use here as it was mainly meant for truly parent relationships.

I think what you are trying to accomplish is already fairly possible just by passing the roles you want to hasAttached.

@taylorotwell taylorotwell requested a review from jessarcher April 4, 2025 15:36
@taylorotwell taylorotwell marked this pull request as draft April 4, 2025 15:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants