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

Enforcing Abstract Entity in DiscriminatorMap is important for some operations #9142

Closed
olsavmic opened this issue Oct 21, 2021 · 9 comments · Fixed by #9262
Closed

Enforcing Abstract Entity in DiscriminatorMap is important for some operations #9142

olsavmic opened this issue Oct 21, 2021 · 9 comments · Fixed by #9262
Labels

Comments

@olsavmic
Copy link
Contributor

Bug Report

Summary

Recent fix introduced in 2.10.2 9096: Fix SchemaValidator with abstract child class in discriminator map is a regression to the SchemaValidator as having all @Entity classes, including those that are non-instantiable (abstract) is important for some operation.

@beberlei already mentioned it here #8736 (comment)

I also mentioned this in the original issue (#8771 (comment)) regarding this change.

I'll try to prepare a convincing test case.

Q A
BC Break no
Version 2.10.2

Current behaviour

Abstract class marked with @Entity annotation does not have to be part of DiscriminatorMap (according to SchemaValidator)

Expected behavior

Only @MappedSuperclass does not have to be part of the SchemaValidator, missing @Entity is dangerous in some cases

@derrabus
Copy link
Member

cc @BenMorel

@derrabus derrabus added the Bug label Oct 21, 2021
@BenMorel
Copy link
Contributor

Looking forward to the test case, I'd like to fix the need for abstract classes in the discriminator map rather than reintroducing it. AFAIK, it always worked fine without in Doctrine ORM <= 2.8, so requiring it now looks like a regression.

@olsavmic
Copy link
Contributor Author

olsavmic commented Oct 22, 2021

I added a test case demonstrating the one issue I know of which is caused by missing abstract middle class in the $classMetadata->subClasses (look at the PHPUnit output).

I would also like to find a way around having abstract middle class in the DiscriminatorMap YET I'd prefer to keep the validator catching this very dangerous case UNTIL we have a working solution.

I'm not sure if there are any other problems related to this except the one demonstrated.

@beberlei
Copy link
Member

We should perform some archeology to find out why we enforced this with 2.9

@olsavmic
Copy link
Contributor Author

@beberlei I'd say it's obvious why the check was added -> to prevent issues like the one demonstrated in the test case.

Therefore I think the removal of the check is a regression as it allows for hidden problems that were there even BEFORE v2.9

We should find out a solution for the root case but that's rather a feature request and should be discussed separately.

As I already mentioned, we encountered exactly this issue in our production code on v2.7 and the check added in 2.9 prevents the issue from occurring again.

@BenMorel
Copy link
Contributor

@olsavmic Interesting, thanks, I didn’t know that this issue was already present in 2.7, I thought that this was a regression introduced in 2.9.

@beberlei as a quick fix, would it make sense to automatically add a dummy entry in the discriminator map for all abstract classes?

@beberlei
Copy link
Member

@BenMorel the problem is "all abstract classes" are not known when root entity is loaded

@olsavmic
Copy link
Contributor Author

olsavmic commented Dec 4, 2021

Since we found no simple and preferable solution, can we revert the change and update documentation accordingly (explaining that even abstract classes must be part of discriminator map and why)?

@beberlei @derrabus I'll prepare the PR if you agree with me :)

@mpdude
Copy link
Contributor

mpdude commented Jan 13, 2023

Join #10389 for a discussion of whether "all abstract entities must be declared" shall be the new policy and also be enforced by a runtime check (not only in the Schema Tool).

mpdude added a commit to mpdude/doctrine2 that referenced this issue Jan 17, 2023
Since doctrine#10411 has been merged, no more need to specify all intermediate abstract entity classes.

Thus, we can relax the schema validator check as requested in doctrine#9095. The reasons given in doctrine#9142 no longer apply.
greg0ire pushed a commit to mpdude/doctrine2 that referenced this issue Feb 5, 2023
Since doctrine#10411 has been merged, no more need to specify all intermediate
abstract entity classes.

Thus, we can relax the schema validator check as requested in doctrine#9095. The
reasons given in doctrine#9142 no longer apply.

Fixes doctrine#9095
Closes doctrine#9096
greg0ire pushed a commit to mpdude/doctrine2 that referenced this issue Feb 5, 2023
Since doctrine#10411 has been merged, no more need to specify all intermediate
abstract entity classes.

Thus, we can relax the schema validator check as requested in doctrine#9095. The
reasons given in doctrine#9142 no longer apply.

Fixes doctrine#9095
Closes doctrine#9096
greg0ire pushed a commit to mpdude/doctrine2 that referenced this issue Feb 5, 2023
Since doctrine#10411 has been merged, no more need to specify all intermediate
abstract entity classes.

Thus, we can relax the schema validator check as requested in doctrine#9095. The
reasons given in doctrine#9142 no longer apply.

Fixes doctrine#9095
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
5 participants