Chromium Code Reviews| OLD | NEW |
|---|---|
| (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, NoIntervalTillWeHaveDrop) { | |
|
minyue-webrtc
2016/11/14 16:50:42
Till -> Untill
and good to add a case that when G
michaelt
2016/11/15 09:41:59
Done.
| |
| 43 auto states = CreateProbingIntervalEstimatorStates(); | |
| 44 EXPECT_CALL(*states.aimd_rate_control, GetLastDecrease()) | |
| 45 .WillOnce(Return(rtc::Optional<int>())); | |
| 46 EXPECT_CALL(*states.aimd_rate_control, GetNearMaxIncreaseRateBps()) | |
| 47 .WillOnce(Return(4000)); | |
| 48 EXPECT_EQ(rtc::Optional<int>(), | |
| 49 states.probing_interval_estimator->GetIntervalMs()); | |
| 50 } | |
| 51 | |
| 52 TEST(ProbingIntervalEstimatorTest, CalcInterval) { | |
| 53 auto states = CreateProbingIntervalEstimatorStates(); | |
| 54 EXPECT_CALL(*states.aimd_rate_control, GetLastDecrease()) | |
| 55 .WillOnce(Return(rtc::Optional<int>(20000))); | |
| 56 EXPECT_CALL(*states.aimd_rate_control, GetNearMaxIncreaseRateBps()) | |
| 57 .WillOnce(Return(5000)); | |
| 58 EXPECT_EQ(rtc::Optional<int>(4000), | |
| 59 states.probing_interval_estimator->GetIntervalMs()); | |
| 60 } | |
| 61 | |
| 62 TEST(ProbingIntervalEstimatorTest, IntervalNotExceedMin) { | |
|
minyue-webrtc
2016/11/14 16:50:42
Not->DoesNot
michaelt
2016/11/15 09:41:59
Done.
| |
| 63 auto states = CreateProbingIntervalEstimatorStates(); | |
| 64 EXPECT_CALL(*states.aimd_rate_control, GetLastDecrease()) | |
| 65 .WillOnce(Return(rtc::Optional<int>(1000))); | |
| 66 EXPECT_CALL(*states.aimd_rate_control, GetNearMaxIncreaseRateBps()) | |
| 67 .WillOnce(Return(5000)); | |
| 68 EXPECT_EQ(rtc::Optional<int>(kMinIntervalMs), | |
| 69 states.probing_interval_estimator->GetIntervalMs()); | |
| 70 } | |
| 71 | |
| 72 TEST(ProbingIntervalEstimatorTest, IntervalNotExceedMax) { | |
|
minyue-webrtc
2016/11/14 16:50:42
Not->DoesNot
michaelt
2016/11/15 09:41:59
Done.
| |
| 73 auto states = CreateProbingIntervalEstimatorStates(); | |
| 74 EXPECT_CALL(*states.aimd_rate_control, GetLastDecrease()) | |
| 75 .WillOnce(Return(rtc::Optional<int>(50000))); | |
| 76 EXPECT_CALL(*states.aimd_rate_control, GetNearMaxIncreaseRateBps()) | |
| 77 .WillOnce(Return(100)); | |
| 78 EXPECT_EQ(rtc::Optional<int>(kMaxIntervalMs), | |
| 79 states.probing_interval_estimator->GetIntervalMs()); | |
| 80 } | |
| 81 } // namespace webrtc | |
| OLD | NEW |