// Copyright 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/stl_util.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "base/containers/queue.h" #include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" namespace { // Used as test case to ensure the various base::STLXxx functions don't require // more than operators "<" and "==" on values stored in containers. class ComparableValue { public: explicit ComparableValue(int value) : value_(value) {} bool operator==(const ComparableValue& rhs) const { return value_ == rhs.value_; } bool operator<(const ComparableValue& rhs) const { return value_ < rhs.value_; } private: int value_; }; template void RunEraseTest() { const std::pair test_data[] = { {Container(), Container()}, {{1, 2, 3}, {1, 3}}, {{1, 2, 3, 2}, {1, 3}}}; for (auto test_case : test_data) { base::Erase(test_case.first, 2); EXPECT_EQ(test_case.second, test_case.first); } } // This test is written for containers of std::pair to support maps. template void RunEraseIfTest() { struct { Container input; Container erase_even; Container erase_odd; } test_data[] = { {Container(), Container(), Container()}, {{{1, 1}, {2, 2}, {3, 3}}, {{1, 1}, {3, 3}}, {{2, 2}}}, {{{1, 1}, {2, 2}, {3, 3}, {4, 4}}, {{1, 1}, {3, 3}}, {{2, 2}, {4, 4}}}, }; for (auto test_case : test_data) { base::EraseIf(test_case.input, [](const std::pair& elem) { return !(elem.first & 1); }); EXPECT_EQ(test_case.erase_even, test_case.input); } for (auto test_case : test_data) { base::EraseIf(test_case.input, [](const std::pair& elem) { return elem.first & 1; }); EXPECT_EQ(test_case.erase_odd, test_case.input); } } struct CustomIntHash { size_t operator()(int elem) const { return std::hash()(elem) + 1; } }; struct HashByFirst { size_t operator()(const std::pair& elem) const { return std::hash()(elem.first); } }; } // namespace namespace base { namespace { TEST(STLUtilTest, Size) { { std::vector vector = {1, 2, 3, 4, 5}; static_assert( std::is_same::value, "base::size(vector) should have the same type as vector.size()"); EXPECT_EQ(vector.size(), base::size(vector)); } { std::string empty_str; static_assert( std::is_same::value, "base::size(empty_str) should have the same type as empty_str.size()"); EXPECT_EQ(0u, base::size(empty_str)); } { std::array array = {{1, 2, 3, 4}}; static_assert( std::is_same::value, "base::size(array) should have the same type as array.size()"); static_assert(base::size(array) == array.size(), "base::size(array) should be equal to array.size()"); } { int array[] = {1, 2, 3}; static_assert(std::is_same::value, "base::size(array) should be of type size_t"); static_assert(3u == base::size(array), "base::size(array) should be 3"); } } TEST(STLUtilTest, Empty) { { std::vector vector; static_assert( std::is_same::value, "base::empty(vector) should have the same type as vector.empty()"); EXPECT_EQ(vector.empty(), base::empty(vector)); } { std::array array = {{1, 2, 3, 4}}; static_assert( std::is_same::value, "base::empty(array) should have the same type as array.empty()"); static_assert(base::empty(array) == array.empty(), "base::empty(array) should be equal to array.empty()"); } { int array[] = {1, 2, 3}; static_assert(std::is_same::value, "base::empty(array) should be of type bool"); static_assert(!base::empty(array), "base::empty(array) should be false"); } { constexpr std::initializer_list il; static_assert(std::is_same::value, "base::empty(il) should be of type bool"); static_assert(base::empty(il), "base::empty(il) should be true"); } } TEST(STLUtilTest, Data) { { std::vector vector = {1, 2, 3, 4, 5}; static_assert( std::is_same::value, "base::data(vector) should have the same type as vector.data()"); EXPECT_EQ(vector.data(), base::data(vector)); } { const std::string cstr = "const string"; static_assert( std::is_same::value, "base::data(cstr) should have the same type as cstr.data()"); EXPECT_EQ(cstr.data(), base::data(cstr)); } { std::string str = "mutable string"; static_assert(std::is_same::value, "base::data(str) should be of type char*"); EXPECT_EQ(str.data(), base::data(str)); } { std::string empty_str; static_assert(std::is_same::value, "base::data(empty_str) should be of type char*"); EXPECT_EQ(empty_str.data(), base::data(empty_str)); } { std::array array = {{1, 2, 3, 4}}; static_assert( std::is_same::value, "base::data(array) should have the same type as array.data()"); // std::array::data() is not constexpr prior to C++17, hence the runtime // check. EXPECT_EQ(array.data(), base::data(array)); } { constexpr int array[] = {1, 2, 3}; static_assert(std::is_same::value, "base::data(array) should be of type const int*"); static_assert(array == base::data(array), "base::data(array) should be array"); } { constexpr std::initializer_list il; static_assert( std::is_same::value, "base::data(il) should have the same type as il.begin()"); static_assert(il.begin() == base::data(il), "base::data(il) should be equal to il.begin()"); } } TEST(STLUtilTest, GetUnderlyingContainer) { { std::queue queue({1, 2, 3, 4, 5}); static_assert(std::is_same&>::value, "GetUnderlyingContainer(queue) should be of type deque"); EXPECT_THAT(GetUnderlyingContainer(queue), testing::ElementsAre(1, 2, 3, 4, 5)); } { std::queue queue; EXPECT_THAT(GetUnderlyingContainer(queue), testing::ElementsAre()); } { base::queue queue({1, 2, 3, 4, 5}); static_assert( std::is_same&>::value, "GetUnderlyingContainer(queue) should be of type circular_deque"); EXPECT_THAT(GetUnderlyingContainer(queue), testing::ElementsAre(1, 2, 3, 4, 5)); } { std::vector values = {1, 2, 3, 4, 5}; std::priority_queue queue(values.begin(), values.end()); static_assert(std::is_same&>::value, "GetUnderlyingContainer(queue) should be of type vector"); EXPECT_THAT(GetUnderlyingContainer(queue), testing::UnorderedElementsAre(1, 2, 3, 4, 5)); } { std::stack stack({1, 2, 3, 4, 5}); static_assert(std::is_same&>::value, "GetUnderlyingContainer(stack) should be of type deque"); EXPECT_THAT(GetUnderlyingContainer(stack), testing::ElementsAre(1, 2, 3, 4, 5)); } } TEST(STLUtilTest, STLIsSorted) { { std::set set; set.insert(24); set.insert(1); set.insert(12); EXPECT_TRUE(STLIsSorted(set)); } { std::set set; set.insert(ComparableValue(24)); set.insert(ComparableValue(1)); set.insert(ComparableValue(12)); EXPECT_TRUE(STLIsSorted(set)); } { std::vector vector; vector.push_back(1); vector.push_back(1); vector.push_back(4); vector.push_back(64); vector.push_back(12432); EXPECT_TRUE(STLIsSorted(vector)); vector.back() = 1; EXPECT_FALSE(STLIsSorted(vector)); } } TEST(STLUtilTest, STLSetDifference) { std::set a1; a1.insert(1); a1.insert(2); a1.insert(3); a1.insert(4); std::set a2; a2.insert(3); a2.insert(4); a2.insert(5); a2.insert(6); a2.insert(7); { std::set difference; difference.insert(1); difference.insert(2); EXPECT_EQ(difference, STLSetDifference >(a1, a2)); } { std::set difference; difference.insert(5); difference.insert(6); difference.insert(7); EXPECT_EQ(difference, STLSetDifference >(a2, a1)); } { std::vector difference; difference.push_back(1); difference.push_back(2); EXPECT_EQ(difference, STLSetDifference >(a1, a2)); } { std::vector difference; difference.push_back(5); difference.push_back(6); difference.push_back(7); EXPECT_EQ(difference, STLSetDifference >(a2, a1)); } } TEST(STLUtilTest, STLSetUnion) { std::set a1; a1.insert(1); a1.insert(2); a1.insert(3); a1.insert(4); std::set a2; a2.insert(3); a2.insert(4); a2.insert(5); a2.insert(6); a2.insert(7); { std::set result; result.insert(1); result.insert(2); result.insert(3); result.insert(4); result.insert(5); result.insert(6); result.insert(7); EXPECT_EQ(result, STLSetUnion >(a1, a2)); } { std::set result; result.insert(1); result.insert(2); result.insert(3); result.insert(4); result.insert(5); result.insert(6); result.insert(7); EXPECT_EQ(result, STLSetUnion >(a2, a1)); } { std::vector result; result.push_back(1); result.push_back(2); result.push_back(3); result.push_back(4); result.push_back(5); result.push_back(6); result.push_back(7); EXPECT_EQ(result, STLSetUnion >(a1, a2)); } { std::vector result; result.push_back(1); result.push_back(2); result.push_back(3); result.push_back(4); result.push_back(5); result.push_back(6); result.push_back(7); EXPECT_EQ(result, STLSetUnion >(a2, a1)); } } TEST(STLUtilTest, STLSetIntersection) { std::set a1; a1.insert(1); a1.insert(2); a1.insert(3); a1.insert(4); std::set a2; a2.insert(3); a2.insert(4); a2.insert(5); a2.insert(6); a2.insert(7); { std::set result; result.insert(3); result.insert(4); EXPECT_EQ(result, STLSetIntersection >(a1, a2)); } { std::set result; result.insert(3); result.insert(4); EXPECT_EQ(result, STLSetIntersection >(a2, a1)); } { std::vector result; result.push_back(3); result.push_back(4); EXPECT_EQ(result, STLSetIntersection >(a1, a2)); } { std::vector result; result.push_back(3); result.push_back(4); EXPECT_EQ(result, STLSetIntersection >(a2, a1)); } } TEST(STLUtilTest, STLIncludes) { std::set a1; a1.insert(1); a1.insert(2); a1.insert(3); a1.insert(4); std::set a2; a2.insert(3); a2.insert(4); std::set a3; a3.insert(3); a3.insert(4); a3.insert(5); EXPECT_TRUE(STLIncludes >(a1, a2)); EXPECT_FALSE(STLIncludes >(a1, a3)); EXPECT_FALSE(STLIncludes >(a2, a1)); EXPECT_FALSE(STLIncludes >(a2, a3)); EXPECT_FALSE(STLIncludes >(a3, a1)); EXPECT_TRUE(STLIncludes >(a3, a2)); } TEST(Erase, String) { const std::pair test_data[] = { {"", ""}, {"abc", "bc"}, {"abca", "bc"}, }; for (auto test_case : test_data) { Erase(test_case.first, 'a'); EXPECT_EQ(test_case.second, test_case.first); } for (auto test_case : test_data) { EraseIf(test_case.first, [](char elem) { return elem < 'b'; }); EXPECT_EQ(test_case.second, test_case.first); } } TEST(Erase, String16) { std::pair test_data[] = { {base::string16(), base::string16()}, {UTF8ToUTF16("abc"), UTF8ToUTF16("bc")}, {UTF8ToUTF16("abca"), UTF8ToUTF16("bc")}, }; const base::string16 letters = UTF8ToUTF16("ab"); for (auto test_case : test_data) { Erase(test_case.first, letters[0]); EXPECT_EQ(test_case.second, test_case.first); } for (auto test_case : test_data) { EraseIf(test_case.first, [&](short elem) { return elem < letters[1]; }); EXPECT_EQ(test_case.second, test_case.first); } } TEST(Erase, Deque) { RunEraseTest>(); RunEraseIfTest>>(); } TEST(Erase, Vector) { RunEraseTest>(); RunEraseIfTest>>(); } TEST(Erase, ForwardList) { RunEraseTest>(); RunEraseIfTest>>(); } TEST(Erase, List) { RunEraseTest>(); RunEraseIfTest>>(); } TEST(Erase, Map) { RunEraseIfTest>(); RunEraseIfTest>>(); } TEST(Erase, Multimap) { RunEraseIfTest>(); RunEraseIfTest>>(); } TEST(Erase, Set) { RunEraseIfTest>>(); RunEraseIfTest< std::set, std::greater>>>(); } TEST(Erase, Multiset) { RunEraseIfTest>>(); RunEraseIfTest< std::multiset, std::greater>>>(); } TEST(Erase, UnorderedMap) { RunEraseIfTest>(); RunEraseIfTest>(); } TEST(Erase, UnorderedMultimap) { RunEraseIfTest>(); RunEraseIfTest>(); } TEST(Erase, UnorderedSet) { RunEraseIfTest, HashByFirst>>(); } TEST(Erase, UnorderedMultiset) { RunEraseIfTest, HashByFirst>>(); } TEST(Erase, IsNotIn) { // Should keep both '2' but only one '4', like std::set_intersection. std::vector lhs = {0, 2, 2, 4, 4, 4, 6, 8, 10}; std::vector rhs = {1, 2, 2, 4, 5, 6, 7}; std::vector expected = {2, 2, 4, 6}; EraseIf(lhs, IsNotIn>(rhs)); EXPECT_EQ(expected, lhs); } TEST(ContainsValue, OrdinaryArrays) { const char allowed_chars[] = {'a', 'b', 'c', 'd'}; EXPECT_TRUE(ContainsValue(allowed_chars, 'a')); EXPECT_FALSE(ContainsValue(allowed_chars, 'z')); EXPECT_FALSE(ContainsValue(allowed_chars, 0)); const char allowed_chars_including_nul[] = "abcd"; EXPECT_TRUE(ContainsValue(allowed_chars_including_nul, 0)); } TEST(STLUtilTest, OptionalOrNullptr) { Optional optional; EXPECT_EQ(nullptr, base::OptionalOrNullptr(optional)); optional = 0.1f; EXPECT_EQ(&optional.value(), base::OptionalOrNullptr(optional)); EXPECT_NE(nullptr, base::OptionalOrNullptr(optional)); } } // namespace } // namespace base