DATAGEODE-318 - Add ClientCacheFactory implementation of the CacheResolver interface capable of resolving a ClientCache instance.

This commit is contained in:
John Blum
2020-03-27 17:54:28 -07:00
parent e5c9606bbd
commit af810c07fb
2 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
/*
* Copyright 2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.gemfire.client.support;
import org.apache.geode.cache.client.ClientCache;
import org.apache.geode.cache.client.ClientCacheFactory;
import org.springframework.data.gemfire.CacheResolver;
import org.springframework.data.gemfire.support.AbstractCachingCacheResolver;
/**
* Cacheable {@link CacheResolver} implementation resolving a {@link ClientCache}
* using the {@link ClientCacheFactory} API.
*
* @author John Blum
* @see org.apache.geode.cache.client.ClientCache
* @see org.apache.geode.cache.client.ClientCacheFactory
* @see org.springframework.data.gemfire.CacheResolver
* @see org.springframework.data.gemfire.support.AbstractCachingCacheResolver
* @since 2.3.0.
*/
public class ClientCacheFactoryCacheResolver extends AbstractCachingCacheResolver<ClientCache> {
public static final ClientCacheFactoryCacheResolver INSTANCE = new ClientCacheFactoryCacheResolver();
@Override
protected ClientCache doResolve() {
return ClientCacheFactory.getAnyInstance();
}
}

View File

@@ -0,0 +1,77 @@
/*
* Copyright 2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.gemfire.client.support;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.apache.geode.cache.GemFireCache;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.gemfire.GemfireUtils;
import org.springframework.data.gemfire.config.annotation.ClientCacheApplication;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringRunner;
/**
* Integration Tests for {@link ClientCacheFactoryCacheResolver}.
*
* @author John Blum
* @see org.junit.Test
* @see org.mockito.Mockito
* @see org.apache.geode.cache.GemFireCache
* @see org.apache.geode.cache.client.ClientCache
* @see org.springframework.data.gemfire.client.support.ClientCacheFactoryCacheResolver
* @see org.springframework.data.gemfire.config.annotation.ClientCacheApplication
* @see org.springframework.test.context.ContextConfiguration
* @see org.springframework.test.context.junit4.SpringRunner
* @since 2.3.0
*/
@RunWith(SpringRunner.class)
@ContextConfiguration
@SuppressWarnings("unused")
public class ClientCacheFactoryCacheResolverIntegrationTests {
@Autowired
private GemFireCache clientCache;
@Before
public void setup() {
assertThat(this.clientCache).isNotNull();
assertThat(GemfireUtils.isClient(this.clientCache)).isTrue();
}
@Test
public void clientCacheFactoryCacheResolver() {
ClientCacheFactoryCacheResolver cacheResolver = spy(ClientCacheFactoryCacheResolver.INSTANCE);
assertThat(cacheResolver.resolve()).isSameAs(this.clientCache);
assertThat(cacheResolver.resolve()).isSameAs(this.clientCache);
verify(cacheResolver, times(1)).doResolve();
}
@ClientCacheApplication
static class TestConfiguration { }
}