SGF-416 - Add additional integration test testing the interaction between a client and server when Pool configuration is used to only initialize the DEFAULT Pool used by the PROXY client Region.

This commit is contained in:
John Blum
2016-03-28 14:02:34 -07:00
parent a0c5ecad62
commit 22dc8a6017
12 changed files with 248 additions and 85 deletions

View File

@@ -0,0 +1,18 @@
<?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:client-cache pool-name="serverConnectionPool"/>
<gfe:pool id="serverConnectionPool">
<gfe:server host="localhost" port="36763"/>
</gfe:pool>
<gfe:client-region id="Factorials" shortcut="PROXY"/>
</beans>

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:gfe="http://www.springframework.org/schema/gemfire"
xmlns:util="http://www.springframework.org/schema/util"
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
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
">
<util:properties id="gemfireProperties">
<prop key="name">ClientCachePoolTestsServer</prop>
<prop key="mcast-port">0</prop>
<prop key="log-level">warning</prop>
</util:properties>
<gfe:cache properties-ref="gemfireProperties"/>
<gfe:cache-server auto-startup="true" bind-address="localhost" port="36763" host-name-for-clients="localhost"
max-connections="1"/>
<gfe:replicated-region id="Factorials" persistent="false" key-constraint="java.lang.Long"
value-constraint="java.lang.Long">
<gfe:cache-loader>
<bean class="org.springframework.data.gemfire.client.ClientCachePoolTests$FactorialsClassLoader"/>
</gfe:cache-loader>
</gfe:replicated-region>
</beans>