2020-10-21 16:27:25 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-10-21 16:27:25 +03:00
|
|
|
*/
|
|
|
|
|
2021-04-25 08:53:23 +03:00
|
|
|
#include <LibTest/TestCase.h>
|
2020-10-21 16:27:25 +03:00
|
|
|
|
|
|
|
#include <AK/HashFunctions.h>
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
|
|
|
TEST_CASE(int_hash)
|
|
|
|
{
|
2020-10-21 16:39:54 +03:00
|
|
|
static_assert(int_hash(42) == 3564735745u);
|
|
|
|
static_assert(int_hash(0) == 1177991625u);
|
2020-10-21 16:27:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(double_hash)
|
|
|
|
{
|
2022-01-06 19:57:39 +03:00
|
|
|
static_assert(double_hash(666) == 171644115u);
|
|
|
|
static_assert(double_hash(0) == 1189591134u);
|
|
|
|
static_assert(double_hash(0xBA5EDB01) == 0u);
|
2020-10-21 16:27:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(pair_int_hash)
|
|
|
|
{
|
2020-10-21 16:39:54 +03:00
|
|
|
static_assert(pair_int_hash(42, 17) == 339337046u);
|
|
|
|
static_assert(pair_int_hash(0, 0) == 954888656u);
|
2020-10-21 16:27:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(u64_hash)
|
|
|
|
{
|
2020-10-21 16:39:54 +03:00
|
|
|
static_assert(u64_hash(42) == 2824066580u);
|
|
|
|
static_assert(u64_hash(0) == 954888656u);
|
2020-10-21 16:27:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(ptr_hash)
|
|
|
|
{
|
2020-10-21 16:39:54 +03:00
|
|
|
// These tests are not static_asserts because the values are
|
|
|
|
// different and the goal is to bind the behavior.
|
2020-10-21 16:27:25 +03:00
|
|
|
if constexpr (sizeof(FlatPtr) == 8) {
|
|
|
|
EXPECT_EQ(ptr_hash(FlatPtr(42)), 2824066580u);
|
|
|
|
EXPECT_EQ(ptr_hash(FlatPtr(0)), 954888656u);
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
EXPECT_EQ(ptr_hash(reinterpret_cast<void const*>(42)), 2824066580u);
|
|
|
|
EXPECT_EQ(ptr_hash(reinterpret_cast<void const*>(0)), 954888656u);
|
2020-10-21 16:27:25 +03:00
|
|
|
} else {
|
|
|
|
EXPECT_EQ(ptr_hash(FlatPtr(42)), 3564735745u);
|
|
|
|
EXPECT_EQ(ptr_hash(FlatPtr(0)), 1177991625u);
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
EXPECT_EQ(ptr_hash(reinterpret_cast<void const*>(42)), 3564735745u);
|
|
|
|
EXPECT_EQ(ptr_hash(reinterpret_cast<void const*>(0)), 1177991625u);
|
2020-10-21 16:27:25 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-21 16:39:54 +03:00
|
|
|
TEST_CASE(constexpr_ptr_hash)
|
|
|
|
{
|
|
|
|
// This test does not check the result because the goal is just to
|
|
|
|
// ensure the function can be executed in a constexpr context. The
|
|
|
|
// "ptr_hash" test binds the result.
|
|
|
|
static_assert(ptr_hash(FlatPtr(42)));
|
|
|
|
}
|