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

Add new test case in ClassMethodsHydratorTest #26

Closed
wants to merge 1 commit into from

Conversation

luiz-brandao
Copy link

@luiz-brandao luiz-brandao commented Sep 25, 2020

Add new test case to reproduce issue with anonymous classes.

Q A
Documentation no
Bugfix no
BC Break no
New Feature no
RFC no
QA yes

Description

Test to show bug with anonymous classes as described by #25

@weierophinney weierophinney linked an issue Sep 28, 2020 that may be closed by this pull request
weierophinney added a commit to weierophinney/laminas-hydrator that referenced this pull request Oct 5, 2020
This patch modifies filters slightly.

Previously, they already checked to see if static property notation was provided or not.
This extends that slightly to allow passing an optional second argument, a `null` or `object` value representing the instance being extracted or hydrated.
For those filters that then use reflection, the `$instance` can be used as the primary argument, and the `$property` argument as the second.
This approach allows the `ClassMethodsHydrator` to filter properly based on the specific instance under scrutiny.

Additionally, this makes changes to `ClassMethodsHydrator` to:

- Detect if an anonymous class was used.
- Use the `spl_object_hash()` of that instance for caching the method list.
- Pass the `$object` as the `$instance` argument to filters.

Finally, I've added tests to each of the hydrators to verify they work as expected when presented with anonymous objects.

Fixes laminas#25
Fixes laminas#26

Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
weierophinney added a commit to weierophinney/laminas-hydrator that referenced this pull request Oct 5, 2020
This patch modifies filters slightly.

Previously, they already checked to see if static property notation was provided or not.
This extends that slightly to allow passing an optional second argument, a `null` or `object` value representing the instance being extracted or hydrated.
For those filters that then use reflection, the `$instance` can be used as the primary argument, and the `$property` argument as the second.
This approach allows the `ClassMethodsHydrator` to filter properly based on the specific instance under scrutiny.

Additionally, this makes changes to `ClassMethodsHydrator` to:

- Detect if an anonymous class was used.
- Use the `spl_object_hash()` of that instance for caching the method list.
- Pass the `$object` as the `$instance` argument to filters.

Finally, I've added tests to each of the hydrators to verify they work as expected when presented with anonymous objects.

Fixes laminas#25
Fixes laminas#26

Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
weierophinney added a commit to weierophinney/laminas-hydrator that referenced this pull request Oct 6, 2020
This patch modifies filters slightly.

Previously, they already checked to see if static property notation was provided or not.
This extends that slightly to allow passing an optional second argument, a `null` or `object` value representing the instance being extracted or hydrated.
For those filters that then use reflection, the `$instance` can be used as the primary argument, and the `$property` argument as the second.
This approach allows the `ClassMethodsHydrator` to filter properly based on the specific instance under scrutiny.

Additionally, this makes changes to `ClassMethodsHydrator` to:

- Detect if an anonymous class was used.
- Use the `spl_object_hash()` of that instance for caching the method list.
- Pass the `$object` as the `$instance` argument to filters.

Finally, I've added tests to each of the hydrators to verify they work as expected when presented with anonymous objects.

Fixes laminas#25
Fixes laminas#26

Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
weierophinney added a commit to weierophinney/laminas-hydrator that referenced this pull request Oct 6, 2020
This patch modifies filters slightly.

Previously, they already checked to see if static property notation was provided or not.
This extends that slightly to allow passing an optional second argument, a `null` or `object` value representing the instance being extracted or hydrated.
For those filters that then use reflection, the `$instance` can be used as the primary argument, and the `$property` argument as the second.
This approach allows the `ClassMethodsHydrator` to filter properly based on the specific instance under scrutiny.

Additionally, this makes changes to `ClassMethodsHydrator` to:

- Detect if an anonymous class was used.
- Use the `spl_object_hash()` of that instance for caching the method list.
- Pass the `$object` as the `$instance` argument to filters.

Finally, I've added tests to each of the hydrators to verify they work as expected when presented with anonymous objects.

Fixes laminas#25
Fixes laminas#26

Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
weierophinney added a commit to weierophinney/laminas-hydrator that referenced this pull request Oct 6, 2020
This patch modifies filters slightly.

Previously, they already checked to see if static property notation was provided or not.
This extends that slightly to allow passing an optional second argument, a `null` or `object` value representing the instance being extracted or hydrated.
For those filters that then use reflection, the `$instance` can be used as the primary argument, and the `$property` argument as the second.
This approach allows the `ClassMethodsHydrator` to filter properly based on the specific instance under scrutiny.

Additionally, this makes changes to `ClassMethodsHydrator` to:

- Detect if an anonymous class was used.
- Use the `spl_object_hash()` of that instance for caching the method list.
- Pass the `$object` as the `$instance` argument to filters.

Finally, I've added tests to each of the hydrators to verify they work as expected when presented with anonymous objects.

Fixes laminas#25
Fixes laminas#26

Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
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.

ClassMethodsHydrator::extract does not work with anonymous classes
1 participant