OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2012 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 #if defined(WEBRTC_POSIX) | 10 #if defined(WEBRTC_POSIX) |
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
727 turn_server_.set_enable_otu_nonce(true); | 727 turn_server_.set_enable_otu_nonce(true); |
728 CreateTurnPort(kTurnUsername, kTurnPassword, kTurnUdpProtoAddr); | 728 CreateTurnPort(kTurnUsername, kTurnPassword, kTurnUdpProtoAddr); |
729 TestTurnConnection(); | 729 TestTurnConnection(); |
730 } | 730 } |
731 | 731 |
732 // Do a TURN allocation, establish a UDP connection, and send some data. | 732 // Do a TURN allocation, establish a UDP connection, and send some data. |
733 TEST_F(TurnPortTest, TestTurnSendDataTurnUdpToUdp) { | 733 TEST_F(TurnPortTest, TestTurnSendDataTurnUdpToUdp) { |
734 // Create ports and prepare addresses. | 734 // Create ports and prepare addresses. |
735 CreateTurnPort(kTurnUsername, kTurnPassword, kTurnUdpProtoAddr); | 735 CreateTurnPort(kTurnUsername, kTurnPassword, kTurnUdpProtoAddr); |
736 TestTurnSendData(); | 736 TestTurnSendData(); |
737 EXPECT_EQ(turn_port_->Candidates()[0].relay_protocol(), | |
juberti1
2015/08/20 23:14:25
expected value comes first in EXPECT_EQ (here and
| |
738 cricket::UDP_PROTOCOL_NAME); | |
737 } | 739 } |
738 | 740 |
739 // Do a TURN allocation, establish a TCP connection, and send some data. | 741 // Do a TURN allocation, establish a TCP connection, and send some data. |
740 TEST_F(TurnPortTest, TestTurnSendDataTurnTcpToUdp) { | 742 TEST_F(TurnPortTest, TestTurnSendDataTurnTcpToUdp) { |
741 turn_server_.AddInternalSocket(kTurnTcpIntAddr, cricket::PROTO_TCP); | 743 turn_server_.AddInternalSocket(kTurnTcpIntAddr, cricket::PROTO_TCP); |
742 // Create ports and prepare addresses. | 744 // Create ports and prepare addresses. |
743 CreateTurnPort(kTurnUsername, kTurnPassword, kTurnTcpProtoAddr); | 745 CreateTurnPort(kTurnUsername, kTurnPassword, kTurnTcpProtoAddr); |
744 TestTurnSendData(); | 746 TestTurnSendData(); |
747 EXPECT_EQ(turn_port_->Candidates()[0].relay_protocol(), | |
748 cricket::TCP_PROTOCOL_NAME); | |
745 } | 749 } |
746 | 750 |
747 // Test TURN fails to make a connection from IPv6 address to a server which has | 751 // Test TURN fails to make a connection from IPv6 address to a server which has |
748 // IPv4 address. | 752 // IPv4 address. |
749 TEST_F(TurnPortTest, TestTurnLocalIPv6AddressServerIPv4) { | 753 TEST_F(TurnPortTest, TestTurnLocalIPv6AddressServerIPv4) { |
750 turn_server_.AddInternalSocket(kTurnUdpIPv6IntAddr, cricket::PROTO_UDP); | 754 turn_server_.AddInternalSocket(kTurnUdpIPv6IntAddr, cricket::PROTO_UDP); |
751 CreateTurnPort(kLocalIPv6Addr, kTurnUsername, kTurnPassword, | 755 CreateTurnPort(kLocalIPv6Addr, kTurnUsername, kTurnPassword, |
752 kTurnUdpProtoAddr); | 756 kTurnUdpProtoAddr); |
753 turn_port_->PrepareAddress(); | 757 turn_port_->PrepareAddress(); |
754 ASSERT_TRUE_WAIT(turn_error_, kTimeout); | 758 ASSERT_TRUE_WAIT(turn_error_, kTimeout); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
817 turn_port_->PrepareAddress(); | 821 turn_port_->PrepareAddress(); |
818 ASSERT_TRUE_WAIT(turn_error_, kTimeout); | 822 ASSERT_TRUE_WAIT(turn_error_, kTimeout); |
819 EXPECT_TRUE(turn_port_->Candidates().empty()); | 823 EXPECT_TRUE(turn_port_->Candidates().empty()); |
820 turn_port_.reset(); | 824 turn_port_.reset(); |
821 rtc::Thread::Current()->Post(this, MSG_TESTFINISH); | 825 rtc::Thread::Current()->Post(this, MSG_TESTFINISH); |
822 // Waiting for above message to be processed. | 826 // Waiting for above message to be processed. |
823 ASSERT_TRUE_WAIT(test_finish_, kTimeout); | 827 ASSERT_TRUE_WAIT(test_finish_, kTimeout); |
824 EXPECT_EQ(last_fd_count, GetFDCount()); | 828 EXPECT_EQ(last_fd_count, GetFDCount()); |
825 } | 829 } |
826 #endif | 830 #endif |
OLD | NEW |