/clustering/infinispan/extension/src/test/java/org/jboss/as/clustering/infinispan/DefaultCacheContainerTestCase.java
https://github.com/fharms/wildfly · Java · 344 lines · 226 code · 93 blank · 25 comment · 0 complexity · 10231f3c428f53363b2679c97114c2c4 MD5 · raw file
- /*
- * JBoss, Home of Professional Open Source.
- * Copyright 2011, Red Hat, Inc., and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
- package org.jboss.as.clustering.infinispan;
- import static org.junit.Assert.*;
- import static org.mockito.Mockito.*;
- import java.util.Collections;
- import java.util.List;
- import java.util.Set;
- import org.infinispan.AdvancedCache;
- import org.infinispan.Cache;
- import org.infinispan.configuration.cache.Configuration;
- import org.infinispan.configuration.cache.ConfigurationBuilder;
- import org.infinispan.configuration.global.GlobalConfiguration;
- import org.infinispan.configuration.global.GlobalConfigurationBuilder;
- import org.infinispan.lifecycle.ComponentStatus;
- import org.infinispan.manager.EmbeddedCacheManager;
- import org.infinispan.remoting.transport.Address;
- import org.junit.After;
- import org.junit.Test;
- import org.wildfly.clustering.infinispan.spi.CacheContainer;
- import org.wildfly.clustering.service.SubGroupServiceNameFactory;
- /**
- * Unit test for {@link DefaultCacheContainer}.
- * @author Paul Ferraro
- */
- public class DefaultCacheContainerTestCase {
- private static final String NAME = "name";
- private static final String DEFAULT_CACHE = "default-cache";
- private final BatcherFactory batcherFactory = mock(BatcherFactory.class);
- private final EmbeddedCacheManager manager = mock(EmbeddedCacheManager.class);
- private final CacheContainer subject = new DefaultCacheContainer("name", this.manager, DEFAULT_CACHE, this.batcherFactory);
- @After
- public void cleanup() {
- reset(this.manager);
- }
- @Test
- public void getName() {
- assertSame(NAME, this.subject.getName());
- }
- @Test
- public void getDefaultCacheName() {
- assertSame(DEFAULT_CACHE, this.subject.getDefaultCacheName());
- }
- @Test
- public void getDefaultCache() {
- AdvancedCache<Object, Object> cache = mock(AdvancedCache.class);
- when(this.manager.<Object, Object>getCache(DEFAULT_CACHE, DEFAULT_CACHE)).thenReturn(cache);
- when(cache.getAdvancedCache()).thenReturn(cache);
- Cache<Object, Object> result = this.subject.getCache();
- assertNotSame(cache, result);
- assertEquals(result, cache);
- assertSame(this.subject, result.getCacheManager());
- }
- @Test
- public void getCache() {
- AdvancedCache<Object, Object> defaultCache = mock(AdvancedCache.class);
- AdvancedCache<Object, Object> otherCache = mock(AdvancedCache.class);
- when(this.manager.<Object, Object>getCache(DEFAULT_CACHE, DEFAULT_CACHE)).thenReturn(defaultCache);
- when(this.manager.<Object, Object>getCache("other", "other")).thenReturn(otherCache);
- when(defaultCache.getAdvancedCache()).thenReturn(defaultCache);
- when(otherCache.getAdvancedCache()).thenReturn(otherCache);
- Cache<Object, Object> result = this.subject.getCache("other");
- assertNotSame(otherCache, result);
- assertEquals(result, otherCache);
- assertSame(this.subject, result.getCacheManager());
- result = this.subject.getCache(SubGroupServiceNameFactory.DEFAULT_SUB_GROUP);
- assertNotSame(defaultCache, result);
- assertEquals(result, defaultCache);
- assertSame(this.subject, result.getCacheManager());
- result = this.subject.getCache(null);
- assertNotSame(defaultCache, result);
- assertEquals(result, defaultCache);
- assertSame(this.subject, result.getCacheManager());
- }
- @Test
- public void getCacheFromTemplate() {
- AdvancedCache<Object, Object> defaultCache = mock(AdvancedCache.class);
- AdvancedCache<Object, Object> otherCache = mock(AdvancedCache.class);
- String templateName = "template";
- when(this.manager.<Object, Object>getCache(DEFAULT_CACHE, templateName)).thenReturn(defaultCache);
- when(this.manager.<Object, Object>getCache("other", templateName)).thenReturn(otherCache);
- when(defaultCache.getAdvancedCache()).thenReturn(defaultCache);
- when(otherCache.getAdvancedCache()).thenReturn(otherCache);
- Cache<Object, Object> result = this.subject.getCache("other", templateName);
- assertNotSame(otherCache, result);
- assertEquals(result, otherCache);
- assertSame(this.subject, result.getCacheManager());
- result = this.subject.getCache(SubGroupServiceNameFactory.DEFAULT_SUB_GROUP, templateName);
- assertNotSame(defaultCache, result);
- assertEquals(result, defaultCache);
- assertSame(this.subject, result.getCacheManager());
- result = this.subject.getCache(null, templateName);
- assertNotSame(defaultCache, result);
- assertEquals(result, defaultCache);
- assertSame(this.subject, result.getCacheManager());
- }
- @Test
- public void start() {
- this.subject.start();
- verify(this.manager, never()).start();
- }
- @Test
- public void stop() {
- this.subject.stop();
- verify(this.manager, never()).stop();
- }
- @Test
- public void addListener() {
- Object listener = new Object();
- this.subject.addListener(listener);
- verify(this.manager).addListener(listener);
- }
- @Test
- public void removeListener() {
- Object listener = new Object();
- this.subject.removeListener(listener);
- verify(this.manager).removeListener(listener);
- }
- @Test
- public void getListeners() {
- Set<Object> expected = Collections.singleton(new Object());
- when(this.manager.getListeners()).thenReturn(expected);
- Set<Object> result = this.subject.getListeners();
- assertSame(expected, result);
- }
- @Test
- public void defineConfiguration() {
- ConfigurationBuilder builder = new ConfigurationBuilder();
- Configuration defaultConfig = builder.build();
- Configuration otherConfig = builder.build();
-
- when(this.manager.defineConfiguration(DEFAULT_CACHE, defaultConfig)).thenReturn(defaultConfig);
- when(this.manager.defineConfiguration("other", otherConfig)).thenReturn(otherConfig);
- Configuration result = this.subject.defineConfiguration(SubGroupServiceNameFactory.DEFAULT_SUB_GROUP, defaultConfig);
- assertSame(defaultConfig, result);
- result = this.subject.defineConfiguration(null, otherConfig);
- assertSame(defaultConfig, result);
- result = this.subject.defineConfiguration("other", otherConfig);
- assertSame(otherConfig, result);
- }
- @Test
- public void undefineConfiguration() {
- this.subject.undefineConfiguration("test");
- verify(this.manager).undefineConfiguration("test");
- }
- @Test
- public void getClusterName() {
- String expected = "cluster";
- when(this.manager.getClusterName()).thenReturn(expected);
- String result = this.subject.getClusterName();
- assertSame(expected, result);
- }
- @Test
- public void getMembers() {
- List<Address> expected = Collections.singletonList(mock(Address.class));
- when(this.manager.getMembers()).thenReturn(expected);
- List<Address> result = this.subject.getMembers();
- assertSame(expected, result);
- }
- @Test
- public void getAddress() {
- Address expected = mock(Address.class);
- when(this.manager.getAddress()).thenReturn(expected);
- Address result = this.subject.getAddress();
- assertSame(expected, result);
- }
- @Test
- public void getCoordinator() {
- Address expected = mock(Address.class);
- when(this.manager.getCoordinator()).thenReturn(expected);
- Address result = this.subject.getCoordinator();
- assertSame(expected, result);
- }
- @Test
- public void getStatus() {
- ComponentStatus expected = ComponentStatus.INITIALIZING;
- when(this.manager.getStatus()).thenReturn(expected);
- ComponentStatus result = this.subject.getStatus();
- assertSame(expected, result);
- }
- @Test
- public void getCacheManagerConfiguration() {
- GlobalConfiguration global = new GlobalConfigurationBuilder().build();
-
- when(this.manager.getCacheManagerConfiguration()).thenReturn(global);
-
- GlobalConfiguration result = this.subject.getCacheManagerConfiguration();
-
- assertSame(global, result);
- }
- @Test
- public void getDefaultCacheConfiguration() {
- Configuration config = new ConfigurationBuilder().build();
-
- when(this.manager.getCacheConfiguration(DEFAULT_CACHE)).thenReturn(config);
-
- Configuration result = this.subject.getDefaultCacheConfiguration();
-
- assertSame(config, result);
- }
- @Test
- public void getCacheConfiguration() {
- Configuration config = new ConfigurationBuilder().build();
-
- when(this.manager.getCacheConfiguration("cache")).thenReturn(config);
-
- Configuration result = this.subject.getCacheConfiguration("cache");
-
- assertSame(config, result);
- }
- @Test
- public void getCacheNames() {
- Set<String> caches = Collections.singleton("other");
- when(this.manager.getCacheNames()).thenReturn(caches);
- Set<String> result = this.subject.getCacheNames();
- assertEquals(1, result.size());
- assertTrue(result.contains("other"));
- }
- @Test
- public void isRunning() {
- when(this.manager.isRunning("other")).thenReturn(false);
- when(this.manager.isRunning(DEFAULT_CACHE)).thenReturn(true);
- boolean result = this.subject.isRunning("other");
- assertFalse(result);
- result = this.subject.isRunning(SubGroupServiceNameFactory.DEFAULT_SUB_GROUP);
- assertTrue(result);
- result = this.subject.isRunning(null);
- assertTrue(result);
- }
- @Test
- public void isDefaultRunning() {
- when(this.manager.isRunning(DEFAULT_CACHE)).thenReturn(true);
- boolean result = this.subject.isDefaultRunning();
- assertTrue(result);
- }
-
- @Test
- public void startCaches() {
- when(this.manager.startCaches("other", DEFAULT_CACHE)).thenReturn(this.manager);
- EmbeddedCacheManager result = this.subject.startCaches("other", SubGroupServiceNameFactory.DEFAULT_SUB_GROUP);
- assertSame(this.subject, result);
- }
- }