Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(285)

Unified Diff: webrtc/p2p/client/basicportallocator_unittest.cc

Issue 2984853002: Revert of Move "max IPv6 networks" logic to BasicPortAllocator, and fix sorting. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/p2p/client/basicportallocator.cc ('k') | webrtc/rtc_base/network.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/client/basicportallocator_unittest.cc
diff --git a/webrtc/p2p/client/basicportallocator_unittest.cc b/webrtc/p2p/client/basicportallocator_unittest.cc
index 638a9c8e87a9d3e492439e9d281871718b918c12..99e53cf619fee1ca5d4987643c1f6fe893f27530 100644
--- a/webrtc/p2p/client/basicportallocator_unittest.cc
+++ b/webrtc/p2p/client/basicportallocator_unittest.cc
@@ -54,9 +54,6 @@
0);
static const SocketAddress kClientIPv6Addr2(
"2401:fa00:4:2000:be30:5bff:fee5:c3",
- 0);
-static const SocketAddress kClientIPv6Addr3(
- "2401:fa00:4:3000:be30:5bff:fee5:c3",
0);
static const SocketAddress kNatUdpAddr("77.77.77.77", rtc::NAT_SERVER_UDP_PORT);
static const SocketAddress kNatTcpAddr("77.77.77.77", rtc::NAT_SERVER_TCP_PORT);
@@ -802,57 +799,6 @@
EXPECT_TRUE(addr_wifi.EqualIPs(candidates_[0].address()));
}
-// Test that no more than allocator.max_ipv6_networks() IPv6 networks are used
-// to gather candidates.
-TEST_F(BasicPortAllocatorTest, MaxIpv6NetworksLimitEnforced) {
- // Add three IPv6 network interfaces, but tell the allocator to only use two.
- allocator().set_max_ipv6_networks(2);
- AddInterface(kClientIPv6Addr, "eth0", rtc::ADAPTER_TYPE_ETHERNET);
- AddInterface(kClientIPv6Addr2, "eth1", rtc::ADAPTER_TYPE_ETHERNET);
- AddInterface(kClientIPv6Addr3, "eth2", rtc::ADAPTER_TYPE_ETHERNET);
-
- // To simplify the test, only gather UDP host candidates.
- allocator().set_flags(PORTALLOCATOR_ENABLE_IPV6 | PORTALLOCATOR_DISABLE_TCP |
- PORTALLOCATOR_DISABLE_STUN |
- PORTALLOCATOR_DISABLE_RELAY);
-
- EXPECT_TRUE(CreateSession(cricket::ICE_CANDIDATE_COMPONENT_RTP));
- session_->StartGettingPorts();
- EXPECT_TRUE_SIMULATED_WAIT(candidate_allocation_done_,
- kDefaultAllocationTimeout, fake_clock);
- EXPECT_EQ(2U, candidates_.size());
- // Ensure the expected two interfaces (eth0 and eth1) were used.
- EXPECT_PRED4(HasCandidate, candidates_, "local", "udp", kClientIPv6Addr);
- EXPECT_PRED4(HasCandidate, candidates_, "local", "udp", kClientIPv6Addr2);
-}
-
-// Ensure that allocator.max_ipv6_networks() doesn't prevent IPv4 networks from
-// being used.
-TEST_F(BasicPortAllocatorTest, MaxIpv6NetworksLimitDoesNotImpactIpv4Networks) {
- // Set the "max IPv6" limit to 1, adding two IPv6 and two IPv4 networks.
- allocator().set_max_ipv6_networks(1);
- AddInterface(kClientIPv6Addr, "eth0", rtc::ADAPTER_TYPE_ETHERNET);
- AddInterface(kClientIPv6Addr2, "eth1", rtc::ADAPTER_TYPE_ETHERNET);
- AddInterface(kClientAddr, "eth2", rtc::ADAPTER_TYPE_ETHERNET);
- AddInterface(kClientAddr2, "eth3", rtc::ADAPTER_TYPE_ETHERNET);
-
- // To simplify the test, only gather UDP host candidates.
- allocator().set_flags(PORTALLOCATOR_ENABLE_IPV6 | PORTALLOCATOR_DISABLE_TCP |
- PORTALLOCATOR_DISABLE_STUN |
- PORTALLOCATOR_DISABLE_RELAY);
-
- EXPECT_TRUE(CreateSession(cricket::ICE_CANDIDATE_COMPONENT_RTP));
- session_->StartGettingPorts();
- EXPECT_TRUE_SIMULATED_WAIT(candidate_allocation_done_,
- kDefaultAllocationTimeout, fake_clock);
- EXPECT_EQ(3U, candidates_.size());
- // Ensure that only one IPv6 interface was used, but both IPv4 interfaces
- // were used.
- EXPECT_PRED4(HasCandidate, candidates_, "local", "udp", kClientIPv6Addr);
- EXPECT_PRED4(HasCandidate, candidates_, "local", "udp", kClientAddr);
- EXPECT_PRED4(HasCandidate, candidates_, "local", "udp", kClientAddr2);
-}
-
// Test that we could use loopback interface as host candidate.
TEST_F(BasicPortAllocatorTest, TestLoopbackNetworkInterface) {
AddInterface(kLoopbackAddr, "test_loopback", rtc::ADAPTER_TYPE_LOOPBACK);
« no previous file with comments | « webrtc/p2p/client/basicportallocator.cc ('k') | webrtc/rtc_base/network.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698