OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2014 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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 worker_thread_, | 508 worker_thread_, |
509 channel_manager_.get(), | 509 channel_manager_.get(), |
510 &event_log_)), | 510 &event_log_)), |
511 session_(media_controller_.get()) { | 511 session_(media_controller_.get()) { |
512 // By default, we ignore session GetStats calls. | 512 // By default, we ignore session GetStats calls. |
513 EXPECT_CALL(session_, GetStats(_)).WillRepeatedly(ReturnNull()); | 513 EXPECT_CALL(session_, GetStats(_)).WillRepeatedly(ReturnNull()); |
514 // Add default returns for mock classes. | 514 // Add default returns for mock classes. |
515 EXPECT_CALL(session_, video_channel()).WillRepeatedly(ReturnNull()); | 515 EXPECT_CALL(session_, video_channel()).WillRepeatedly(ReturnNull()); |
516 EXPECT_CALL(session_, voice_channel()).WillRepeatedly(ReturnNull()); | 516 EXPECT_CALL(session_, voice_channel()).WillRepeatedly(ReturnNull()); |
517 EXPECT_CALL(pc_, session()).WillRepeatedly(Return(&session_)); | 517 EXPECT_CALL(pc_, session()).WillRepeatedly(Return(&session_)); |
| 518 EXPECT_CALL(pc_, GetSenders()).WillRepeatedly(Return( |
| 519 std::vector<rtc::scoped_refptr<RtpSenderInterface>>())); |
| 520 EXPECT_CALL(pc_, GetReceivers()).WillRepeatedly(Return( |
| 521 std::vector<rtc::scoped_refptr<RtpReceiverInterface>>())); |
518 EXPECT_CALL(pc_, sctp_data_channels()) | 522 EXPECT_CALL(pc_, sctp_data_channels()) |
519 .WillRepeatedly(ReturnRef(data_channels_)); | 523 .WillRepeatedly(ReturnRef(data_channels_)); |
520 } | 524 } |
521 | 525 |
522 ~StatsCollectorTest() {} | 526 ~StatsCollectorTest() {} |
523 | 527 |
524 // This creates a standard setup with a transport called "trspname" | 528 // This creates a standard setup with a transport called "trspname" |
525 // having one transport channel | 529 // having one transport channel |
526 // and the specified virtual connection name. | 530 // and the specified virtual connection name. |
527 void InitSessionStats(const std::string& vc_name) { | 531 void InitSessionStats(const std::string& vc_name) { |
(...skipping 1489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2017 EXPECT_CALL(*media_channel, GetStats(_)) | 2021 EXPECT_CALL(*media_channel, GetStats(_)) |
2018 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true))); | 2022 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true))); |
2019 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard); | 2023 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard); |
2020 stats.GetStats(NULL, &reports); | 2024 stats.GetStats(NULL, &reports); |
2021 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded), | 2025 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded), |
2022 ExtractSsrcStatsValue(reports, | 2026 ExtractSsrcStatsValue(reports, |
2023 StatsReport::kStatsValueNameFramesDecoded)); | 2027 StatsReport::kStatsValueNameFramesDecoded)); |
2024 } | 2028 } |
2025 | 2029 |
2026 } // namespace webrtc | 2030 } // namespace webrtc |
OLD | NEW |