OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/base/ip_endpoint.h" | 5 #include "net/base/ip_endpoint.h" |
6 | 6 |
7 #include "base/strings/string_number_conversions.h" | 7 #include "base/strings/string_number_conversions.h" |
8 #include "net/base/net_util.h" | 8 #include "net/base/net_util.h" |
9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
10 #include "testing/platform_test.h" | 10 #include "testing/platform_test.h" |
11 #if defined(OS_WIN) | 11 #if defined(OS_WIN) |
12 #include <winsock2.h> | 12 #include <winsock2.h> |
13 #elif defined(OS_POSIX) | 13 #elif defined(OS_POSIX) |
14 #include <netinet/in.h> | 14 #include <netinet/in.h> |
15 #endif | 15 #endif |
16 | 16 |
17 namespace net { | 17 namespace net { |
18 | 18 |
19 namespace { | 19 namespace { |
20 | 20 |
21 struct TestData { | 21 struct TestData { |
22 std::string host; | 22 std::string host; |
23 std::string host_normalized; | 23 std::string host_normalized; |
24 bool ipv6; | 24 bool ipv6; |
25 IPAddressNumber ip_address; | 25 IPAddressNumber ip_address; |
26 } tests[] = { | 26 } tests[] = { |
27 { "127.0.00.1", "127.0.0.1", false}, | 27 {"127.0.00.1", "127.0.0.1", false}, |
28 { "192.168.1.1", "192.168.1.1", false }, | 28 {"192.168.1.1", "192.168.1.1", false}, |
29 { "::1", "[::1]", true }, | 29 {"::1", "[::1]", true}, |
30 { "2001:db8:0::42", "[2001:db8::42]", true }, | 30 {"2001:db8:0::42", "[2001:db8::42]", true}, |
31 }; | 31 }; |
32 int test_count = ARRAYSIZE_UNSAFE(tests); | 32 int test_count = ARRAYSIZE_UNSAFE(tests); |
33 | 33 |
34 class IPEndPointTest : public PlatformTest { | 34 class IPEndPointTest : public PlatformTest { |
35 public: | 35 public: |
36 virtual void SetUp() { | 36 virtual void SetUp() { |
37 // This is where we populate the TestData. | 37 // This is where we populate the TestData. |
38 for (int index = 0; index < test_count; ++index) { | 38 for (int index = 0; index < test_count; ++index) { |
39 EXPECT_TRUE(ParseIPLiteralToNumber(tests[index].host, | 39 EXPECT_TRUE( |
40 &tests[index].ip_address)); | 40 ParseIPLiteralToNumber(tests[index].host, &tests[index].ip_address)); |
41 } | 41 } |
42 } | 42 } |
43 }; | 43 }; |
44 | 44 |
45 TEST_F(IPEndPointTest, Constructor) { | 45 TEST_F(IPEndPointTest, Constructor) { |
46 IPEndPoint endpoint; | 46 IPEndPoint endpoint; |
47 EXPECT_EQ(0, endpoint.port()); | 47 EXPECT_EQ(0, endpoint.port()); |
48 | 48 |
49 for (int index = 0; index < test_count; ++index) { | 49 for (int index = 0; index < test_count; ++index) { |
50 IPEndPoint endpoint(tests[index].ip_address, 80); | 50 IPEndPoint endpoint(tests[index].ip_address, 80); |
(...skipping 24 matching lines...) Expand all Loading... |
75 | 75 |
76 TEST_F(IPEndPointTest, ToFromSockAddr) { | 76 TEST_F(IPEndPointTest, ToFromSockAddr) { |
77 for (int index = 0; index < test_count; ++index) { | 77 for (int index = 0; index < test_count; ++index) { |
78 IPEndPoint ip_endpoint(tests[index].ip_address, index); | 78 IPEndPoint ip_endpoint(tests[index].ip_address, index); |
79 | 79 |
80 // Convert to a sockaddr. | 80 // Convert to a sockaddr. |
81 SockaddrStorage storage; | 81 SockaddrStorage storage; |
82 EXPECT_TRUE(ip_endpoint.ToSockAddr(storage.addr, &storage.addr_len)); | 82 EXPECT_TRUE(ip_endpoint.ToSockAddr(storage.addr, &storage.addr_len)); |
83 | 83 |
84 // Basic verification. | 84 // Basic verification. |
85 socklen_t expected_size = tests[index].ipv6 ? | 85 socklen_t expected_size = tests[index].ipv6 ? sizeof(struct sockaddr_in6) |
86 sizeof(struct sockaddr_in6) : sizeof(struct sockaddr_in); | 86 : sizeof(struct sockaddr_in); |
87 EXPECT_EQ(expected_size, storage.addr_len); | 87 EXPECT_EQ(expected_size, storage.addr_len); |
88 EXPECT_EQ(ip_endpoint.port(), GetPortFromSockaddr(storage.addr, | 88 EXPECT_EQ(ip_endpoint.port(), |
89 storage.addr_len)); | 89 GetPortFromSockaddr(storage.addr, storage.addr_len)); |
90 | 90 |
91 // And convert back to an IPEndPoint. | 91 // And convert back to an IPEndPoint. |
92 IPEndPoint ip_endpoint2; | 92 IPEndPoint ip_endpoint2; |
93 EXPECT_TRUE(ip_endpoint2.FromSockAddr(storage.addr, storage.addr_len)); | 93 EXPECT_TRUE(ip_endpoint2.FromSockAddr(storage.addr, storage.addr_len)); |
94 EXPECT_EQ(ip_endpoint.port(), ip_endpoint2.port()); | 94 EXPECT_EQ(ip_endpoint.port(), ip_endpoint2.port()); |
95 EXPECT_EQ(ip_endpoint.address(), ip_endpoint2.address()); | 95 EXPECT_EQ(ip_endpoint.address(), ip_endpoint2.address()); |
96 } | 96 } |
97 } | 97 } |
98 | 98 |
99 TEST_F(IPEndPointTest, ToSockAddrBufTooSmall) { | 99 TEST_F(IPEndPointTest, ToSockAddrBufTooSmall) { |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 IPEndPoint endpoint(tests[index].ip_address, port); | 164 IPEndPoint endpoint(tests[index].ip_address, port); |
165 const std::string result = endpoint.ToString(); | 165 const std::string result = endpoint.ToString(); |
166 EXPECT_EQ(tests[index].host_normalized + ":" + base::IntToString(port), | 166 EXPECT_EQ(tests[index].host_normalized + ":" + base::IntToString(port), |
167 result); | 167 result); |
168 } | 168 } |
169 } | 169 } |
170 | 170 |
171 } // namespace | 171 } // namespace |
172 | 172 |
173 } // namespace net | 173 } // namespace net |
OLD | NEW |