OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
128 controller_->SignalNetworkState(kNetworkDown); | 128 controller_->SignalNetworkState(kNetworkDown); |
129 } | 129 } |
130 | 130 |
131 TEST_F(CongestionControllerTest, ResetBweAndBitrates) { | 131 TEST_F(CongestionControllerTest, ResetBweAndBitrates) { |
132 int new_bitrate = 200000; | 132 int new_bitrate = 200000; |
133 EXPECT_CALL(observer_, OnNetworkChanged(new_bitrate, _, _)); | 133 EXPECT_CALL(observer_, OnNetworkChanged(new_bitrate, _, _)); |
134 EXPECT_CALL(*pacer_, SetEstimatedBitrate(new_bitrate)); | 134 EXPECT_CALL(*pacer_, SetEstimatedBitrate(new_bitrate)); |
135 controller_->ResetBweAndBitrates(new_bitrate, -1, -1); | 135 controller_->ResetBweAndBitrates(new_bitrate, -1, -1); |
136 | 136 |
137 // If the bitrate is reset to -1, the new starting bitrate will be | 137 // If the bitrate is reset to -1, the new starting bitrate will be |
138 // the minimum default bitrate 10000bps. | 138 // the minimum default bitrate kMinBitrateBps. |
minyue-webrtc
2016/10/13 08:12:31
does the test depend on the actual value?
michaelt
2016/10/13 09:38:41
Yes the test insert ileal values and expect then t
| |
139 int min_default_bitrate = 10000; | 139 EXPECT_CALL( |
the sun
2016/10/12 15:29:36
strange formatting - did git cl format do this?
michaelt
2016/10/13 06:34:49
Yes, this is done by "cl format"
| |
140 EXPECT_CALL(observer_, OnNetworkChanged(min_default_bitrate, _, _)); | 140 observer_, |
141 EXPECT_CALL(*pacer_, SetEstimatedBitrate(min_default_bitrate)); | 141 OnNetworkChanged(remote_bitrate_estimator_defines::kMinBitrateBps, _, _)); |
142 EXPECT_CALL(*pacer_, SetEstimatedBitrate( | |
143 remote_bitrate_estimator_defines::kMinBitrateBps)); | |
142 controller_->ResetBweAndBitrates(-1, -1, -1); | 144 controller_->ResetBweAndBitrates(-1, -1, -1); |
143 } | 145 } |
144 | 146 |
145 TEST_F(CongestionControllerTest, | 147 TEST_F(CongestionControllerTest, |
146 SignalNetworkStateAndQueueIsFullAndEstimateChange) { | 148 SignalNetworkStateAndQueueIsFullAndEstimateChange) { |
147 // Send queue is full | 149 // Send queue is full |
148 EXPECT_CALL(*pacer_, ExpectedQueueTimeMs()) | 150 EXPECT_CALL(*pacer_, ExpectedQueueTimeMs()) |
149 .WillRepeatedly(Return(PacedSender::kMaxQueueLengthMs + 1)); | 151 .WillRepeatedly(Return(PacedSender::kMaxQueueLengthMs + 1)); |
150 EXPECT_CALL(observer_, OnNetworkChanged(0, _, _)); | 152 EXPECT_CALL(observer_, OnNetworkChanged(0, _, _)); |
151 controller_->Process(); | 153 controller_->Process(); |
(...skipping 30 matching lines...) Expand all Loading... | |
182 controller_->SignalNetworkState(kNetworkDown); | 184 controller_->SignalNetworkState(kNetworkDown); |
183 EXPECT_EQ(0, controller_->GetPacerQueuingDelayMs()); | 185 EXPECT_EQ(0, controller_->GetPacerQueuingDelayMs()); |
184 | 186 |
185 // Network is up, pacer delay should be reported. | 187 // Network is up, pacer delay should be reported. |
186 controller_->SignalNetworkState(kNetworkUp); | 188 controller_->SignalNetworkState(kNetworkUp); |
187 EXPECT_EQ(kQueueTimeMs, controller_->GetPacerQueuingDelayMs()); | 189 EXPECT_EQ(kQueueTimeMs, controller_->GetPacerQueuingDelayMs()); |
188 } | 190 } |
189 | 191 |
190 } // namespace test | 192 } // namespace test |
191 } // namespace webrtc | 193 } // namespace webrtc |
OLD | NEW |