Search in sources :

Example 1 with TestMapStore

use of com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore in project hazelcast by hazelcast.

the class MapStoreWriteThroughTest method testOneMemberWriteThrough.

@Test(timeout = 120000)
public void testOneMemberWriteThrough() throws Exception {
    TestMapStore testMapStore = new TestMapStore(1, 1, 1);
    testMapStore.setLoadAllKeys(false);
    Config config = newConfig(testMapStore, 0);
    HazelcastInstance instance = createHazelcastInstance(config);
    Employee employee = new Employee("joe", 25, true, 100.00);
    Employee newEmployee = new Employee("ali", 26, true, 1000);
    testMapStore.insert("1", employee);
    testMapStore.insert("2", employee);
    testMapStore.insert("3", employee);
    testMapStore.insert("4", employee);
    testMapStore.insert("5", employee);
    testMapStore.insert("6", employee);
    testMapStore.insert("7", employee);
    IMap<String, Employee> map = instance.getMap("default");
    map.addIndex("name", false);
    assertEquals(0, map.size());
    assertEquals(employee, map.get("1"));
    assertEquals(employee, testMapStore.getStore().get("1"));
    assertEquals(1, map.size());
    assertEquals(employee, map.put("2", newEmployee));
    assertEquals(newEmployee, testMapStore.getStore().get("2"));
    assertEquals(2, map.size());
    map.remove("1");
    map.put("1", employee, 1, TimeUnit.SECONDS);
    map.put("1", employee);
    Thread.sleep(2000);
    assertEquals(employee, testMapStore.getStore().get("1"));
    assertEquals(employee, map.get("1"));
    map.evict("2");
    assertEquals(newEmployee, map.get("2"));
    assertEquals(employee, map.get("3"));
    assertEquals(employee, map.put("3", newEmployee));
    assertEquals(newEmployee, map.get("3"));
    assertEquals(employee, map.remove("4"));
    assertEquals(employee, map.get("5"));
    assertEquals(employee, map.remove("5"));
    assertEquals(employee, map.putIfAbsent("6", newEmployee));
    assertEquals(employee, map.get("6"));
    assertEquals(employee, testMapStore.getStore().get("6"));
    assertTrue(map.containsKey("7"));
    assertEquals(employee, map.get("7"));
    assertNull(map.get("8"));
    assertFalse(map.containsKey("8"));
    assertNull(map.putIfAbsent("8", employee));
    assertEquals(employee, map.get("8"));
    assertEquals(employee, testMapStore.getStore().get("8"));
}
Also used : HazelcastInstance(com.hazelcast.core.HazelcastInstance) Employee(com.hazelcast.query.SampleObjects.Employee) TestMapStore(com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore) MaxSizeConfig(com.hazelcast.config.MaxSizeConfig) MapConfig(com.hazelcast.config.MapConfig) Config(com.hazelcast.config.Config) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Example 2 with TestMapStore

use of com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore in project hazelcast by hazelcast.

the class MapStoreWriteThroughTest method testTwoMemberWriteThrough2.

@Test(timeout = 300000)
public void testTwoMemberWriteThrough2() throws Exception {
    int items = 1000;
    TestMapStore testMapStore = new TestMapStore(items, 0, 0);
    Config config = newConfig(testMapStore, 0);
    TestHazelcastInstanceFactory nodeFactory = createHazelcastInstanceFactory(3);
    HazelcastInstance h1 = nodeFactory.newHazelcastInstance(config);
    HazelcastInstance h2 = nodeFactory.newHazelcastInstance(config);
    IMap<Integer, String> map1 = h1.getMap("default");
    IMap<Integer, String> map2 = h2.getMap("default");
    for (int i = 0; i < items; i++) {
        map1.put(i, "value" + i);
    }
    assertTrue("store operations could not be done wisely ", testMapStore.latchStore.await(30, TimeUnit.SECONDS));
    assertEquals(items, testMapStore.getStore().size());
    assertEquals(items, map1.size());
    assertEquals(items, map2.size());
    testMapStore.assertAwait(10);
    // N put-load N put-store call and 1 loadAllKeys
    assertEquals(items * 2 + 1, testMapStore.callCount.get());
}
Also used : HazelcastInstance(com.hazelcast.core.HazelcastInstance) TestMapStore(com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore) MaxSizeConfig(com.hazelcast.config.MaxSizeConfig) MapConfig(com.hazelcast.config.MapConfig) Config(com.hazelcast.config.Config) TestHazelcastInstanceFactory(com.hazelcast.test.TestHazelcastInstanceFactory) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Example 3 with TestMapStore

use of com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore in project hazelcast by hazelcast.

the class MapStoreWriteThroughTest method testOneMemberWriteThroughWithIndex.

@Test(timeout = 120000)
public void testOneMemberWriteThroughWithIndex() throws Exception {
    TestMapStore testMapStore = new TestMapStore(1, 1, 1);
    testMapStore.setLoadAllKeys(false);
    Config config = newConfig(testMapStore, 0);
    TestHazelcastInstanceFactory nodeFactory = createHazelcastInstanceFactory(3);
    HazelcastInstance instance = nodeFactory.newHazelcastInstance(config);
    testMapStore.insert("1", "value1");
    IMap<String, String> map = instance.getMap("default");
    assertEquals(0, map.size());
    assertTrue(map.tryLock("1", 1, TimeUnit.SECONDS));
    assertEquals("value1", map.get("1"));
    map.unlock("1");
    assertEquals("value1", map.put("1", "value2"));
    assertEquals("value2", map.get("1"));
    assertEquals("value2", testMapStore.getStore().get("1"));
    assertEquals(1, map.size());
    assertTrue(map.evict("1"));
    assertEquals(0, map.size());
    assertEquals(1, testMapStore.getStore().size());
    assertEquals("value2", map.get("1"));
    assertEquals(1, map.size());
    map.remove("1");
    assertEquals(0, map.size());
    assertEquals(0, testMapStore.getStore().size());
    testMapStore.assertAwait(1);
    assertEquals(1, testMapStore.getInitCount());
    assertEquals("default", testMapStore.getMapName());
    assertEquals(TestUtil.getNode(instance), TestUtil.getNode(testMapStore.getHazelcastInstance()));
}
Also used : HazelcastInstance(com.hazelcast.core.HazelcastInstance) TestMapStore(com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore) MaxSizeConfig(com.hazelcast.config.MaxSizeConfig) MapConfig(com.hazelcast.config.MapConfig) Config(com.hazelcast.config.Config) TestHazelcastInstanceFactory(com.hazelcast.test.TestHazelcastInstanceFactory) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Example 4 with TestMapStore

use of com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore in project hazelcast by hazelcast.

the class MapStoreWriteBehindTest method testWriteBehindUpdateSameKey.

@Test(timeout = 120000)
public void testWriteBehindUpdateSameKey() throws Exception {
    final TestMapStore testMapStore = new TestMapStore(2, 0, 0);
    testMapStore.setLoadAllKeys(false);
    Config config = newConfig(testMapStore, 5);
    TestHazelcastInstanceFactory nodeFactory = createHazelcastInstanceFactory(2);
    HazelcastInstance instance = nodeFactory.newHazelcastInstance(config);
    nodeFactory.newHazelcastInstance(config);
    IMap<Object, Object> map = instance.getMap("map");
    map.put("key", "value");
    Thread.sleep(2000);
    map.put("key", "value2");
    assertTrueEventually(new AssertTask() {

        @Override
        public void run() throws Exception {
            assertEquals("value2", testMapStore.getStore().get("key"));
        }
    });
}
Also used : HazelcastInstance(com.hazelcast.core.HazelcastInstance) TestMapStore(com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore) MapConfig(com.hazelcast.config.MapConfig) MapStoreConfig(com.hazelcast.config.MapStoreConfig) Config(com.hazelcast.config.Config) AssertTask(com.hazelcast.test.AssertTask) TestHazelcastInstanceFactory(com.hazelcast.test.TestHazelcastInstanceFactory) QuickTest(com.hazelcast.test.annotation.QuickTest) NightlyTest(com.hazelcast.test.annotation.NightlyTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Example 5 with TestMapStore

use of com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore in project hazelcast by hazelcast.

the class MapStoreWriteBehindTest method testOneMemberWriteBehind.

@Test(timeout = 120000)
public void testOneMemberWriteBehind() throws Exception {
    MapStoreTest.TestMapStore testMapStore = new TestMapStore(1, 1, 1);
    testMapStore.setLoadAllKeys(false);
    Config config = newConfig(testMapStore, 5);
    TestHazelcastInstanceFactory nodeFactory = createHazelcastInstanceFactory(3);
    HazelcastInstance instance = nodeFactory.newHazelcastInstance(config);
    testMapStore.insert("1", "value1");
    IMap<String, String> map = instance.getMap("default");
    assertEquals(0, map.size());
    assertEquals("value1", map.get("1"));
    assertEquals("value1", map.put("1", "value2"));
    assertEquals("value2", map.get("1"));
    // store should have the old data as we will write-behind
    assertEquals("value1", testMapStore.getStore().get("1"));
    assertEquals(1, map.size());
    map.flush();
    assertTrue(map.evict("1"));
    assertEquals("value2", testMapStore.getStore().get("1"));
    assertEquals(0, map.size());
    assertEquals(1, testMapStore.getStore().size());
    assertEquals("value2", map.get("1"));
    assertEquals(1, map.size());
    map.remove("1");
    // store should have the old data as we will delete-behind
    assertEquals(1, testMapStore.getStore().size());
    assertEquals(0, map.size());
    testMapStore.assertAwait(100);
    assertEquals(0, testMapStore.getStore().size());
}
Also used : TestMapStore(com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore) HazelcastInstance(com.hazelcast.core.HazelcastInstance) TestMapStore(com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore) MapConfig(com.hazelcast.config.MapConfig) MapStoreConfig(com.hazelcast.config.MapStoreConfig) Config(com.hazelcast.config.Config) TestHazelcastInstanceFactory(com.hazelcast.test.TestHazelcastInstanceFactory) QuickTest(com.hazelcast.test.annotation.QuickTest) NightlyTest(com.hazelcast.test.annotation.NightlyTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Aggregations

Config (com.hazelcast.config.Config)10 MapConfig (com.hazelcast.config.MapConfig)10 HazelcastInstance (com.hazelcast.core.HazelcastInstance)10 TestMapStore (com.hazelcast.map.impl.mapstore.MapStoreTest.TestMapStore)10 ParallelTest (com.hazelcast.test.annotation.ParallelTest)10 QuickTest (com.hazelcast.test.annotation.QuickTest)10 Test (org.junit.Test)10 TestHazelcastInstanceFactory (com.hazelcast.test.TestHazelcastInstanceFactory)8 MapStoreConfig (com.hazelcast.config.MapStoreConfig)5 MaxSizeConfig (com.hazelcast.config.MaxSizeConfig)5 NightlyTest (com.hazelcast.test.annotation.NightlyTest)5 Employee (com.hazelcast.query.SampleObjects.Employee)3 AssertTask (com.hazelcast.test.AssertTask)2 EntryAdapter (com.hazelcast.core.EntryAdapter)1 EntryEvent (com.hazelcast.core.EntryEvent)1 CountDownLatch (java.util.concurrent.CountDownLatch)1