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

Side by Side Diff: webrtc/p2p/base/p2ptransportchannel_unittest.cc

Issue 1371623003: Delete a connection only if it has timed out on writing and not receiving for 10 seconds. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Address comments Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2009 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2009 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after
1105 TEST_F(P2PTransportChannelTest, GetStats) { 1105 TEST_F(P2PTransportChannelTest, GetStats) {
1106 ConfigureEndpoints(OPEN, OPEN, kDefaultPortAllocatorFlags, 1106 ConfigureEndpoints(OPEN, OPEN, kDefaultPortAllocatorFlags,
1107 kDefaultPortAllocatorFlags); 1107 kDefaultPortAllocatorFlags);
1108 CreateChannels(1); 1108 CreateChannels(1);
1109 EXPECT_TRUE_WAIT_MARGIN(ep1_ch1()->receiving() && ep1_ch1()->writable() && 1109 EXPECT_TRUE_WAIT_MARGIN(ep1_ch1()->receiving() && ep1_ch1()->writable() &&
1110 ep2_ch1()->receiving() && ep2_ch1()->writable(), 1110 ep2_ch1()->receiving() && ep2_ch1()->writable(),
1111 1000, 1000); 1111 1000, 1000);
1112 TestSendRecv(1); 1112 TestSendRecv(1);
1113 cricket::ConnectionInfos infos; 1113 cricket::ConnectionInfos infos;
1114 ASSERT_TRUE(ep1_ch1()->GetStats(&infos)); 1114 ASSERT_TRUE(ep1_ch1()->GetStats(&infos));
1115 ASSERT_EQ(1U, infos.size()); 1115 ASSERT_TRUE(infos.size() >= 1);
1116 EXPECT_TRUE(infos[0].new_connection); 1116 cricket::ConnectionInfo* best_conn_info;
1117 EXPECT_TRUE(infos[0].best_connection); 1117 for (cricket::ConnectionInfo& info : infos) {
1118 EXPECT_TRUE(infos[0].receiving); 1118 if (info.best_connection) {
1119 EXPECT_TRUE(infos[0].writable); 1119 best_conn_info = &info;
1120 EXPECT_FALSE(infos[0].timeout); 1120 break;
1121 EXPECT_EQ(10U, infos[0].sent_total_packets); 1121 }
1122 EXPECT_EQ(0U, infos[0].sent_discarded_packets); 1122 }
1123 EXPECT_EQ(10 * 36U, infos[0].sent_total_bytes); 1123 EXPECT_TRUE(best_conn_info->new_connection);
1124 EXPECT_EQ(10 * 36U, infos[0].recv_total_bytes); 1124 EXPECT_TRUE(best_conn_info->receiving);
1125 EXPECT_GT(infos[0].rtt, 0U); 1125 EXPECT_TRUE(best_conn_info->writable);
1126 EXPECT_FALSE(best_conn_info->timeout);
1127 EXPECT_EQ(10U, best_conn_info->sent_total_packets);
1128 EXPECT_EQ(0U, best_conn_info->sent_discarded_packets);
1129 EXPECT_EQ(10 * 36U, best_conn_info->sent_total_bytes);
1130 EXPECT_EQ(10 * 36U, best_conn_info->recv_total_bytes);
1131 EXPECT_GT(best_conn_info->rtt, 0U);
1126 DestroyChannels(); 1132 DestroyChannels();
1127 } 1133 }
1128 1134
1129 // Test that we properly create a connection on a STUN ping from unknown address 1135 // Test that we properly create a connection on a STUN ping from unknown address
1130 // when the signaling is slow. 1136 // when the signaling is slow.
1131 TEST_F(P2PTransportChannelTest, PeerReflexiveCandidateBeforeSignaling) { 1137 TEST_F(P2PTransportChannelTest, PeerReflexiveCandidateBeforeSignaling) {
1132 ConfigureEndpoints(OPEN, OPEN, kDefaultPortAllocatorFlags, 1138 ConfigureEndpoints(OPEN, OPEN, kDefaultPortAllocatorFlags,
1133 kDefaultPortAllocatorFlags); 1139 kDefaultPortAllocatorFlags);
1134 // Emulate no remote credentials coming in. 1140 // Emulate no remote credentials coming in.
1135 set_clear_remote_candidates_ufrag_pwd(false); 1141 set_clear_remote_candidates_ufrag_pwd(false);
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
1613 ep2_ch1()->best_connection()->receiving(), 1000); 1619 ep2_ch1()->best_connection()->receiving(), 1000);
1614 EXPECT_TRUE( 1620 EXPECT_TRUE(
1615 LocalCandidate(ep1_ch1())->address().EqualIPs(kAlternateAddrs[0])); 1621 LocalCandidate(ep1_ch1())->address().EqualIPs(kAlternateAddrs[0]));
1616 EXPECT_TRUE(RemoteCandidate(ep1_ch1())->address().EqualIPs(kPublicAddrs[1])); 1622 EXPECT_TRUE(RemoteCandidate(ep1_ch1())->address().EqualIPs(kPublicAddrs[1]));
1617 EXPECT_TRUE( 1623 EXPECT_TRUE(
1618 RemoteCandidate(ep2_ch1())->address().EqualIPs(kAlternateAddrs[0])); 1624 RemoteCandidate(ep2_ch1())->address().EqualIPs(kAlternateAddrs[0]));
1619 1625
1620 DestroyChannels(); 1626 DestroyChannels();
1621 } 1627 }
1622 1628
1629 TEST_F(P2PTransportChannelMultihomedTest, TestGetState) {
1630 AddAddress(0, kAlternateAddrs[0]);
1631 AddAddress(0, kPublicAddrs[0]);
1632 AddAddress(1, kPublicAddrs[1]);
1633 // Create channels and let them go writable, as usual.
1634 CreateChannels(1);
1635
1636 // Both transport channels will reach STATE_COMPLETED quickly.
1637 EXPECT_EQ_WAIT(cricket::TransportChannelState::STATE_COMPLETED,
1638 ep1_ch1()->GetState(), 1000);
1639 EXPECT_EQ_WAIT(cricket::TransportChannelState::STATE_COMPLETED,
1640 ep2_ch1()->GetState(), 1000);
1641 }
1642
1623 /* 1643 /*
1624 1644
1625 TODO(pthatcher): Once have a way to handle network interfaces changes 1645 TODO(pthatcher): Once have a way to handle network interfaces changes
1626 without signalling an ICE restart, put a test like this back. In the 1646 without signalling an ICE restart, put a test like this back. In the
1627 mean time, this test only worked for GICE. With ICE, it's currently 1647 mean time, this test only worked for GICE. With ICE, it's currently
1628 not possible without an ICE restart. 1648 not possible without an ICE restart.
1629 1649
1630 // Test that we can switch links in a coordinated fashion. 1650 // Test that we can switch links in a coordinated fashion.
1631 TEST_F(P2PTransportChannelMultihomedTest, TestDrain) { 1651 TEST_F(P2PTransportChannelMultihomedTest, TestDrain) {
1632 AddAddress(0, kPublicAddrs[0]); 1652 AddAddress(0, kPublicAddrs[0]);
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
1789 uint32 remote_priority = conn1->remote_candidate().priority(); 1809 uint32 remote_priority = conn1->remote_candidate().priority();
1790 1810
1791 // Create a higher priority candidate and make the connection 1811 // Create a higher priority candidate and make the connection
1792 // receiving/writable. This will prune conn1. 1812 // receiving/writable. This will prune conn1.
1793 ch.AddRemoteCandidate(CreateCandidate("2.2.2.2", 2, 2)); 1813 ch.AddRemoteCandidate(CreateCandidate("2.2.2.2", 2, 2));
1794 cricket::Connection* conn2 = WaitForConnectionTo(&ch, "2.2.2.2", 2); 1814 cricket::Connection* conn2 = WaitForConnectionTo(&ch, "2.2.2.2", 2);
1795 ASSERT_TRUE(conn2 != nullptr); 1815 ASSERT_TRUE(conn2 != nullptr);
1796 conn2->ReceivedPing(); 1816 conn2->ReceivedPing();
1797 conn2->ReceivedPingResponse(); 1817 conn2->ReceivedPingResponse();
1798 1818
1799 // Wait for conn1 to be destroyed. 1819 // Wait for conn1 to be pruned.
1800 EXPECT_TRUE_WAIT(GetConnectionTo(&ch, "1.1.1.1", 1) == nullptr, 3000); 1820 EXPECT_TRUE_WAIT(conn1->pruned(), 3000);
1801 cricket::Port* port = GetPort(&ch); 1821 // Destroy the connection to test SignalUnknownAddress.
1822 conn1->Destroy();
1823 EXPECT_TRUE_WAIT(GetConnectionTo(&ch, "1.1.1.1", 1) == nullptr, 1000);
1802 1824
1803 // Create a minimal STUN message with prflx priority. 1825 // Create a minimal STUN message with prflx priority.
1804 cricket::IceMessage request; 1826 cricket::IceMessage request;
1805 request.SetType(cricket::STUN_BINDING_REQUEST); 1827 request.SetType(cricket::STUN_BINDING_REQUEST);
1806 request.AddAttribute(new cricket::StunByteStringAttribute( 1828 request.AddAttribute(new cricket::StunByteStringAttribute(
1807 cricket::STUN_ATTR_USERNAME, kIceUfrag[1])); 1829 cricket::STUN_ATTR_USERNAME, kIceUfrag[1]));
1808 uint32 prflx_priority = cricket::ICE_TYPE_PREFERENCE_PRFLX << 24; 1830 uint32 prflx_priority = cricket::ICE_TYPE_PREFERENCE_PRFLX << 24;
1809 request.AddAttribute(new cricket::StunUInt32Attribute( 1831 request.AddAttribute(new cricket::StunUInt32Attribute(
1810 cricket::STUN_ATTR_PRIORITY, prflx_priority)); 1832 cricket::STUN_ATTR_PRIORITY, prflx_priority));
1811 EXPECT_NE(prflx_priority, remote_priority); 1833 EXPECT_NE(prflx_priority, remote_priority);
1812 1834
1835 cricket::Port* port = GetPort(&ch);
1813 // conn1 should be resurrected with original priority. 1836 // conn1 should be resurrected with original priority.
1814 port->SignalUnknownAddress(port, rtc::SocketAddress("1.1.1.1", 1), 1837 port->SignalUnknownAddress(port, rtc::SocketAddress("1.1.1.1", 1),
1815 cricket::PROTO_UDP, &request, kIceUfrag[1], false); 1838 cricket::PROTO_UDP, &request, kIceUfrag[1], false);
1816 conn1 = WaitForConnectionTo(&ch, "1.1.1.1", 1); 1839 conn1 = WaitForConnectionTo(&ch, "1.1.1.1", 1);
1817 ASSERT_TRUE(conn1 != nullptr); 1840 ASSERT_TRUE(conn1 != nullptr);
1818 EXPECT_EQ(conn1->remote_candidate().priority(), remote_priority); 1841 EXPECT_EQ(conn1->remote_candidate().priority(), remote_priority);
1819 1842
1820 // conn3, a real prflx connection, should have prflx priority. 1843 // conn3, a real prflx connection, should have prflx priority.
1821 port->SignalUnknownAddress(port, rtc::SocketAddress("3.3.3.3", 1), 1844 port->SignalUnknownAddress(port, rtc::SocketAddress("3.3.3.3", 1),
1822 cricket::PROTO_UDP, &request, kIceUfrag[1], false); 1845 cricket::PROTO_UDP, &request, kIceUfrag[1], false);
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2061 2084
2062 ch.AddRemoteCandidate(CreateCandidate("3.3.3.3", 3, 1)); 2085 ch.AddRemoteCandidate(CreateCandidate("3.3.3.3", 3, 1));
2063 cricket::Connection* conn3 = WaitForConnectionTo(&ch, "3.3.3.3", 3); 2086 cricket::Connection* conn3 = WaitForConnectionTo(&ch, "3.3.3.3", 3);
2064 ASSERT_TRUE(conn3 != nullptr); 2087 ASSERT_TRUE(conn3 != nullptr);
2065 // The best connection should still be conn2. Even through conn3 has lower 2088 // The best connection should still be conn2. Even through conn3 has lower
2066 // priority and is not receiving/writable, it is not pruned because the best 2089 // priority and is not receiving/writable, it is not pruned because the best
2067 // connection is not receiving. 2090 // connection is not receiving.
2068 WAIT(conn3->pruned(), 1000); 2091 WAIT(conn3->pruned(), 1000);
2069 EXPECT_FALSE(conn3->pruned()); 2092 EXPECT_FALSE(conn3->pruned());
2070 } 2093 }
2094
2095 // Test that when a low-priority connection is added when the current best
2096 // connection is strong, it will be pruned but not deleted right away.
2097 TEST_F(P2PTransportChannelPingTest, TestDontDeleteRightAwayWhenPruned) {
2098 cricket::FakePortAllocator pa(rtc::Thread::Current(), nullptr);
2099 cricket::P2PTransportChannel ch("test channel", 1, nullptr, &pa);
2100 PrepareChannel(&ch);
2101 ch.SetIceConfig(CreateIceConfig(1000, false));
2102 ch.Connect();
2103 ch.MaybeStartGathering();
2104 ch.AddRemoteCandidate(CreateCandidate("1.1.1.1", 1, 100));
2105 cricket::Connection* conn1 = WaitForConnectionTo(&ch, "1.1.1.1", 1);
2106 ASSERT_TRUE(conn1 != nullptr);
2107 EXPECT_EQ(conn1, ch.best_connection());
2108 conn1->ReceivedPingResponse(); // Becomes writable and receiving
2109
2110 // Add a low-priority connection |conn2|, which will be pruned, but it will
2111 // not be deleted right away. Once the current best connection becomes not
2112 // receiving, |conn2| will start to ping and upon receiving the ping response,
2113 // it will become the best connection.
2114 ch.AddRemoteCandidate(CreateCandidate("2.2.2.2", 2, 1));
2115 cricket::Connection* conn2 = WaitForConnectionTo(&ch, "2.2.2.2", 2);
2116 ASSERT_TRUE(conn2 != nullptr);
2117 EXPECT_TRUE_WAIT(conn2->pruned(), 1000);
2118 // |conn2| should not send a ping yet.
2119 EXPECT_EQ(cricket::Connection::STATE_WAITING, conn2->state());
2120 EXPECT_TRUE_WAIT(!conn1->receiving(), 3000);
2121 // Make sure conn2 is not deleted.
2122 conn2 = WaitForConnectionTo(&ch, "2.2.2.2", 2);
2123 ASSERT_TRUE(conn2 != nullptr);
2124 EXPECT_EQ_WAIT(cricket::Connection::STATE_INPROGRESS, conn2->state(), 1000);
2125 conn2->ReceivedPingResponse();
2126 EXPECT_EQ_WAIT(conn2, ch.best_connection(), 1000);
2127 }
2128
2129 // Test that GetState returns the state correctly.
2130 TEST_F(P2PTransportChannelPingTest, TestGetState) {
2131 cricket::FakePortAllocator pa(rtc::Thread::Current(), nullptr);
2132 cricket::P2PTransportChannel ch("test channel", 1, nullptr, &pa);
2133 PrepareChannel(&ch);
2134 ch.Connect();
2135 ch.MaybeStartGathering();
2136 EXPECT_EQ(cricket::TransportChannelState::STATE_INIT, ch.GetState());
2137 ch.AddRemoteCandidate(CreateCandidate("1.1.1.1", 1, 100));
2138 ch.AddRemoteCandidate(CreateCandidate("2.2.2.2", 2, 1));
2139 cricket::Connection* conn1 = WaitForConnectionTo(&ch, "1.1.1.1", 1);
2140 cricket::Connection* conn2 = WaitForConnectionTo(&ch, "2.2.2.2", 2);
2141 ASSERT_TRUE(conn1 != nullptr);
2142 ASSERT_TRUE(conn2 != nullptr);
2143 // Now there are two connections, so the transport channel is connecting.
2144 EXPECT_EQ(cricket::TransportChannelState::STATE_CONNECTING, ch.GetState());
2145 // |conn1| becomes writable and receiving; it then should prune |conn2|.
2146 conn1->ReceivedPingResponse();
2147 EXPECT_TRUE_WAIT(conn2->pruned(), 1000);
2148 EXPECT_EQ(cricket::TransportChannelState::STATE_COMPLETED, ch.GetState());
2149 conn1->Prune(); // All connections are pruned.
2150 EXPECT_EQ(cricket::TransportChannelState::STATE_FAILED, ch.GetState());
2151 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698