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 |
11 #include <memory> | 11 #include <memory> |
12 | 12 |
13 #include "webrtc/p2p/base/basicpacketsocketfactory.h" | 13 #include "webrtc/p2p/base/basicpacketsocketfactory.h" |
14 #include "webrtc/p2p/base/stunport.h" | 14 #include "webrtc/p2p/base/stunport.h" |
15 #include "webrtc/p2p/base/teststunserver.h" | 15 #include "webrtc/p2p/base/teststunserver.h" |
16 #include "webrtc/base/gunit.h" | 16 #include "webrtc/rtc_base/gunit.h" |
17 #include "webrtc/base/helpers.h" | 17 #include "webrtc/rtc_base/helpers.h" |
18 #include "webrtc/base/socketaddress.h" | 18 #include "webrtc/rtc_base/socketaddress.h" |
19 #include "webrtc/base/ssladapter.h" | 19 #include "webrtc/rtc_base/ssladapter.h" |
20 #include "webrtc/base/virtualsocketserver.h" | 20 #include "webrtc/rtc_base/virtualsocketserver.h" |
21 | 21 |
22 using cricket::ServerAddresses; | 22 using cricket::ServerAddresses; |
23 using rtc::SocketAddress; | 23 using rtc::SocketAddress; |
24 | 24 |
25 static const SocketAddress kLocalAddr("127.0.0.1", 0); | 25 static const SocketAddress kLocalAddr("127.0.0.1", 0); |
26 static const SocketAddress kStunAddr1("127.0.0.1", 5000); | 26 static const SocketAddress kStunAddr1("127.0.0.1", 5000); |
27 static const SocketAddress kStunAddr2("127.0.0.1", 4000); | 27 static const SocketAddress kStunAddr2("127.0.0.1", 4000); |
28 static const SocketAddress kStunAddr3("127.0.0.1", 3000); | 28 static const SocketAddress kStunAddr3("127.0.0.1", 3000); |
29 static const SocketAddress kBadAddr("0.0.0.1", 5000); | 29 static const SocketAddress kBadAddr("0.0.0.1", 5000); |
30 static const SocketAddress kStunHostnameAddr("localhost", 5000); | 30 static const SocketAddress kStunHostnameAddr("localhost", 5000); |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 // Test that by default, the STUN binding requests will last for a long time. | 374 // Test that by default, the STUN binding requests will last for a long time. |
375 TEST_F(StunPortTest, TestStunBindingRequestLongLifetime) { | 375 TEST_F(StunPortTest, TestStunBindingRequestLongLifetime) { |
376 SetKeepaliveDelay(101); | 376 SetKeepaliveDelay(101); |
377 CreateStunPort(kStunAddr1); | 377 CreateStunPort(kStunAddr1); |
378 PrepareAddress(); | 378 PrepareAddress(); |
379 EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock); | 379 EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock); |
380 EXPECT_TRUE_SIMULATED_WAIT( | 380 EXPECT_TRUE_SIMULATED_WAIT( |
381 port()->HasPendingRequest(cricket::STUN_BINDING_REQUEST), 1000, | 381 port()->HasPendingRequest(cricket::STUN_BINDING_REQUEST), 1000, |
382 fake_clock); | 382 fake_clock); |
383 } | 383 } |
OLD | NEW |