com.gemstone.gemfire.internal.cache.OplogEntryIdMapJUnitTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemfire-junit Show documentation
Show all versions of gemfire-junit Show documentation
SnappyData store based off Pivotal GemFireXD
/*
* Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
*
* 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
*
* http://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. See accompanying
* LICENSE file.
*/
package com.gemstone.gemfire.internal.cache;
import java.io.*;
import java.util.*;
import com.gemstone.gemfire.cache.*;
import com.gemstone.gemfire.internal.Assert;
import com.gemstone.gemfire.distributed.*;
import com.gemstone.gemfire.internal.cache.Oplog.OplogEntryIdMap;
import junit.framework.TestCase;
/**
* Tests DiskStoreImpl.OplogEntryIdMap
*
* @author darrel
*
*/
public class OplogEntryIdMapJUnitTest extends TestCase
{
public OplogEntryIdMapJUnitTest(String arg0) {
super(arg0);
}
public void testBasics() {
OplogEntryIdMap m = new OplogEntryIdMap();
for (long i=1; i <= 777777; i++) {
assertEquals(null, m.get(i));
}
for (long i=1; i <= 777777; i++) {
m.put(i, new Long(i));
}
for (long i=1; i <= 777777; i++) {
assertEquals(new Long(i), m.get(i));
}
assertEquals(777777, m.size());
try {
m.put(DiskStoreImpl.INVALID_ID, new Object());
fail("expected IllegalArgumentException");
} catch (IllegalArgumentException expected) {
}
assertEquals(null, m.get(0));
assertEquals(777777, m.size());
assertEquals(null, m.get(0x00000000FFFFFFFFL));
m.put(0x00000000FFFFFFFFL, new Long(0x00000000FFFFFFFFL));
assertEquals(new Long(0x00000000FFFFFFFFL), m.get(0x00000000FFFFFFFFL));
assertEquals(777777+1, m.size());
for (long i=0x00000000FFFFFFFFL+1; i <= 0x00000000FFFFFFFFL+777777; i++) {
assertEquals(null, m.get(i));
}
for (long i=0x00000000FFFFFFFFL+1; i <= 0x00000000FFFFFFFFL+777777; i++) {
m.put(i, new Long(i));
}
for (long i=0x00000000FFFFFFFFL+1; i <= 0x00000000FFFFFFFFL+777777; i++) {
assertEquals(new Long(i), m.get(i));
}
assertEquals(777777+1+777777, m.size());
for (long i=1; i < 777777; i++) {
assertEquals(new Long(i), m.get(i));
}
assertEquals(null, m.get(Long.MAX_VALUE));
m.put(Long.MAX_VALUE, new Long(Long.MAX_VALUE));
assertEquals(new Long(Long.MAX_VALUE), m.get(Long.MAX_VALUE));
assertEquals(777777+1+777777+1, m.size());
assertEquals(null, m.get(Long.MIN_VALUE));
m.put(Long.MIN_VALUE, new Long(Long.MIN_VALUE));
assertEquals(new Long(Long.MIN_VALUE), m.get(Long.MIN_VALUE));
assertEquals(777777+1+777777+1+1, m.size());
int count = 0;
for (OplogEntryIdMap.Iterator it = m.iterator(); it.hasNext();) {
count++;
it.advance();
it.key();
it.value();
}
assertEquals(777777+1+777777+1+1, count);
}
}