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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 QualityThreshold thresh(kLowThreshold, kHighThreshold, kFraction, | 87 QualityThreshold thresh(kLowThreshold, kHighThreshold, kFraction, |
88 kMaxMeasurements); | 88 kMaxMeasurements); |
89 | 89 |
90 for (int i = 0; i < 2 * kMaxMeasurements; ++i) { | 90 for (int i = 0; i < 2 * kMaxMeasurements; ++i) { |
91 EXPECT_FALSE(thresh.IsHigh()); | 91 EXPECT_FALSE(thresh.IsHigh()); |
92 thresh.AddMeasurement(kBetweenThresholds); | 92 thresh.AddMeasurement(kBetweenThresholds); |
93 } | 93 } |
94 EXPECT_FALSE(thresh.IsHigh()); | 94 EXPECT_FALSE(thresh.IsHigh()); |
95 } | 95 } |
96 | 96 |
| 97 TEST(QualityThresholdTest, FractionHigh) { |
| 98 const int kLowThreshold = 0; |
| 99 const int kHighThreshold = 2; |
| 100 const float kFraction = 0.75f; |
| 101 const int kMaxMeasurements = 10; |
| 102 |
| 103 const int kBetweenThresholds = (kLowThreshold + kHighThreshold) / 2; |
| 104 const int kNeededMeasurements = |
| 105 static_cast<int>(kFraction * kMaxMeasurements + 1); |
| 106 |
| 107 QualityThreshold thresh(kLowThreshold, kHighThreshold, kFraction, |
| 108 kMaxMeasurements); |
| 109 |
| 110 for (int i = 0; i < kMaxMeasurements; ++i) { |
| 111 EXPECT_FALSE(thresh.FractionHigh(1)); |
| 112 thresh.AddMeasurement(kBetweenThresholds); |
| 113 } |
| 114 |
| 115 for (int i = 0; i < kNeededMeasurements; i++) { |
| 116 EXPECT_FALSE(thresh.FractionHigh(1)); |
| 117 thresh.AddMeasurement(kHighThreshold); |
| 118 } |
| 119 EXPECT_FALSE(thresh.FractionHigh(2)); |
| 120 ASSERT_TRUE(thresh.FractionHigh(1)); |
| 121 EXPECT_NEAR(*thresh.FractionHigh(1), 1, 0.001); |
| 122 |
| 123 for (int i = 0; i < kNeededMeasurements; i++) { |
| 124 EXPECT_NEAR(*thresh.FractionHigh(1), 1, 0.001); |
| 125 thresh.AddMeasurement(kLowThreshold); |
| 126 } |
| 127 EXPECT_NEAR( |
| 128 *thresh.FractionHigh(1), |
| 129 static_cast<double>(kNeededMeasurements) / (kNeededMeasurements + 1), |
| 130 0.001); |
| 131 } |
| 132 |
97 } // namespace webrtc | 133 } // namespace webrtc |
OLD | NEW |