// Copyright 2021 The Tint Authors. // // 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. #include "src/tint/utils/hash.h" #include #include #include #include "gtest/gtest.h" #include "src/tint/utils/vector.h" namespace tint::utils { namespace { TEST(HashTests, Basic) { EXPECT_EQ(Hash(123), Hash(123)); EXPECT_NE(Hash(123), Hash(321)); EXPECT_EQ(Hash(123, 456), Hash(123, 456)); EXPECT_NE(Hash(123, 456), Hash(456, 123)); EXPECT_NE(Hash(123, 456), Hash(123)); EXPECT_EQ(Hash(123, 456, false), Hash(123, 456, false)); EXPECT_NE(Hash(123, 456, false), Hash(123, 456)); EXPECT_EQ(Hash(std::string("hello")), Hash(std::string("hello"))); EXPECT_NE(Hash(std::string("hello")), Hash(std::string("world"))); } TEST(HashTests, StdVector) { EXPECT_EQ(Hash(std::vector({})), Hash(std::vector({}))); EXPECT_EQ(Hash(std::vector({1, 2, 3})), Hash(std::vector({1, 2, 3}))); EXPECT_NE(Hash(std::vector({1, 2, 3})), Hash(std::vector({1, 2, 4}))); EXPECT_NE(Hash(std::vector({1, 2, 3})), Hash(std::vector({1, 2, 3, 4}))); } TEST(HashTests, TintVector) { EXPECT_EQ(Hash(Vector({})), Hash(Vector({}))); EXPECT_EQ(Hash(Vector({1, 2, 3})), Hash(Vector({1, 2, 3}))); EXPECT_NE(Hash(Vector({1, 2, 3})), Hash(Vector({1, 2, 4}))); EXPECT_NE(Hash(Vector({1, 2, 3})), Hash(Vector({1, 2, 3, 4}))); EXPECT_EQ(Hash(Vector({1, 2, 3})), Hash(Vector({1, 2, 3}))); EXPECT_EQ(Hash(Vector({1, 2, 3})), Hash(Vector({1, 2, 3}))); } TEST(HashTests, Tuple) { EXPECT_EQ(Hash(std::make_tuple(1)), Hash(std::make_tuple(1))); EXPECT_EQ(Hash(std::make_tuple(1, 2, 3)), Hash(std::make_tuple(1, 2, 3))); EXPECT_NE(Hash(std::make_tuple(1, 2, 3)), Hash(std::make_tuple(1, 2, 4))); EXPECT_NE(Hash(std::make_tuple(1, 2, 3)), Hash(std::make_tuple(1, 2, 3, 4))); } TEST(HashTests, UnorderedKeyWrapper) { using W = UnorderedKeyWrapper>; std::unordered_map m; m.emplace(W{{1, 2}}, -1); EXPECT_EQ(m.size(), 1u); EXPECT_EQ(m[W({1, 2})], -1); m.emplace(W{{3, 2}}, 1); EXPECT_EQ(m.size(), 2u); EXPECT_EQ(m[W({3, 2})], 1); EXPECT_EQ(m[W({1, 2})], -1); m.emplace(W{{100}}, 100); EXPECT_EQ(m.size(), 3u); EXPECT_EQ(m[W({100})], 100); EXPECT_EQ(m[W({3, 2})], 1); EXPECT_EQ(m[W({1, 2})], -1); // Reversed vector element order EXPECT_EQ(m[W({2, 3})], 0); EXPECT_EQ(m[W({2, 1})], 0); } } // namespace } // namespace tint::utils