aboutsummaryrefslogtreecommitdiff
path: root/modules/audio_processing/aec3/render_delay_controller_metrics_unittest.cc
blob: 2d242336f29ad83af115054d4959062a9b9df84a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 *  Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "modules/audio_processing/aec3/render_delay_controller_metrics.h"

#include "absl/types/optional.h"
#include "modules/audio_processing/aec3/aec3_common.h"
#include "system_wrappers/include/metrics.h"
#include "test/gtest.h"

namespace webrtc {

// Verify the general functionality of RenderDelayControllerMetrics.
TEST(RenderDelayControllerMetrics, NormalUsage) {
  RenderDelayControllerMetrics metrics;

  int expected_num_metric_reports = 0;

  for (int j = 0; j < 3; ++j) {
    for (int k = 0; k < kMetricsReportingIntervalBlocks - 1; ++k) {
      metrics.Update(absl::nullopt, absl::nullopt,
                     ClockdriftDetector::Level::kNone);
      EXPECT_METRIC_EQ(
          metrics::NumSamples("WebRTC.Audio.EchoCanceller.EchoPathDelay"),
          expected_num_metric_reports);
      EXPECT_METRIC_EQ(
          metrics::NumSamples("WebRTC.Audio.EchoCanceller.BufferDelay"),
          expected_num_metric_reports);
      EXPECT_METRIC_EQ(metrics::NumSamples(
                           "WebRTC.Audio.EchoCanceller.ReliableDelayEstimates"),
                       expected_num_metric_reports);
      EXPECT_METRIC_EQ(
          metrics::NumSamples("WebRTC.Audio.EchoCanceller.DelayChanges"),
          expected_num_metric_reports);
      EXPECT_METRIC_EQ(
          metrics::NumSamples("WebRTC.Audio.EchoCanceller.Clockdrift"),
          expected_num_metric_reports);
    }

    // We expect metric reports every kMetricsReportingIntervalBlocks blocks.
    ++expected_num_metric_reports;

    metrics.Update(absl::nullopt, absl::nullopt,
                   ClockdriftDetector::Level::kNone);
    EXPECT_METRIC_EQ(
        metrics::NumSamples("WebRTC.Audio.EchoCanceller.EchoPathDelay"),
        expected_num_metric_reports);
    EXPECT_METRIC_EQ(
        metrics::NumSamples("WebRTC.Audio.EchoCanceller.BufferDelay"),
        expected_num_metric_reports);
    EXPECT_METRIC_EQ(metrics::NumSamples(
                         "WebRTC.Audio.EchoCanceller.ReliableDelayEstimates"),
                     expected_num_metric_reports);
    EXPECT_METRIC_EQ(
        metrics::NumSamples("WebRTC.Audio.EchoCanceller.DelayChanges"),
        expected_num_metric_reports);
    EXPECT_METRIC_EQ(
        metrics::NumSamples("WebRTC.Audio.EchoCanceller.Clockdrift"),
        expected_num_metric_reports);
  }
}

}  // namespace webrtc