/apis/byon/src/test/java/org/jclouds/byon/config/CacheNodeStoreModuleTest.java

http://github.com/jclouds/jclouds · Java · 163 lines · 114 code · 32 blank · 17 comment · 3 complexity · 8cdf280f99173321063d0a66894dc92b MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.jclouds.byon.config;
  18. import static org.testng.Assert.assertEquals;
  19. import static org.testng.Assert.fail;
  20. import java.io.IOException;
  21. import java.util.Map;
  22. import org.jclouds.byon.Node;
  23. import org.jclouds.location.Provider;
  24. import org.testng.annotations.DataProvider;
  25. import org.testng.annotations.Test;
  26. import com.google.common.base.Functions;
  27. import com.google.common.cache.CacheBuilder;
  28. import com.google.common.cache.CacheLoader;
  29. import com.google.common.cache.LoadingCache;
  30. import com.google.common.collect.Maps;
  31. import com.google.common.io.ByteSource;
  32. import com.google.common.util.concurrent.UncheckedExecutionException;
  33. import com.google.inject.AbstractModule;
  34. import com.google.inject.Guice;
  35. import com.google.inject.Injector;
  36. import com.google.inject.Key;
  37. import com.google.inject.TypeLiteral;
  38. import com.google.inject.util.Providers;
  39. @Test(groups = "unit", singleThreaded = true, testName = "CacheNodeStoreModuleTest")
  40. public class CacheNodeStoreModuleTest {
  41. @DataProvider(name = "names")
  42. public Object[][] createData() {
  43. return new Object[][] { { "instance1", "bear" }, { "instance2", "apple" }, { "instance2", "francis" },
  44. { "instance4", "robot" } };
  45. }
  46. public void testProvidedMapWithValue() throws IOException {
  47. Map<String, Node> map = Maps.newConcurrentMap();
  48. map.put("test", Node.builder().id("instance1").name("instancename").build());
  49. checkConsistent(map, getStore(createInjectorWithProvidedMap(map)), "test", "instance1", "instancename");
  50. checkConsistent(map, getStore(createInjectorWithProvidedMap(map)), "test", "instance1", "instancename");
  51. remove(map, getStore(createInjectorWithProvidedMap(map)), "test");
  52. }
  53. public void testProvidedConsistentAcrossRepeatedWrites() throws IOException {
  54. Map<String, Node> map = Maps.newConcurrentMap();
  55. Injector injector = createInjectorWithProvidedMap(map);
  56. assertEquals(injector.getInstance(Key.get(new TypeLiteral<LoadingCache<String, Node>>() {
  57. })).asMap(), map);
  58. LoadingCache<String, Node> store = getStore(injector);
  59. for (int i = 0; i < 10; i++)
  60. check(map, store, "test" + i, "instance1" + i, "instancename" + i);
  61. }
  62. public void testProvidedConsistentAcrossMultipleInjectors() throws IOException {
  63. Map<String, Node> map = Maps.newConcurrentMap();
  64. put(map, getStore(createInjectorWithProvidedMap(map)), "test", "instance1", "instancename");
  65. checkConsistent(map, getStore(createInjectorWithProvidedMap(map)), "test", "instance1", "instancename");
  66. checkConsistent(map, getStore(createInjectorWithProvidedMap(map)), "test", "instance1", "instancename");
  67. remove(map, getStore(createInjectorWithProvidedMap(map)), "test");
  68. }
  69. public void testProvidedCacheConsistentAcrossMultipleInjectors() throws IOException {
  70. Map<String, Node> map = Maps.newConcurrentMap();
  71. LoadingCache<String, Node> cache = CacheBuilder.newBuilder().build(CacheLoader.from(Functions.forMap(map)));
  72. put(map, getStore(createInjectorWithProvidedCache(cache)), "test", "instance1", "instancename");
  73. checkConsistent(map, getStore(createInjectorWithProvidedCache(cache)), "test", "instance1", "instancename");
  74. checkConsistent(map, getStore(createInjectorWithProvidedCache(cache)), "test", "instance1", "instancename");
  75. remove(map, getStore(createInjectorWithProvidedCache(cache)), "test");
  76. }
  77. private LoadingCache<String, Node> getStore(Injector injector) {
  78. return injector.getInstance(Key.get(new TypeLiteral<LoadingCache<String, Node>>() {
  79. }));
  80. }
  81. private Injector createInjectorWithProvidedMap(Map<String, Node> map) {
  82. return Guice.createInjector(new CacheNodeStoreModule(map), new AbstractModule() {
  83. @Override
  84. public void configure() {
  85. bind(ByteSource.class).annotatedWith(Provider.class).toProvider(Providers.<ByteSource>of(null));
  86. }
  87. });
  88. }
  89. private Injector createInjectorWithProvidedCache(LoadingCache<String, Node> cache) {
  90. return Guice.createInjector(new CacheNodeStoreModule(cache), new AbstractModule() {
  91. @Override
  92. public void configure() {
  93. bind(ByteSource.class).annotatedWith(Provider.class).toProvider(Providers.<ByteSource>of(null));
  94. }
  95. });
  96. }
  97. private void check(Map<String, Node> map, LoadingCache<String, Node> store, String key, String id, String name)
  98. throws IOException {
  99. put(map, store, key, id, name);
  100. checkConsistent(map, store, key, id, name);
  101. remove(map, store, key);
  102. }
  103. private void remove(Map<String, Node> map, LoadingCache<String, Node> store, String key) {
  104. store.invalidate(key);
  105. assertEquals(store.size(), 0);
  106. map.remove(key);
  107. assertEquals(map.size(), 0);
  108. try {
  109. assertEquals(store.getUnchecked(key), null);
  110. fail("should not work as null is invalid");
  111. } catch (UncheckedExecutionException e) {
  112. }
  113. assertEquals(map.get(key), null);
  114. }
  115. private void checkConsistent(Map<String, Node> map, LoadingCache<String, Node> store, String key, String id, String name)
  116. throws IOException {
  117. assertEquals(map.size(), 1);
  118. if (store.size() == 0)
  119. store.getUnchecked(key);
  120. assertEquals(store.size(), 1);
  121. // checkRepeatedRead
  122. assertEquals(store.getUnchecked(key), Node.builder().id(id).name(name).build());
  123. assertEquals(store.getUnchecked(key), Node.builder().id(id).name(name).build());
  124. }
  125. private void put(Map<String, Node> map, LoadingCache<String, Node> store, String key, String id, String name) {
  126. assertEquals(store.size(), 0);
  127. assertEquals(map.size(), 0);
  128. map.put(key, Node.builder().id(id).name(name).build());
  129. store.getUnchecked(key);
  130. }
  131. }