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

Unified Diff: webrtc/p2p/base/stunrequest_unittest.cc

Issue 2677743002: Increase STUN RTOs (Closed)
Patch Set: fixes Created 3 years, 10 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/base/stunrequest.cc ('k') | webrtc/p2p/client/basicportallocator_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/stunrequest_unittest.cc
diff --git a/webrtc/p2p/base/stunrequest_unittest.cc b/webrtc/p2p/base/stunrequest_unittest.cc
index 47583b90e8e9072b36a18a3ecfd4059303cb2dda..6b582fa6383d54842eb807f64f5c8484aab1b65a 100644
--- a/webrtc/p2p/base/stunrequest_unittest.cc
+++ b/webrtc/p2p/base/stunrequest_unittest.cc
@@ -57,10 +57,10 @@ class StunRequestTest : public testing::Test,
static int TotalDelay(int sends) {
int total = 0;
for (int i = 0; i < sends; i++) {
- if (i < 4)
- total += 100 << i;
+ if (i < 5)
+ total += 250 << i;
skvlad 2017/02/07 03:05:45 could it be more clear with a hardcoded array? st
else
- total += 1600;
+ total += 8000;
}
return total;
}
@@ -143,9 +143,8 @@ TEST_F(StunRequestTest, TestUnexpected) {
}
// Test that requests are sent at the right times, and that the 9th request
-// (sent at 7900 ms) can be properly replied to.
+// (sent at 32000 ms) can be properly replied to.
TEST_F(StunRequestTest, TestBackoff) {
- const int MAX_TIMEOUT_MS = 10000;
rtc::ScopedFakeClock fake_clock;
StunMessage* req = CreateStunMessage(STUN_BINDING_REQUEST, NULL);
@@ -153,7 +152,8 @@ TEST_F(StunRequestTest, TestBackoff) {
manager_.Send(new StunRequestThunker(req, this));
StunMessage* res = CreateStunMessage(STUN_BINDING_RESPONSE, req);
for (int i = 0; i < 9; ++i) {
- EXPECT_TRUE_SIMULATED_WAIT(request_count_ != i, MAX_TIMEOUT_MS, fake_clock);
+ EXPECT_TRUE_SIMULATED_WAIT(request_count_ != i, STUN_TOTAL_TIMEOUT,
+ fake_clock);
int64_t elapsed = rtc::TimeMillis() - start;
LOG(LS_INFO) << "STUN request #" << (i + 1)
<< " sent at " << elapsed << " ms";
@@ -168,15 +168,14 @@ TEST_F(StunRequestTest, TestBackoff) {
delete res;
}
-// Test that we timeout properly if no response is received in 9500 ms.
+// Test that we timeout properly if no response is received in 40000 ms.
TEST_F(StunRequestTest, TestTimeout) {
rtc::ScopedFakeClock fake_clock;
StunMessage* req = CreateStunMessage(STUN_BINDING_REQUEST, NULL);
StunMessage* res = CreateStunMessage(STUN_BINDING_RESPONSE, req);
manager_.Send(new StunRequestThunker(req, this));
- // Simulate the 9500 ms STUN timeout
- SIMULATED_WAIT(false, 9500, fake_clock);
+ SIMULATED_WAIT(false, cricket::STUN_TOTAL_TIMEOUT, fake_clock);
EXPECT_FALSE(manager_.CheckResponse(res));
EXPECT_TRUE(response_ == NULL);
« no previous file with comments | « webrtc/p2p/base/stunrequest.cc ('k') | webrtc/p2p/client/basicportallocator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698