blob: 57f5b5cb2a785d8df6ccd830cd975a2f06061e46 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.datasketches.tuple;
import static org.apache.datasketches.Util.getResourceBytes;
import org.apache.datasketches.memory.Memory;
import org.testng.Assert;
import org.testng.annotations.Test;
@SuppressWarnings("javadoc")
public class SerialVersion3Test {
@Test
public void version2Compatibility() throws Exception {
byte[] bytes = getResourceBytes("TupleWithTestIntegerSummary4kTrimmedSerVer2.sk");
Sketch<IntegerSummary> sketch1 = Sketches.heapifySketch(Memory.wrap(bytes),
new IntegerSummaryDeserializer());
// construct the same way
final int lgK = 12;
final int K = 1 << lgK;
final UpdatableSketchBuilder<Integer, IntegerSummary> builder =
new UpdatableSketchBuilder<>(new IntegerSummaryFactory());
final UpdatableSketch<Integer, IntegerSummary> updatableSketch = builder.build();
for (int i = 0; i < 2 * K; i++) {
updatableSketch.update(i, 1);
}
updatableSketch.trim();
Sketch<IntegerSummary> sketch2 = updatableSketch.compact();
Assert.assertEquals(sketch1.getRetainedEntries(), sketch2.getRetainedEntries());
Assert.assertEquals(sketch1.getThetaLong(), sketch2.getThetaLong());
Assert.assertEquals(sketch1.isEmpty(), sketch2.isEmpty());
Assert.assertEquals(sketch1.isEstimationMode(), sketch2.isEstimationMode());
}
@Test
public void emptyFromCpp() {
byte[] bytes = getResourceBytes("tuple-int-empty-cpp.sk");
Sketch<IntegerSummary> sketch = Sketches.heapifySketch(Memory.wrap(bytes),
new IntegerSummaryDeserializer());
Assert.assertTrue(sketch.isEmpty());
Assert.assertFalse(sketch.isEstimationMode());
Assert.assertEquals(sketch.getRetainedEntries(), 0);
Assert.assertEquals(sketch.getThetaLong(), Long.MAX_VALUE);
}
@Test
public void singleItemFromCpp() {
byte[] bytes = getResourceBytes("tuple-int-single-cpp.sk");
Sketch<IntegerSummary> sketch = Sketches.heapifySketch(Memory.wrap(bytes),
new IntegerSummaryDeserializer());
Assert.assertFalse(sketch.isEmpty());
Assert.assertFalse(sketch.isEstimationMode());
Assert.assertEquals(sketch.getRetainedEntries(), 1);
Assert.assertEquals(sketch.getThetaLong(), Long.MAX_VALUE);
}
@Test
public void exactModeFromCpp() {
byte[] bytes = getResourceBytes("tuple-int-two-cpp.sk");
Sketch<IntegerSummary> sketch = Sketches.heapifySketch(Memory.wrap(bytes),
new IntegerSummaryDeserializer());
Assert.assertFalse(sketch.isEmpty());
Assert.assertFalse(sketch.isEstimationMode());
Assert.assertEquals(sketch.getRetainedEntries(), 2);
Assert.assertEquals(sketch.getThetaLong(), Long.MAX_VALUE);
}
@Test
public void estimationModeFromCpp() {
byte[] bytes = getResourceBytes("tuple-int-est-trim-cpp.sk");
Sketch<IntegerSummary> sketch = Sketches.heapifySketch(Memory.wrap(bytes),
new IntegerSummaryDeserializer());
Assert.assertFalse(sketch.isEmpty());
Assert.assertTrue(sketch.isEstimationMode());
Assert.assertEquals(sketch.getRetainedEntries(), 4096);
Assert.assertTrue(sketch.getThetaLong() < Long.MAX_VALUE);
}
}