OLD | NEW |
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 1866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1877 ch.OnCandidate(CreateCandidate("1.1.1.1", 1, 1)); | 1877 ch.OnCandidate(CreateCandidate("1.1.1.1", 1, 1)); |
1878 cricket::Connection* conn1 = WaitForConnectionTo(&ch, "1.1.1.1", 1); | 1878 cricket::Connection* conn1 = WaitForConnectionTo(&ch, "1.1.1.1", 1); |
1879 ASSERT_TRUE(conn1 != nullptr); | 1879 ASSERT_TRUE(conn1 != nullptr); |
1880 | 1880 |
1881 conn1->ReceivedPing(); | 1881 conn1->ReceivedPing(); |
1882 conn1->OnReadPacket("ABC", 3, rtc::CreatePacketTime(0)); | 1882 conn1->OnReadPacket("ABC", 3, rtc::CreatePacketTime(0)); |
1883 EXPECT_TRUE_WAIT(ch.best_connection() != nullptr, 1000) | 1883 EXPECT_TRUE_WAIT(ch.best_connection() != nullptr, 1000) |
1884 EXPECT_TRUE_WAIT(ch.receiving(), 1000); | 1884 EXPECT_TRUE_WAIT(ch.receiving(), 1000); |
1885 EXPECT_TRUE_WAIT(!ch.receiving(), 1000); | 1885 EXPECT_TRUE_WAIT(!ch.receiving(), 1000); |
1886 } | 1886 } |
| 1887 |
| 1888 // When the p2p transport channel with a controlled role received a candidate, |
| 1889 // it should set up the best connection if the best connection was not nominated |
| 1890 // by the controlling side (via use_candidate attribute). If the best connection |
| 1891 // was nominated by the controlling side, the connection receiving a new |
| 1892 // candidate will not be set as the best connection. |
| 1893 TEST_F(P2PTransportChannelPingTest, TestPassiveAggressiveNomination) { |
| 1894 cricket::FakePortAllocator pa(rtc::Thread::Current(), nullptr); |
| 1895 cricket::P2PTransportChannel ch("receiving state change", 1, nullptr, &pa); |
| 1896 PrepareChannel(&ch); |
| 1897 ch.SetIceRole(cricket::ICEROLE_CONTROLLED); |
| 1898 ch.Connect(); |
| 1899 ch.OnCandidate(CreateCandidate("1.1.1.1", 1, 1)); |
| 1900 cricket::Connection* conn1 = WaitForConnectionTo(&ch, "1.1.1.1", 1); |
| 1901 ASSERT_TRUE(conn1 != nullptr); |
| 1902 EXPECT_EQ(conn1, ch.best_connection()); |
| 1903 |
| 1904 // When a higher priority candidate comes in, the new connection is chosen |
| 1905 // as the best connection. |
| 1906 ch.OnCandidate(CreateCandidate("2.2.2.2", 2, 10)); |
| 1907 cricket::Connection* conn2 = WaitForConnectionTo(&ch, "2.2.2.2", 2); |
| 1908 ASSERT_TRUE(conn1 != nullptr); |
| 1909 EXPECT_EQ(conn2, ch.best_connection()); |
| 1910 |
| 1911 // If a stun request with use-candidate attribute arrives, the receiving |
| 1912 // connection will be set as the best connection, even though |
| 1913 // its priority is lower. |
| 1914 ch.OnCandidate(CreateCandidate("3.3.3.3", 3, 1)); |
| 1915 cricket::Connection* conn3 = WaitForConnectionTo(&ch, "3.3.3.3", 3); |
| 1916 ASSERT_TRUE(conn3 != nullptr); |
| 1917 // Because it has a lower priority, the best connection is still conn2. |
| 1918 EXPECT_EQ(conn2, ch.best_connection()); |
| 1919 conn3->ReceivedPingResponse(); // Become writable. |
| 1920 // But if it is nominated via use_candidate, it is chosen as the best |
| 1921 // connection. |
| 1922 conn3->set_nominated(true); |
| 1923 EXPECT_EQ(conn3, ch.best_connection()); |
| 1924 |
| 1925 // Even if another higher priority candidate arrives, |
| 1926 // it will not be set as the best connection because the best connection |
| 1927 // is nominated by the controlling side. |
| 1928 ch.OnCandidate(CreateCandidate("4.4.4.4", 4, 100)); |
| 1929 cricket::Connection* conn4 = WaitForConnectionTo(&ch, "4.4.4.4", 4); |
| 1930 ASSERT_TRUE(conn4 != nullptr); |
| 1931 EXPECT_EQ(conn3, ch.best_connection()); |
| 1932 // But if it is nominated via use_candidate and writable, it will be set as |
| 1933 // the best connection. |
| 1934 conn4->set_nominated(true); |
| 1935 // Not switched yet because conn4 is not writable. |
| 1936 EXPECT_EQ(conn3, ch.best_connection()); |
| 1937 // The best connection switches after conn4 becomes writable. |
| 1938 conn4->ReceivedPingResponse(); |
| 1939 EXPECT_EQ(conn4, ch.best_connection()); |
| 1940 } |
| 1941 |
| 1942 // For the controlled side, when a stun request with an unknown address is |
| 1943 // received, it will be selected as the best connection if the best connection |
| 1944 // is not nominated by the controlling side and vice versa. If the received |
| 1945 // stun request with an unknown address contains a use_candidate attribute, it |
| 1946 // will be treated as a nomination from the controlling side. |
| 1947 TEST_F(P2PTransportChannelPingTest, TestReceivingUnknownAddress) { |
| 1948 cricket::FakePortAllocator pa(rtc::Thread::Current(), nullptr); |
| 1949 cricket::P2PTransportChannel ch("receiving state change", 1, nullptr, &pa); |
| 1950 PrepareChannel(&ch); |
| 1951 ch.SetIceRole(cricket::ICEROLE_CONTROLLED); |
| 1952 ch.Connect(); |
| 1953 // A minimal STUN message with prflx priority. |
| 1954 cricket::IceMessage request; |
| 1955 request.SetType(cricket::STUN_BINDING_REQUEST); |
| 1956 request.AddAttribute(new cricket::StunByteStringAttribute( |
| 1957 cricket::STUN_ATTR_USERNAME, kIceUfrag[1])); |
| 1958 uint32 prflx_priority = cricket::ICE_TYPE_PREFERENCE_PRFLX << 24; |
| 1959 request.AddAttribute(new cricket::StunUInt32Attribute( |
| 1960 cricket::STUN_ATTR_PRIORITY, prflx_priority)); |
| 1961 cricket::Port* port = GetPort(&ch); |
| 1962 port->SignalUnknownAddress(port, rtc::SocketAddress("1.1.1.1", 1), |
| 1963 cricket::PROTO_UDP, &request, kIceUfrag[1], false); |
| 1964 cricket::Connection* conn1 = WaitForConnectionTo(&ch, "1.1.1.1", 1); |
| 1965 ASSERT_TRUE(conn1 != nullptr); |
| 1966 EXPECT_EQ(conn1, ch.best_connection()); |
| 1967 conn1->ReceivedPingResponse(); |
| 1968 EXPECT_EQ(conn1, ch.best_connection()); |
| 1969 |
| 1970 // Another connection is nominated via use_candidate. |
| 1971 ch.OnCandidate(CreateCandidate("2.2.2.2", 2, 1)); |
| 1972 cricket::Connection* conn2 = WaitForConnectionTo(&ch, "2.2.2.2", 2); |
| 1973 ASSERT_TRUE(conn2 != nullptr); |
| 1974 // Because it has a lower priority, the best connection is still conn1. |
| 1975 EXPECT_EQ(conn1, ch.best_connection()); |
| 1976 // When it is nominated via use_candidate and writable, it is chosen as the |
| 1977 // best connection. |
| 1978 conn2->ReceivedPingResponse(); // Become writable. |
| 1979 conn2->set_nominated(true); |
| 1980 EXPECT_EQ(conn2, ch.best_connection()); |
| 1981 |
| 1982 // Another request with unknown address, it will not be set as the best |
| 1983 // connection because the best connection was nominated by the controlling |
| 1984 // side. |
| 1985 port->SignalUnknownAddress(port, rtc::SocketAddress("3.3.3.3", 3), |
| 1986 cricket::PROTO_UDP, &request, kIceUfrag[1], false); |
| 1987 cricket::Connection* conn3 = WaitForConnectionTo(&ch, "3.3.3.3", 3); |
| 1988 ASSERT_TRUE(conn3 != nullptr); |
| 1989 conn3->ReceivedPingResponse(); // Become writable. |
| 1990 EXPECT_EQ(conn2, ch.best_connection()); |
| 1991 |
| 1992 // However if the request contains use_candidate attribute, it will be |
| 1993 // selected as the best connection. |
| 1994 request.AddAttribute( |
| 1995 new cricket::StunByteStringAttribute(cricket::STUN_ATTR_USE_CANDIDATE)); |
| 1996 port->SignalUnknownAddress(port, rtc::SocketAddress("4.4.4.4", 4), |
| 1997 cricket::PROTO_UDP, &request, kIceUfrag[1], false); |
| 1998 cricket::Connection* conn4 = WaitForConnectionTo(&ch, "4.4.4.4", 4); |
| 1999 ASSERT_TRUE(conn4 != nullptr); |
| 2000 // conn4 is not the best connection yet because it is not writable. |
| 2001 EXPECT_EQ(conn2, ch.best_connection()); |
| 2002 conn4->ReceivedPingResponse(); // Become writable. |
| 2003 EXPECT_EQ(conn4, ch.best_connection()); |
| 2004 } |
| 2005 |
| 2006 // For the controlled side, if a data packet is received on a connection, |
| 2007 // the sending path will mirror the receiving path if it is writable and |
| 2008 // the current best connection is not nominated by the controlling side. |
| 2009 // If the current best connection is already nominated by the controlling side, |
| 2010 // it will not switch the best connection (the sending path). |
| 2011 TEST_F(P2PTransportChannelPingTest, TestSendingPathMirrorReceivingPath) { |
| 2012 cricket::FakePortAllocator pa(rtc::Thread::Current(), nullptr); |
| 2013 cricket::P2PTransportChannel ch("receiving state change", 1, nullptr, &pa); |
| 2014 PrepareChannel(&ch); |
| 2015 ch.SetIceRole(cricket::ICEROLE_CONTROLLED); |
| 2016 ch.Connect(); |
| 2017 ch.OnCandidate(CreateCandidate("1.1.1.1", 1, 10)); |
| 2018 cricket::Connection* conn1 = WaitForConnectionTo(&ch, "1.1.1.1", 1); |
| 2019 ASSERT_TRUE(conn1 != nullptr); |
| 2020 EXPECT_EQ(conn1, ch.best_connection()); |
| 2021 |
| 2022 // If a data packet is received on conn2, the best connection should |
| 2023 // switch to conn2 because the controlled side must mirror the media path |
| 2024 // chosen by the controlling side. |
| 2025 ch.OnCandidate(CreateCandidate("2.2.2.2", 2, 1)); |
| 2026 cricket::Connection* conn2 = WaitForConnectionTo(&ch, "2.2.2.2", 2); |
| 2027 ASSERT_TRUE(conn2 != nullptr); |
| 2028 conn2->ReceivedPing(); // Become readable. |
| 2029 // Do not switch because it is not writable. |
| 2030 conn2->OnReadPacket("ABC", 3, rtc::CreatePacketTime(0)); |
| 2031 EXPECT_EQ(conn1, ch.best_connection()); |
| 2032 |
| 2033 conn2->ReceivedPingResponse(); // Become writable. |
| 2034 // Switch because it is writable. |
| 2035 conn2->OnReadPacket("DEF", 3, rtc::CreatePacketTime(0)); |
| 2036 EXPECT_EQ(conn2, ch.best_connection()); |
| 2037 |
| 2038 // Now another STUN message with an unknown address and use_candidate will |
| 2039 // nominate the best connection. |
| 2040 cricket::IceMessage request; |
| 2041 request.SetType(cricket::STUN_BINDING_REQUEST); |
| 2042 request.AddAttribute(new cricket::StunByteStringAttribute( |
| 2043 cricket::STUN_ATTR_USERNAME, kIceUfrag[1])); |
| 2044 uint32 prflx_priority = cricket::ICE_TYPE_PREFERENCE_PRFLX << 24; |
| 2045 request.AddAttribute(new cricket::StunUInt32Attribute( |
| 2046 cricket::STUN_ATTR_PRIORITY, prflx_priority)); |
| 2047 request.AddAttribute( |
| 2048 new cricket::StunByteStringAttribute(cricket::STUN_ATTR_USE_CANDIDATE)); |
| 2049 cricket::Port* port = GetPort(&ch); |
| 2050 port->SignalUnknownAddress(port, rtc::SocketAddress("3.3.3.3", 3), |
| 2051 cricket::PROTO_UDP, &request, kIceUfrag[1], false); |
| 2052 cricket::Connection* conn3 = WaitForConnectionTo(&ch, "3.3.3.3", 3); |
| 2053 ASSERT_TRUE(conn3 != nullptr); |
| 2054 EXPECT_EQ(conn2, ch.best_connection()); // Not writable yet. |
| 2055 conn3->ReceivedPingResponse(); // Become writable. |
| 2056 EXPECT_EQ(conn3, ch.best_connection()); |
| 2057 |
| 2058 // Now another data packet will not switch the best connection because the |
| 2059 // best connection was nominated by the controlling side. |
| 2060 conn2->ReceivedPing(); |
| 2061 conn2->ReceivedPingResponse(); |
| 2062 conn2->OnReadPacket("XYZ", 3, rtc::CreatePacketTime(0)); |
| 2063 EXPECT_EQ(conn3, ch.best_connection()); |
| 2064 } |
OLD | NEW |