// // Copyright (C) 2013 The Android Open Source Project // // 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 "shill/ip_address_store.h" #include #include using ::std::string; using ::std::vector; using ::testing::Test; namespace shill { namespace { const char kIPAddress_0_0_0_0[] = "0.0.0.0"; const char kIPAddress_8_8_8_8[] = "8.8.8.8"; const char kIPAddress_7_7_7_7[] = "7.7.7.7"; } // namespace class IPAddressStoreTest : public Test { public: IPAddressStoreTest() {} protected: IPAddress StringToIPv4Address(const string& address_string) { IPAddress ip_address(IPAddress::kFamilyIPv4); EXPECT_TRUE(ip_address.SetAddressFromString(address_string)); return ip_address; } void PopulateIPAddressStore() { ip_address_store_.AddUnique(StringToIPv4Address(kIPAddress_0_0_0_0)); ip_address_store_.AddUnique(StringToIPv4Address(kIPAddress_8_8_8_8)); ip_address_store_.AddUnique(StringToIPv4Address(kIPAddress_7_7_7_7)); } IPAddressStore ip_address_store_; }; TEST_F(IPAddressStoreTest, AddUnique) { IPAddress ip_0_0_0_0 = StringToIPv4Address(kIPAddress_0_0_0_0); IPAddress ip_8_8_8_8 = StringToIPv4Address(kIPAddress_8_8_8_8); IPAddress ip_7_7_7_7 = StringToIPv4Address(kIPAddress_7_7_7_7); EXPECT_EQ(0, ip_address_store_.Count()); ip_address_store_.AddUnique(ip_0_0_0_0); EXPECT_TRUE(ip_address_store_.Contains(ip_0_0_0_0)); EXPECT_FALSE(ip_address_store_.Contains(ip_8_8_8_8)); EXPECT_FALSE(ip_address_store_.Contains(ip_7_7_7_7)); EXPECT_EQ(1, ip_address_store_.Count()); ip_address_store_.AddUnique(ip_8_8_8_8); EXPECT_TRUE(ip_address_store_.Contains(ip_8_8_8_8)); EXPECT_FALSE(ip_address_store_.Contains(ip_7_7_7_7)); EXPECT_EQ(2, ip_address_store_.Count()); ip_address_store_.AddUnique(ip_8_8_8_8); EXPECT_TRUE(ip_address_store_.Contains(ip_0_0_0_0)); EXPECT_TRUE(ip_address_store_.Contains(ip_8_8_8_8)); EXPECT_EQ(2, ip_address_store_.Count()); ip_address_store_.AddUnique(ip_0_0_0_0); EXPECT_EQ(2, ip_address_store_.Count()); ip_address_store_.AddUnique(ip_7_7_7_7); EXPECT_TRUE(ip_address_store_.Contains(ip_7_7_7_7)); EXPECT_EQ(3, ip_address_store_.Count()); } } // namespace shill