OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 |
11 #include <memory> | 11 #include <memory> |
12 | 12 |
13 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
15 | 15 |
16 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 16 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
17 #include "webrtc/system_wrappers/include/metrics.h" | 17 #include "webrtc/system_wrappers/include/metrics.h" |
| 18 #include "webrtc/system_wrappers/include/metrics_default.h" |
18 #include "webrtc/system_wrappers/include/tick_util.h" | 19 #include "webrtc/system_wrappers/include/tick_util.h" |
19 #include "webrtc/test/histogram.h" | |
20 #include "webrtc/video/call_stats.h" | 20 #include "webrtc/video/call_stats.h" |
21 | 21 |
22 using ::testing::_; | 22 using ::testing::_; |
23 using ::testing::AnyNumber; | 23 using ::testing::AnyNumber; |
24 using ::testing::Return; | 24 using ::testing::Return; |
25 | 25 |
26 namespace webrtc { | 26 namespace webrtc { |
27 | 27 |
28 class MockStatsObserver : public CallStatsObserver { | 28 class MockStatsObserver : public CallStatsObserver { |
29 public: | 29 public: |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 rtcp_rtt_stats->OnRttUpdate(kRttLow); | 198 rtcp_rtt_stats->OnRttUpdate(kRttLow); |
199 rtcp_rtt_stats->OnRttUpdate(kRttHigh); | 199 rtcp_rtt_stats->OnRttUpdate(kRttHigh); |
200 EXPECT_CALL(stats_observer, OnRttUpdate(kAvgRtt, kRttHigh)).Times(1); | 200 EXPECT_CALL(stats_observer, OnRttUpdate(kAvgRtt, kRttHigh)).Times(1); |
201 call_stats_->Process(); | 201 call_stats_->Process(); |
202 EXPECT_EQ(kAvgRtt, rtcp_rtt_stats->LastProcessedRtt()); | 202 EXPECT_EQ(kAvgRtt, rtcp_rtt_stats->LastProcessedRtt()); |
203 | 203 |
204 call_stats_->DeregisterStatsObserver(&stats_observer); | 204 call_stats_->DeregisterStatsObserver(&stats_observer); |
205 } | 205 } |
206 | 206 |
207 TEST_F(CallStatsTest, ProducesHistogramMetrics) { | 207 TEST_F(CallStatsTest, ProducesHistogramMetrics) { |
| 208 metrics::Reset(); |
| 209 metrics::Enable(); |
208 const int64_t kRtt = 123; | 210 const int64_t kRtt = 123; |
209 RtcpRttStats* rtcp_rtt_stats = call_stats_->rtcp_rtt_stats(); | 211 RtcpRttStats* rtcp_rtt_stats = call_stats_->rtcp_rtt_stats(); |
210 rtcp_rtt_stats->OnRttUpdate(kRtt); | 212 rtcp_rtt_stats->OnRttUpdate(kRtt); |
211 fake_clock_.AdvanceTimeMilliseconds(metrics::kMinRunTimeInSeconds * 1000); | 213 fake_clock_.AdvanceTimeMilliseconds(metrics::kMinRunTimeInSeconds * 1000); |
212 rtcp_rtt_stats->OnRttUpdate(kRtt); | 214 rtcp_rtt_stats->OnRttUpdate(kRtt); |
213 call_stats_->Process(); | 215 call_stats_->Process(); |
214 call_stats_.reset(); | 216 call_stats_.reset(); |
215 | 217 |
216 EXPECT_EQ(1, test::NumHistogramSamples( | 218 EXPECT_EQ(1, metrics::NumSamples( |
217 "WebRTC.Video.AverageRoundTripTimeInMilliseconds")); | 219 "WebRTC.Video.AverageRoundTripTimeInMilliseconds")); |
218 EXPECT_EQ(kRtt, test::LastHistogramSample( | 220 EXPECT_EQ(1, metrics::NumEvents( |
219 "WebRTC.Video.AverageRoundTripTimeInMilliseconds")); | 221 "WebRTC.Video.AverageRoundTripTimeInMilliseconds", kRtt)); |
220 } | 222 } |
221 | 223 |
222 } // namespace webrtc | 224 } // namespace webrtc |
OLD | NEW |