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

Side by Side Diff: webrtc/modules/congestion_controller/probing_interval_estimator_unittest.cc

Issue 2380883003: Add interval estimator to remote bitrate estimator (Closed)
Patch Set: Rebased. 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 unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #include <memory>
12 #include <utility>
13
14 #include "webrtc/modules/congestion_controller/probing_interval_estimator.h"
15 #include "webrtc/modules/remote_bitrate_estimator/include/mock/mock_aimd_rate_co ntrol.h"
16 #include "webrtc/test/gmock.h"
17 #include "webrtc/test/gtest.h"
18
19 using ::testing::Return;
20
21 namespace webrtc {
22
23 namespace {
24
25 constexpr int kMinIntervalMs = 2000;
26 constexpr int kMaxIntervalMs = 50000;
27
28 struct ProbingIntervalEstimatorStates {
29 std::unique_ptr<ProbingIntervalEstimator> probing_interval_estimator;
30 std::unique_ptr<MockAimdRateControl> aimd_rate_control;
31 };
32
33 ProbingIntervalEstimatorStates CreateProbingIntervalEstimatorStates() {
34 ProbingIntervalEstimatorStates states;
35 states.aimd_rate_control.reset(new MockAimdRateControl());
36 states.probing_interval_estimator.reset(new ProbingIntervalEstimator(
37 kMinIntervalMs, kMaxIntervalMs, states.aimd_rate_control.get()));
38 return states;
39 }
40 } // namespace
41
42 TEST(ProbingIntervalEstimatorTest, NoIntervalUntillWeHaveDrop) {
43 auto states = CreateProbingIntervalEstimatorStates();
44
45 EXPECT_CALL(*states.aimd_rate_control, GetLastBitrateDecreaseBps())
46 .WillOnce(Return(rtc::Optional<int>()))
47 .WillOnce(Return(rtc::Optional<int>(5000)));
48 EXPECT_CALL(*states.aimd_rate_control, GetNearMaxIncreaseRateBps())
49 .WillOnce(Return(4000))
50 .WillOnce(Return(4000));
51
52 EXPECT_EQ(rtc::Optional<int>(),
53 states.probing_interval_estimator->GetIntervalMs());
54 EXPECT_NE(rtc::Optional<int>(),
55 states.probing_interval_estimator->GetIntervalMs());
56 }
57
58 TEST(ProbingIntervalEstimatorTest, CalcInterval) {
59 auto states = CreateProbingIntervalEstimatorStates();
60 EXPECT_CALL(*states.aimd_rate_control, GetLastBitrateDecreaseBps())
61 .WillOnce(Return(rtc::Optional<int>(20000)));
62 EXPECT_CALL(*states.aimd_rate_control, GetNearMaxIncreaseRateBps())
63 .WillOnce(Return(5000));
64 EXPECT_EQ(rtc::Optional<int>(4000),
65 states.probing_interval_estimator->GetIntervalMs());
66 }
67
68 TEST(ProbingIntervalEstimatorTest, IntervalDoesNotExceedMin) {
69 auto states = CreateProbingIntervalEstimatorStates();
70 EXPECT_CALL(*states.aimd_rate_control, GetLastBitrateDecreaseBps())
71 .WillOnce(Return(rtc::Optional<int>(1000)));
72 EXPECT_CALL(*states.aimd_rate_control, GetNearMaxIncreaseRateBps())
73 .WillOnce(Return(5000));
74 EXPECT_EQ(rtc::Optional<int>(kMinIntervalMs),
75 states.probing_interval_estimator->GetIntervalMs());
76 }
77
78 TEST(ProbingIntervalEstimatorTest, IntervalDoesNotExceedMax) {
79 auto states = CreateProbingIntervalEstimatorStates();
80 EXPECT_CALL(*states.aimd_rate_control, GetLastBitrateDecreaseBps())
81 .WillOnce(Return(rtc::Optional<int>(50000)));
82 EXPECT_CALL(*states.aimd_rate_control, GetNearMaxIncreaseRateBps())
83 .WillOnce(Return(100));
84 EXPECT_EQ(rtc::Optional<int>(kMaxIntervalMs),
85 states.probing_interval_estimator->GetIntervalMs());
86 }
87 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698