TestDoubleStatisticsBuilder.java
/*
* 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.
*/
package com.facebook.presto.orc.metadata.statistics;
import com.google.common.collect.ImmutableList;
import org.testng.annotations.Test;
import java.util.List;
import java.util.stream.LongStream;
import java.util.stream.Stream;
import static com.facebook.presto.orc.metadata.statistics.AbstractStatisticsBuilderTest.StatisticsType.DOUBLE;
import static com.facebook.presto.orc.metadata.statistics.DoubleStatistics.DOUBLE_VALUE_BYTES;
import static com.google.common.collect.ImmutableList.toImmutableList;
import static java.lang.Double.NEGATIVE_INFINITY;
import static java.lang.Double.NaN;
import static java.lang.Double.POSITIVE_INFINITY;
public class TestDoubleStatisticsBuilder
extends AbstractStatisticsBuilderTest<DoubleStatisticsBuilder, Double>
{
private static final List<Long> ZERO_TO_42 = LongStream.rangeClosed(0, 42).boxed().collect(toImmutableList());
public TestDoubleStatisticsBuilder()
{
super(DOUBLE, DoubleStatisticsBuilder::new, DoubleStatisticsBuilder::addValue);
}
@Test
public void testMinMaxValues()
{
assertMinMaxValues(0.0, 0.0);
assertMinMaxValues(42.42, 42.42);
assertMinMaxValues(NEGATIVE_INFINITY, NEGATIVE_INFINITY);
assertMinMaxValues(POSITIVE_INFINITY, POSITIVE_INFINITY);
assertMinMaxValues(0.0, 42.42);
assertMinMaxValues(42.42, 42.42);
assertMinMaxValues(NEGATIVE_INFINITY, 42.42);
assertMinMaxValues(42.42, POSITIVE_INFINITY);
assertMinMaxValues(NEGATIVE_INFINITY, POSITIVE_INFINITY);
assertValues(0.0, 88.88, toDoubleList(0.0, 88.88, ZERO_TO_42));
assertValues(-88.88, 0.0, toDoubleList(-88.88, 0.0, ZERO_TO_42));
assertValues(-44.44, 44.44, toDoubleList(-44.44, 44.44, ZERO_TO_42));
}
private static List<Double> toDoubleList(Double minValue, Double maxValue, List<Long> values)
{
return values.stream()
.flatMap(value -> Stream.of(maxValue - value, minValue + value))
.collect(toImmutableList());
}
@Test
public void testNanValue()
{
DoubleStatisticsBuilder statisticsBuilder = new DoubleStatisticsBuilder();
statisticsBuilder.addValue(NaN);
assertNoColumnStatistics(statisticsBuilder.buildColumnStatistics(), 1);
statisticsBuilder.addValue(NaN);
assertNoColumnStatistics(statisticsBuilder.buildColumnStatistics(), 2);
statisticsBuilder.addValue(42.42);
assertNoColumnStatistics(statisticsBuilder.buildColumnStatistics(), 3);
statisticsBuilder = new DoubleStatisticsBuilder();
statisticsBuilder.addValue(42.42);
assertColumnStatistics(statisticsBuilder.buildColumnStatistics(), 1, 42.42, 42.42);
statisticsBuilder.addValue(NaN);
assertNoColumnStatistics(statisticsBuilder.buildColumnStatistics(), 2);
statisticsBuilder.addValue(42.42);
assertNoColumnStatistics(statisticsBuilder.buildColumnStatistics(), 3);
}
@Test
public void testTotalValueBytes()
{
assertTotalValueBytes(0L, ImmutableList.of());
assertTotalValueBytes(DOUBLE_VALUE_BYTES, ImmutableList.of(42D));
assertTotalValueBytes(DOUBLE_VALUE_BYTES, ImmutableList.of(0D));
assertTotalValueBytes(4 * DOUBLE_VALUE_BYTES, ImmutableList.of(0D, 42D, 42D, 43D));
}
}