com.gemstone.gemfire.internal.cache.persistence.soplog.ArraySerializedComparatorJUnitTest 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.persistence.soplog;
import java.io.IOException;
import java.nio.ByteBuffer;
import com.gemstone.gemfire.internal.cache.persistence.soplog.SortedReader.SerializedComparator;
public class ArraySerializedComparatorJUnitTest extends ComparisonTestCase {
protected ArraySerializedComparator comp;
public void testSearch() throws IOException {
byte[] k1 = comp.createCompositeKey(convert("aaaa"), convert(1), convert(true));
byte[] k2 = comp.createCompositeKey(convert("bbbb"), convert(2), convert(false));
byte[] k3 = comp.createCompositeKey(convert("bbbb"), convert(3), convert(true));
byte[] k4 = comp.createCompositeKey(convert("cccc"), convert(1), convert(false));
byte[] s1 = comp.createCompositeKey(convert("aaaa"),
new byte[] {SoplogToken.WILDCARD.toByte()}, new byte[] {SoplogToken.WILDCARD.toByte()});
byte[] s2 = comp.createCompositeKey(convert("bbbb"),
new byte[] {SoplogToken.WILDCARD.toByte()}, new byte[] {SoplogToken.WILDCARD.toByte()});
byte[] s3 = comp.createCompositeKey(new byte[] {SoplogToken.WILDCARD.toByte()}, convert(1),
new byte[] {SoplogToken.WILDCARD.toByte()});
compareAsIs(comp, k1, s1, Comparison.EQ);
compareAsIs(comp, k2, s1, Comparison.GT);
compareAsIs(comp, k1, s2, Comparison.LT);
compareAsIs(comp, k2, s2, Comparison.EQ);
compareAsIs(comp, k3, s2, Comparison.EQ);
compareAsIs(comp, k4, s2, Comparison.GT);
compareAsIs(comp, s3, k4, Comparison.EQ);
}
public void testCompositeKey() throws IOException {
byte[] k1 = comp.createCompositeKey(convert("aaaa"), convert(1), convert(true));
byte[] k2 = comp.createCompositeKey(convert("bbbb"), convert(2), convert(false));
byte[] k3 = comp.createCompositeKey(convert("bbbb"), convert(3), convert(true));
byte[] k4 = comp.createCompositeKey(convert("cccc"), convert(1), convert(false));
byte[] k5 = comp.createCompositeKey(convert(null), convert(1), convert(false));
byte[] k6 = comp.createCompositeKey(convert(null), convert(1), convert(true));
compareAsIs(comp, k1, k1, Comparison.EQ);
compareAsIs(comp, k1, k2, Comparison.LT);
compareAsIs(comp, k2, k1, Comparison.GT);
compareAsIs(comp, k2, k3, Comparison.LT);
compareAsIs(comp, k3, k4, Comparison.LT);
compareAsIs(comp, k4, k5, Comparison.LT);
compareAsIs(comp, k5, k1, Comparison.GT);
compareAsIs(comp, k5, k6, Comparison.LT);
}
public void testGetKey() throws Exception {
Object[] vals = new Object[] { "aaaa", 1, true };
byte[][] composite = new byte[][] { convert(vals[0]), convert(vals[1]), convert(vals[2]) };
ByteBuffer key = ByteBuffer.wrap(comp.createCompositeKey(composite));
for (int i = 0; i < 3; i++) {
ByteBuffer subkey = comp.getKey(key, i);
assertEquals(vals[i], recover(subkey.array(), subkey.arrayOffset(), subkey.remaining()));
}
}
public void setUp() {
comp = new ArraySerializedComparator();
comp.setComparators(new SerializedComparator[] {
new LexicographicalComparator(), // string
new LexicographicalComparator(), // int
new LexicographicalComparator() // boolean
});
}
}