TestRealType.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.type;

import com.facebook.presto.common.block.Block;
import com.facebook.presto.common.block.BlockBuilder;
import com.facebook.presto.common.block.IntArrayBlockBuilder;
import org.testng.annotations.Test;

import static com.facebook.presto.common.type.RealType.OLD_NAN_REAL;
import static com.facebook.presto.common.type.RealType.REAL;
import static java.lang.Float.floatToIntBits;
import static java.lang.Float.floatToRawIntBits;
import static java.lang.Float.intBitsToFloat;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotEquals;

public class TestRealType
        extends AbstractTestType
{
    public TestRealType()
    {
        super(REAL, Float.class, createTestBlock());
    }

    public static Block createTestBlock()
    {
        BlockBuilder blockBuilder = REAL.createBlockBuilder(null, 30);
        REAL.writeLong(blockBuilder, floatToRawIntBits(11.11F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(11.11F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(11.11F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(22.22F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(22.22F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(22.22F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(22.22F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(22.22F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(33.33F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(33.33F));
        REAL.writeLong(blockBuilder, floatToRawIntBits(44.44F));
        return blockBuilder.build();
    }

    @Override
    protected Object getGreaterValue(Object value)
    {
        int bits = ((Long) value).intValue();
        float greaterValue = intBitsToFloat(bits) + 0.1f;
        return Long.valueOf(floatToRawIntBits(greaterValue));
    }

    @Test
    public void testNaNHash()
    {
        BlockBuilder blockBuilder = new IntArrayBlockBuilder(null, 4);
        blockBuilder.writeInt(floatToIntBits(Float.NaN));
        blockBuilder.writeInt(floatToRawIntBits(Float.NaN));
        // the following two are the integer values of a float NaN
        blockBuilder.writeInt(-0x400000);
        blockBuilder.writeInt(0x7fc00000);

        assertEquals(REAL.hash(blockBuilder, 0), REAL.hash(blockBuilder, 1));
        assertEquals(REAL.hash(blockBuilder, 0), REAL.hash(blockBuilder, 2));
        assertEquals(REAL.hash(blockBuilder, 0), REAL.hash(blockBuilder, 3));
    }

    @Test
    public void testLegacyRealHash()
    {
        BlockBuilder blockBuilder = new IntArrayBlockBuilder(null, 4);
        blockBuilder.writeInt(floatToIntBits(Float.parseFloat("-0")));
        blockBuilder.writeInt(floatToIntBits(Float.parseFloat("0")));
        assertNotEquals(OLD_NAN_REAL.hash(blockBuilder, 0), OLD_NAN_REAL.hash(blockBuilder, 1));
    }

    @Test
    public void testRealHash()
    {
        BlockBuilder blockBuilder = new IntArrayBlockBuilder(null, 4);
        blockBuilder.writeInt(floatToIntBits(Float.parseFloat("-0")));
        blockBuilder.writeInt(floatToIntBits(Float.parseFloat("0")));
        assertEquals(REAL.hash(blockBuilder, 0), REAL.hash(blockBuilder, 1));
    }
}