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 <algorithm> |
| 12 |
11 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
12 #include "webrtc/base/rate_statistics.h" | 14 #include "webrtc/base/rate_statistics.h" |
13 | 15 |
14 namespace { | 16 namespace { |
15 | 17 |
16 using webrtc::RateStatistics; | 18 using webrtc::RateStatistics; |
17 | 19 |
| 20 const int64_t kWindowMs = 500; |
| 21 |
18 class RateStatisticsTest : public ::testing::Test { | 22 class RateStatisticsTest : public ::testing::Test { |
19 protected: | 23 protected: |
20 RateStatisticsTest() : stats_(500, 8000) {} | 24 RateStatisticsTest() : stats_(kWindowMs, 8000) {} |
21 RateStatistics stats_; | 25 RateStatistics stats_; |
22 }; | 26 }; |
23 | 27 |
24 TEST_F(RateStatisticsTest, TestStrictMode) { | 28 TEST_F(RateStatisticsTest, TestStrictMode) { |
25 int64_t now_ms = 0; | 29 int64_t now_ms = 0; |
26 // Should be initialized to 0. | 30 // Should be initialized to 0. |
27 EXPECT_EQ(0u, stats_.Rate(now_ms)); | 31 EXPECT_EQ(0u, stats_.Rate(now_ms)); |
28 stats_.Update(1500, now_ms); | 32 stats_.Update(1500, now_ms); |
29 // Expecting 24 kbps given a 500 ms window with one 1500 bytes packet. | 33 // Expecting 1200 kbps since the window is initially kept small and grows as |
30 EXPECT_EQ(24000u, stats_.Rate(now_ms)); | 34 // we have more data. |
| 35 EXPECT_EQ(12000000u, stats_.Rate(now_ms)); |
31 stats_.Reset(); | 36 stats_.Reset(); |
32 // Expecting 0 after init. | 37 // Expecting 0 after init. |
33 EXPECT_EQ(0u, stats_.Rate(now_ms)); | 38 EXPECT_EQ(0u, stats_.Rate(now_ms)); |
34 for (int i = 0; i < 100000; ++i) { | 39 for (int i = 0; i < 100000; ++i) { |
35 if (now_ms % 10 == 0) { | 40 if (now_ms % 10 == 0) { |
36 stats_.Update(1500, now_ms); | 41 stats_.Update(1500, now_ms); |
37 } | 42 } |
38 // Approximately 1200 kbps expected. Not exact since when packets | 43 // Approximately 1200 kbps expected. Not exact since when packets |
39 // are removed we will jump 10 ms to the next packet. | 44 // are removed we will jump 10 ms to the next packet. |
40 if (now_ms > 0 && now_ms % 500 == 0) { | 45 if (now_ms > 0 && now_ms % kWindowMs == 0) { |
41 EXPECT_NEAR(1200000u, stats_.Rate(now_ms), 24000u); | 46 EXPECT_NEAR(1200000u, stats_.Rate(now_ms), 22000u); |
42 } | 47 } |
43 now_ms += 1; | 48 now_ms += 1; |
44 } | 49 } |
45 now_ms += 500; | 50 now_ms += kWindowMs; |
46 // The window is 2 seconds. If nothing has been received for that time | 51 // The window is 2 seconds. If nothing has been received for that time |
47 // the estimate should be 0. | 52 // the estimate should be 0. |
48 EXPECT_EQ(0u, stats_.Rate(now_ms)); | 53 EXPECT_EQ(0u, stats_.Rate(now_ms)); |
49 } | 54 } |
50 | 55 |
51 TEST_F(RateStatisticsTest, IncreasingThenDecreasingBitrate) { | 56 TEST_F(RateStatisticsTest, IncreasingThenDecreasingBitrate) { |
52 int64_t now_ms = 0; | 57 int64_t now_ms = 0; |
53 stats_.Reset(); | 58 stats_.Reset(); |
54 // Expecting 0 after init. | 59 // Expecting 0 after init. |
55 uint32_t bitrate = stats_.Rate(now_ms); | 60 uint32_t bitrate = stats_.Rate(now_ms); |
56 EXPECT_EQ(0u, bitrate); | 61 EXPECT_EQ(0u, bitrate); |
| 62 const uint32_t kExpectedBitrate = 8000000; |
57 // 1000 bytes per millisecond until plateau is reached. | 63 // 1000 bytes per millisecond until plateau is reached. |
| 64 int prev_error = kExpectedBitrate; |
58 while (++now_ms < 10000) { | 65 while (++now_ms < 10000) { |
59 stats_.Update(1000, now_ms); | 66 stats_.Update(1000, now_ms); |
60 uint32_t new_bitrate = stats_.Rate(now_ms); | 67 bitrate = stats_.Rate(now_ms); |
61 if (new_bitrate != bitrate) { | 68 int error = kExpectedBitrate - bitrate; |
62 // New bitrate must be higher than previous one. | 69 error = std::abs(error); |
63 EXPECT_GT(new_bitrate, bitrate); | 70 // Expect the estimation error to decrease as the window is extended. |
64 } else { | 71 EXPECT_LE(error, prev_error + 1); |
65 // Plateau reached, 8000 kbps expected. | 72 prev_error = error; |
66 EXPECT_NEAR(8000000u, bitrate, 80000u); | |
67 break; | |
68 } | |
69 bitrate = new_bitrate; | |
70 } | 73 } |
| 74 // Window filled, expect to be close to 8000000. |
| 75 EXPECT_EQ(kExpectedBitrate, bitrate); |
| 76 |
71 // 1000 bytes per millisecond until 10-second mark, 8000 kbps expected. | 77 // 1000 bytes per millisecond until 10-second mark, 8000 kbps expected. |
72 while (++now_ms < 10000) { | 78 while (++now_ms < 10000) { |
73 stats_.Update(1000, now_ms); | 79 stats_.Update(1000, now_ms); |
74 bitrate = stats_.Rate(now_ms); | 80 bitrate = stats_.Rate(now_ms); |
75 EXPECT_NEAR(8000000u, bitrate, 80000u); | 81 EXPECT_EQ(kExpectedBitrate, bitrate); |
76 } | 82 } |
77 // Zero bytes per millisecond until 0 is reached. | 83 // Zero bytes per millisecond until 0 is reached. |
78 while (++now_ms < 20000) { | 84 while (++now_ms < 20000) { |
79 stats_.Update(0, now_ms); | 85 stats_.Update(0, now_ms); |
80 uint32_t new_bitrate = stats_.Rate(now_ms); | 86 uint32_t new_bitrate = stats_.Rate(now_ms); |
81 if (new_bitrate != bitrate) { | 87 if (new_bitrate != bitrate) { |
82 // New bitrate must be lower than previous one. | 88 // New bitrate must be lower than previous one. |
83 EXPECT_LT(new_bitrate, bitrate); | 89 EXPECT_LT(new_bitrate, bitrate); |
84 } else { | 90 } else { |
85 // 0 kbps expected. | 91 // 0 kbps expected. |
86 EXPECT_EQ(0u, bitrate); | 92 EXPECT_EQ(0u, bitrate); |
87 break; | 93 break; |
88 } | 94 } |
89 bitrate = new_bitrate; | 95 bitrate = new_bitrate; |
90 } | 96 } |
91 // Zero bytes per millisecond until 20-second mark, 0 kbps expected. | 97 // Zero bytes per millisecond until 20-second mark, 0 kbps expected. |
92 while (++now_ms < 20000) { | 98 while (++now_ms < 20000) { |
93 stats_.Update(0, now_ms); | 99 stats_.Update(0, now_ms); |
94 EXPECT_EQ(0u, stats_.Rate(now_ms)); | 100 EXPECT_EQ(0u, stats_.Rate(now_ms)); |
95 } | 101 } |
96 } | 102 } |
| 103 |
| 104 TEST_F(RateStatisticsTest, ResetAfterSilence) { |
| 105 int64_t now_ms = 0; |
| 106 stats_.Reset(); |
| 107 // Expecting 0 after init. |
| 108 uint32_t bitrate = stats_.Rate(now_ms); |
| 109 EXPECT_EQ(0u, bitrate); |
| 110 const uint32_t kExpectedBitrate = 8000000; |
| 111 // 1000 bytes per millisecond until the window has been filled. |
| 112 int prev_error = kExpectedBitrate; |
| 113 while (++now_ms < 10000) { |
| 114 stats_.Update(1000, now_ms); |
| 115 bitrate = stats_.Rate(now_ms); |
| 116 int error = kExpectedBitrate - bitrate; |
| 117 error = std::abs(error); |
| 118 // Expect the estimation error to decrease as the window is extended. |
| 119 EXPECT_LE(error, prev_error + 1); |
| 120 prev_error = error; |
| 121 } |
| 122 // Window filled, expect to be close to 8000000. |
| 123 EXPECT_EQ(kExpectedBitrate, bitrate); |
| 124 |
| 125 now_ms += kWindowMs + 1; |
| 126 EXPECT_EQ(0u, stats_.Rate(now_ms)); |
| 127 stats_.Update(1000, now_ms); |
| 128 // We expect one sample of 1000 bytes, and that the bitrate is measured over |
| 129 // 1 ms, i.e., 8 * 1000 / 0.001 = 8000000. |
| 130 EXPECT_EQ(kExpectedBitrate, stats_.Rate(now_ms)); |
| 131 } |
97 } // namespace | 132 } // namespace |
OLD | NEW |