OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Crashpad Authors. All rights reserved. |
| 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at |
| 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. |
| 14 |
| 15 #include "util/stdlib/map_insert.h" |
| 16 |
| 17 #include <string> |
| 18 |
| 19 #include "gtest/gtest.h" |
| 20 |
| 21 namespace crashpad { |
| 22 namespace test { |
| 23 namespace { |
| 24 |
| 25 TEST(MapInsert, MapInsertOrReplace) { |
| 26 std::map<std::string, int> map; |
| 27 int old_value; |
| 28 EXPECT_TRUE(MapInsertOrReplace(&map, "key", 1, &old_value)); |
| 29 std::map<std::string, int> expect_map; |
| 30 expect_map["key"] = 1; |
| 31 EXPECT_EQ(expect_map, map); |
| 32 |
| 33 EXPECT_FALSE(MapInsertOrReplace(&map, "key", 2, &old_value)); |
| 34 EXPECT_EQ(1, old_value); |
| 35 expect_map["key"] = 2; |
| 36 EXPECT_EQ(expect_map, map); |
| 37 |
| 38 EXPECT_TRUE(MapInsertOrReplace(&map, "another", 3, &old_value)); |
| 39 expect_map["another"] = 3; |
| 40 EXPECT_EQ(expect_map, map); |
| 41 |
| 42 // Make sure nullptr is accepted as old_value. |
| 43 EXPECT_TRUE(MapInsertOrReplace(&map, "yet another", 5, nullptr)); |
| 44 expect_map["yet another"] = 5; |
| 45 EXPECT_EQ(expect_map, map); |
| 46 |
| 47 EXPECT_FALSE(MapInsertOrReplace(&map, "yet another", 6, nullptr)); |
| 48 expect_map["yet another"] = 6; |
| 49 EXPECT_EQ(expect_map, map); |
| 50 } |
| 51 |
| 52 } // namespace |
| 53 } // namespace test |
| 54 } // namespace crashpad |
OLD | NEW |