| // 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. |
| |
| #include <time.h> |
| |
| #include <gtest/gtest.h> |
| #include "gandiva/precompiled/types.h" |
| |
| namespace gandiva { |
| |
| TEST(TestHash, TestHash32) { |
| gdv_int8 s8 = 0; |
| gdv_uint8 u8 = 0; |
| gdv_int16 s16 = 0; |
| gdv_uint16 u16 = 0; |
| gdv_int32 s32 = 0; |
| gdv_uint32 u32 = 0; |
| gdv_int64 s64 = 0; |
| gdv_uint64 u64 = 0; |
| gdv_float32 f32 = 0; |
| gdv_float64 f64 = 0; |
| |
| // hash of 0 should be non-zero (zero is the hash value for nulls). |
| gdv_int32 zero_hash = hash32(s8, 0); |
| EXPECT_NE(zero_hash, 0); |
| |
| // for a given value, all numeric types must have the same hash. |
| EXPECT_EQ(hash32(u8, 0), zero_hash); |
| EXPECT_EQ(hash32(s16, 0), zero_hash); |
| EXPECT_EQ(hash32(u16, 0), zero_hash); |
| EXPECT_EQ(hash32(s32, 0), zero_hash); |
| EXPECT_EQ(hash32(u32, 0), zero_hash); |
| EXPECT_EQ(hash32(static_cast<double>(s64), 0), zero_hash); |
| EXPECT_EQ(hash32(static_cast<double>(u64), 0), zero_hash); |
| EXPECT_EQ(hash32(f32, 0), zero_hash); |
| EXPECT_EQ(hash32(f64, 0), zero_hash); |
| |
| // hash must change with a change in seed. |
| EXPECT_NE(hash32(s8, 1), zero_hash); |
| |
| // for a given value and seed, all numeric types must have the same hash. |
| EXPECT_EQ(hash32(s8, 1), hash32(s16, 1)); |
| EXPECT_EQ(hash32(s8, 1), hash32(u32, 1)); |
| EXPECT_EQ(hash32(s8, 1), hash32(f32, 1)); |
| EXPECT_EQ(hash32(s8, 1), hash32(f64, 1)); |
| } |
| |
| TEST(TestHash, TestHash64) { |
| gdv_int8 s8 = 0; |
| gdv_uint8 u8 = 0; |
| gdv_int16 s16 = 0; |
| gdv_uint16 u16 = 0; |
| gdv_int32 s32 = 0; |
| gdv_uint32 u32 = 0; |
| gdv_int64 s64 = 0; |
| gdv_uint64 u64 = 0; |
| gdv_float32 f32 = 0; |
| gdv_float64 f64 = 0; |
| |
| // hash of 0 should be non-zero (zero is the hash value for nulls). |
| gdv_int64 zero_hash = hash64(s8, 0); |
| EXPECT_NE(zero_hash, 0); |
| EXPECT_NE(hash64(u8, 0), hash32(u8, 0)); |
| |
| // for a given value, all numeric types must have the same hash. |
| EXPECT_EQ(hash64(u8, 0), zero_hash); |
| EXPECT_EQ(hash64(s16, 0), zero_hash); |
| EXPECT_EQ(hash64(u16, 0), zero_hash); |
| EXPECT_EQ(hash64(s32, 0), zero_hash); |
| EXPECT_EQ(hash64(u32, 0), zero_hash); |
| EXPECT_EQ(hash64(static_cast<double>(s64), 0), zero_hash); |
| EXPECT_EQ(hash64(static_cast<double>(u64), 0), zero_hash); |
| EXPECT_EQ(hash64(f32, 0), zero_hash); |
| EXPECT_EQ(hash64(f64, 0), zero_hash); |
| |
| // hash must change with a change in seed. |
| EXPECT_NE(hash64(s8, 1), zero_hash); |
| |
| // for a given value and seed, all numeric types must have the same hash. |
| EXPECT_EQ(hash64(s8, 1), hash64(s16, 1)); |
| EXPECT_EQ(hash64(s8, 1), hash64(u32, 1)); |
| EXPECT_EQ(hash64(s8, 1), hash64(f32, 1)); |
| } |
| |
| TEST(TestHash, TestHashBuf) { |
| const char* buf = "hello"; |
| int buf_len = 5; |
| |
| // hash should be non-zero (zero is the hash value for nulls). |
| EXPECT_NE(hash32_buf((const gdv_uint8*)buf, buf_len, 0), 0); |
| EXPECT_NE(hash64_buf((const gdv_uint8*)buf, buf_len, 0), 0); |
| |
| // hash must change if the string is changed. |
| EXPECT_NE(hash32_buf((const gdv_uint8*)buf, buf_len, 0), |
| hash32_buf((const gdv_uint8*)buf, buf_len - 1, 0)); |
| |
| EXPECT_NE(hash64_buf((const gdv_uint8*)buf, buf_len, 0), |
| hash64_buf((const gdv_uint8*)buf, buf_len - 1, 0)); |
| |
| // hash must change if the seed is changed. |
| EXPECT_NE(hash32_buf((const gdv_uint8*)buf, buf_len, 0), |
| hash32_buf((const gdv_uint8*)buf, buf_len, 1)); |
| |
| EXPECT_NE(hash64_buf((const gdv_uint8*)buf, buf_len, 0), |
| hash64_buf((const gdv_uint8*)buf, buf_len, 1)); |
| } |
| |
| } // namespace gandiva |