| /* |
| * Copyright 2015 Facebook, Inc. |
| * |
| * 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 <folly/MapUtil.h> |
| |
| #include <map> |
| #include <gtest/gtest.h> |
| |
| using namespace folly; |
| |
| TEST(MapUtil, get_default) { |
| std::map<int, int> m; |
| m[1] = 2; |
| EXPECT_EQ(2, get_default(m, 1, 42)); |
| EXPECT_EQ(42, get_default(m, 2, 42)); |
| EXPECT_EQ(0, get_default(m, 3)); |
| } |
| |
| TEST(MapUtil, get_or_throw) { |
| std::map<int, int> m; |
| m[1] = 2; |
| EXPECT_EQ(2, get_or_throw(m, 1)); |
| EXPECT_THROW(get_or_throw(m, 2), std::out_of_range); |
| } |
| |
| TEST(MapUtil, get_or_throw_specified) { |
| std::map<int, int> m; |
| m[1] = 2; |
| EXPECT_EQ(2, get_or_throw<std::runtime_error>(m, 1)); |
| EXPECT_THROW(get_or_throw<std::runtime_error>(m, 2), std::runtime_error); |
| } |
| |
| TEST(MapUtil, get_optional) { |
| std::map<int, int> m; |
| m[1] = 2; |
| EXPECT_TRUE(get_optional(m, 1).hasValue()); |
| EXPECT_EQ(2, get_optional(m, 1).value()); |
| EXPECT_FALSE(get_optional(m, 2).hasValue()); |
| } |
| |
| TEST(MapUtil, get_ref_default) { |
| std::map<int, int> m; |
| m[1] = 2; |
| const int i = 42; |
| EXPECT_EQ(2, get_ref_default(m, 1, i)); |
| EXPECT_EQ(42, get_ref_default(m, 2, i)); |
| } |
| |
| TEST(MapUtil, get_ptr) { |
| std::map<int, int> m; |
| m[1] = 2; |
| EXPECT_EQ(2, *get_ptr(m, 1)); |
| EXPECT_TRUE(get_ptr(m, 2) == nullptr); |
| *get_ptr(m, 1) = 4; |
| EXPECT_EQ(4, m.at(1)); |
| } |