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

Unified Diff: webrtc/modules/pacing/alr_detector_unittest.cc

Issue 2504023002: Implement periodic bandwidth probing in application-limited region. (Closed)
Patch Set: address feedback Created 4 years, 1 month 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
Index: webrtc/modules/pacing/alr_detector_unittest.cc
diff --git a/webrtc/modules/pacing/alr_detector_unittest.cc b/webrtc/modules/pacing/alr_detector_unittest.cc
index 506b55c175fd8b6e913125de6fbfedb5a1c68ad4..638413d72c35d43386db87c4404f9a3fa49d2aa1 100644
--- a/webrtc/modules/pacing/alr_detector_unittest.cc
+++ b/webrtc/modules/pacing/alr_detector_unittest.cc
@@ -51,61 +51,61 @@ class AlrDetectorTest : public testing::Test {
TEST_F(AlrDetectorTest, AlrDetection) {
// Start in non-ALR state.
- EXPECT_FALSE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_EQ(0, alr_detector_.GetApplicationLimitedRegionStartTime());
// Stay in non-ALR state when usage is close to 100%.
SimulateOutgoingTraffic(500, 90);
- EXPECT_FALSE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_EQ(0, alr_detector_.GetApplicationLimitedRegionStartTime());
// Verify that we ALR starts when bitrate drops below 20%.
SimulateOutgoingTraffic(500, 20);
- EXPECT_TRUE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_TRUE(alr_detector_.GetApplicationLimitedRegionStartTime());
// Verify that we remain in ALR state while usage is still below 50%.
SimulateOutgoingTraffic(500, 40);
- EXPECT_TRUE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_TRUE(alr_detector_.GetApplicationLimitedRegionStartTime());
// Verify that ALR ends when usage is above 50%.
SimulateOutgoingTraffic(500, 60);
- EXPECT_FALSE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_FALSE(alr_detector_.GetApplicationLimitedRegionStartTime());
}
TEST_F(AlrDetectorTest, ShortSpike) {
// Start in non-ALR state.
- EXPECT_FALSE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_FALSE(alr_detector_.GetApplicationLimitedRegionStartTime());
// Verify that we ALR starts when bitrate drops below 20%.
SimulateOutgoingTraffic(500, 20);
- EXPECT_TRUE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_TRUE(alr_detector_.GetApplicationLimitedRegionStartTime());
// Verify that we stay in ALR region even after a short bitrate spike.
SimulateOutgoingTraffic(100, 150);
- EXPECT_TRUE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_TRUE(alr_detector_.GetApplicationLimitedRegionStartTime());
SimulateOutgoingTraffic(200, 20);
- EXPECT_TRUE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_TRUE(alr_detector_.GetApplicationLimitedRegionStartTime());
// ALR ends when usage is above 50%.
SimulateOutgoingTraffic(500, 60);
- EXPECT_FALSE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_FALSE(alr_detector_.GetApplicationLimitedRegionStartTime());
}
TEST_F(AlrDetectorTest, BandwidthEstimateChanges) {
// Start in non-ALR state.
- EXPECT_FALSE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_FALSE(alr_detector_.GetApplicationLimitedRegionStartTime());
// ALR starts when bitrate drops below 20%.
SimulateOutgoingTraffic(500, 20);
- EXPECT_TRUE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_TRUE(alr_detector_.GetApplicationLimitedRegionStartTime());
// When bandwidth estimate drops the detector should stay in ALR mode and quit
// it shortly afterwards as the sender continues sending the same amount of
// traffic. This is necessary to ensure that ProbeController can still react
// to the BWE drop by initiating a new probe.
alr_detector_.SetEstimatedBitrate(kEstimatedBitrateBps / 5);
- EXPECT_TRUE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_TRUE(alr_detector_.GetApplicationLimitedRegionStartTime());
SimulateOutgoingTraffic(10, 20);
- EXPECT_FALSE(alr_detector_.InApplicationLimitedRegion());
+ EXPECT_FALSE(alr_detector_.GetApplicationLimitedRegionStartTime());
}
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698