Added test code coverage for JIRA issue SGF-178 (https://jira.springsource.org/browse/SGF-178) - parent attribute causes endless loop in in hashCode.

This commit is contained in:
John Blum
2013-10-08 15:08:33 -07:00
parent 015b25f117
commit 7d711ed4bb
2 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:gfe="http://www.springframework.org/schema/gemfire"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/gemfire http://www.springframework.org/schema/gemfire/spring-gemfire.xsd
">
<gfe:cache/>
<!-- NOTE non-parent Regions do not cause an infinite loop when calling hashCode on the BeanDefinition -->
<gfe:replicated-region id="NON_PARENT"/>
<!--
NOTE Regions with SubRegions cause an infinite loop to occur when calling hashCode on the parent Region's
BeanDefinition, which is the subject of JIRA issue SGF-178 (https://jira.springsource.org/browse/SGF-178).
-->
<gfe:replicated-region id="PARENT">
<gfe:replicated-region name="CHILD"/>
</gfe:replicated-region>
</beans>