blob: e158effc0232b55f120079613583bd814158f2cb [file] [log] [blame]
/*=========================================================================
* Copyright (c) 2010-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* one or more patents listed at http://www.pivotal.io/patents.
*=========================================================================
*/
package com.gemstone.gemfire.cache.snapshot;
import java.io.File;
import java.io.FilenameFilter;
import java.util.HashMap;
import java.util.Map;
import java.util.Random;
import org.junit.After;
import org.junit.Before;
import com.examples.snapshot.MyObject;
import com.gemstone.gemfire.cache.Cache;
import com.gemstone.gemfire.cache.CacheFactory;
import com.gemstone.gemfire.cache.DiskStore;
import com.gemstone.gemfire.cache.snapshot.RegionGenerator.SerializationType;
public class SnapshotTestCase {
protected File store;
protected File snaps;
protected Cache cache;
protected RegionGenerator rgen;
protected DiskStore ds;
@Before
public void setUp() throws Exception {
store = new File("store-" + Math.abs(new Random().nextInt()));
store.mkdir();
snaps = new File("snapshots-" + Math.abs(new Random().nextInt()));
snaps.mkdir();
rgen = new RegionGenerator();
CacheFactory cf = new CacheFactory()
.set("mcast-port", "0")
.set("log-level", "error");
cache = cf.create();
ds = cache.createDiskStoreFactory()
.setMaxOplogSize(1)
.setDiskDirs(new File[] { store })
.create("snapshotTest");
}
@After
public void tearDown() throws Exception {
cache.close();
deleteFiles(store);
deleteFiles(snaps);
}
public Map<Integer, MyObject> createExpected(SerializationType type) {
Map<Integer, MyObject> expected = new HashMap<Integer, MyObject>();
for (int i = 0; i < 1000; i++) {
expected.put(i, rgen.createData(type, i, "The number is " + i));
}
return expected;
}
public static void deleteFiles(File dir) {
File[] deletes = dir.listFiles(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
return true;
}
});
if (deletes != null) {
for (File f : deletes) {
f.delete();
}
}
dir.delete();
}
}