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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 EXPECT_EQ(30u, sent_nacks_.size()); | 283 EXPECT_EQ(30u, sent_nacks_.size()); |
284 | 284 |
285 sent_nacks_.clear(); | 285 sent_nacks_.clear(); |
286 clock_->AdvanceTimeMilliseconds(100); | 286 clock_->AdvanceTimeMilliseconds(100); |
287 nack_module_.ClearUpTo(0); | 287 nack_module_.ClearUpTo(0); |
288 nack_module_.Process(); | 288 nack_module_.Process(); |
289 EXPECT_EQ(15u, sent_nacks_.size()); | 289 EXPECT_EQ(15u, sent_nacks_.size()); |
290 EXPECT_EQ(0, sent_nacks_[0]); | 290 EXPECT_EQ(0, sent_nacks_[0]); |
291 } | 291 } |
292 | 292 |
| 293 TEST_F(TestNackModule, PacketNackCount) { |
| 294 VCMPacket packet; |
| 295 packet.seqNum = 0; |
| 296 EXPECT_EQ(0, nack_module_.OnReceivedPacket(packet)); |
| 297 packet.seqNum = 2; |
| 298 EXPECT_EQ(0, nack_module_.OnReceivedPacket(packet)); |
| 299 packet.seqNum = 1; |
| 300 EXPECT_EQ(1, nack_module_.OnReceivedPacket(packet)); |
| 301 |
| 302 sent_nacks_.clear(); |
| 303 nack_module_.UpdateRtt(100); |
| 304 packet.seqNum = 5; |
| 305 EXPECT_EQ(0, nack_module_.OnReceivedPacket(packet)); |
| 306 clock_->AdvanceTimeMilliseconds(100); |
| 307 nack_module_.Process(); |
| 308 clock_->AdvanceTimeMilliseconds(100); |
| 309 nack_module_.Process(); |
| 310 packet.seqNum = 3; |
| 311 EXPECT_EQ(3, nack_module_.OnReceivedPacket(packet)); |
| 312 packet.seqNum = 4; |
| 313 EXPECT_EQ(3, nack_module_.OnReceivedPacket(packet)); |
| 314 EXPECT_EQ(0, nack_module_.OnReceivedPacket(packet)); |
| 315 } |
| 316 |
293 } // namespace webrtc | 317 } // namespace webrtc |
OLD | NEW |