Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(553)

Side by Side Diff: webrtc/rtc_base/moving_max_counter_unittest.cc

Issue 2995143002: Report max interframe delay over window insdead of interframe delay sum (Closed)
Patch Set: Implemented Sprang@ comments Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #include "webrtc/rtc_base/moving_max_counter.h"
12 #include "webrtc/test/gtest.h"
13
14 TEST(MovingMaxCounter, ReportsMaximumInTheWindow) {
15 rtc::MovingMaxCounter<int> counter(100);
16 counter.Add(1, 1);
17 EXPECT_EQ(*counter.MovingMax(1), 1);
18 counter.Add(2, 30);
19 EXPECT_EQ(*counter.MovingMax(30), 2);
20 counter.Add(100, 60);
21 EXPECT_EQ(*counter.MovingMax(60), 100);
22 counter.Add(4, 70);
23 EXPECT_EQ(*counter.MovingMax(70), 100);
24 counter.Add(5, 90);
25 EXPECT_EQ(*counter.MovingMax(90), 100);
26 }
27
28 TEST(MovingMaxCounter, IgnoresOldElements) {
29 rtc::MovingMaxCounter<int> counter(100);
30 counter.Add(1, 1);
31 counter.Add(2, 30);
32 counter.Add(100, 60);
33 counter.Add(5, 70);
34 counter.Add(4, 90);
35 EXPECT_EQ(*counter.MovingMax(160), 100);
36 // 100 is now out of the window.
37 EXPECT_EQ(*counter.MovingMax(161), 5);
38 }
39
40 TEST(MovingMaxCounter, HandlesEmptyWindow) {
41 rtc::MovingMaxCounter<int> counter(100);
42 counter.Add(123, 1);
43 EXPECT_TRUE(counter.MovingMax(101).has_value());
44 EXPECT_FALSE(counter.MovingMax(102).has_value());
45 }
sprang_webrtc 2017/08/21 14:41:09 Add a test coverage for duplicate data points for
ilnik 2017/08/21 14:59:27 Done.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698