File: text_formatting_metrics_android_unittest.cc

package info (click to toggle)
chromium 140.0.7339.185-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,193,740 kB
  • sloc: cpp: 35,093,945; ansic: 7,161,670; javascript: 4,199,694; python: 1,441,797; asm: 949,904; xml: 747,515; pascal: 187,748; perl: 88,691; sh: 88,248; objc: 79,953; sql: 52,714; cs: 44,599; fortran: 24,137; makefile: 22,114; tcl: 15,277; php: 13,980; yacc: 9,000; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (133 lines) | stat: -rw-r--r-- 6,176 bytes parent folder | download | duplicates (5)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/accessibility/text_formatting_metrics_android.h"

#include "base/test/metrics/histogram_tester.h"
#include "base/test/task_environment.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace content {

class TextFormattingMetricsAndroidTest : public testing::Test {
 public:
  TextFormattingMetricsAndroidTest()
      : task_environment_(base::test::TaskEnvironment::TimeSource::MOCK_TIME) {}
  ~TextFormattingMetricsAndroidTest() override = default;

 protected:
  base::test::TaskEnvironment task_environment_;
  base::HistogramTester histogram_tester_;
};

TEST_F(TextFormattingMetricsAndroidTest, RecorderEmitHistograms) {
  const base::TimeDelta expected_get_text_duration = base::Microseconds(20);
  const base::TimeDelta expected_set_ani_duration = base::Microseconds(30);
  const base::TimeDelta expected_total_duration =
      expected_get_text_duration + expected_set_ani_duration;
  const int expected_text_length = 40;
  const bool has_style_data = true;

  TextFormattingMetricsRecorder recorder;
  recorder.StartTimer(TextFormattingMetric::kTotalDuration);
  recorder.StartTimer(TextFormattingMetric::kGetTextContentDuration);
  task_environment_.FastForwardBy(expected_get_text_duration);
  recorder.StopTimer(TextFormattingMetric::kGetTextContentDuration);
  recorder.StartTimer(TextFormattingMetric::kSetAniTextDuration);
  task_environment_.FastForwardBy(expected_set_ani_duration);
  recorder.StopTimer(TextFormattingMetric::kSetAniTextDuration);
  recorder.StopTimer(TextFormattingMetric::kTotalDuration);

  recorder.EmitHistograms(expected_text_length, has_style_data);

  histogram_tester_.ExpectTotalCount(
      kTextFormattingGetTextContentDurationMetric, 1);
  histogram_tester_.ExpectBucketCount(
      kTextFormattingGetTextContentDurationMetric,
      expected_get_text_duration.InMicroseconds(), 1);
  histogram_tester_.ExpectTotalCount(kTextFormattingSetAniTextDurationMetric,
                                     1);
  histogram_tester_.ExpectBucketCount(
      kTextFormattingSetAniTextDurationMetric,
      expected_set_ani_duration.InMicroseconds(), 1);
  histogram_tester_.ExpectTotalCount(kTextFormattingTotalDurationMetric, 1);
  histogram_tester_.ExpectBucketCount(kTextFormattingTotalDurationMetric,
                                      expected_total_duration.InMicroseconds(),
                                      1);
  EXPECT_EQ(recorder.GetTotalDuration(), expected_total_duration);
  histogram_tester_.ExpectTotalCount(kTextFormattingTextLengthMetric, 1);
  histogram_tester_.ExpectBucketCount(kTextFormattingTextLengthMetric,
                                      expected_text_length, 1);
}

TEST_F(TextFormattingMetricsAndroidTest, RecorderEmitHistogramsNoStyleData) {
  const base::TimeDelta expected_get_text_duration = base::Microseconds(20);
  const base::TimeDelta expected_set_ani_duration = base::Microseconds(30);
  const base::TimeDelta expected_total_duration =
      expected_get_text_duration + expected_set_ani_duration;
  const int expected_text_length = 40;
  const bool has_style_data = false;

  TextFormattingMetricsRecorder recorder;
  recorder.StartTimer(TextFormattingMetric::kTotalDuration);
  recorder.StartTimer(TextFormattingMetric::kGetTextContentDuration);
  task_environment_.FastForwardBy(expected_get_text_duration);
  recorder.StopTimer(TextFormattingMetric::kGetTextContentDuration);
  recorder.StartTimer(TextFormattingMetric::kSetAniTextDuration);
  task_environment_.FastForwardBy(expected_set_ani_duration);
  recorder.StopTimer(TextFormattingMetric::kSetAniTextDuration);
  recorder.StopTimer(TextFormattingMetric::kTotalDuration);

  recorder.EmitHistograms(expected_text_length, has_style_data);

  histogram_tester_.ExpectTotalCount(
      kTextFormattingGetTextContentDurationNoStyleDataMetric, 1);
  histogram_tester_.ExpectBucketCount(
      kTextFormattingGetTextContentDurationNoStyleDataMetric,
      expected_get_text_duration.InMicroseconds(), 1);
  histogram_tester_.ExpectTotalCount(
      kTextFormattingSetAniTextDurationNoStyleDataMetric, 1);
  histogram_tester_.ExpectBucketCount(
      kTextFormattingSetAniTextDurationNoStyleDataMetric,
      expected_set_ani_duration.InMicroseconds(), 1);
  histogram_tester_.ExpectTotalCount(
      kTextFormattingTotalDurationNoStyleDataMetric, 1);
  histogram_tester_.ExpectBucketCount(
      kTextFormattingTotalDurationNoStyleDataMetric,
      expected_total_duration.InMicroseconds(), 1);
  EXPECT_EQ(recorder.GetTotalDuration(), expected_total_duration);
  histogram_tester_.ExpectTotalCount(kTextFormattingTextLengthNoStyleDataMetric,
                                     1);
  histogram_tester_.ExpectBucketCount(
      kTextFormattingTextLengthNoStyleDataMetric, expected_text_length, 1);
}

TEST_F(TextFormattingMetricsAndroidTest,
       RecordTextFormattingRangeCountsForTextLengthHistogram) {
  const std::u16string text = u"hello wonderful amazing world!";
  const int ranges_count = 16;
  RecordTextFormattingRangeCountsForTextLengthHistogram(text, ranges_count);
  histogram_tester_.ExpectTotalCount(
      kTextFormattingRangesCountForTextLength26To50Metric, 1);
  histogram_tester_.ExpectBucketCount(
      kTextFormattingRangesCountForTextLength26To50Metric, ranges_count, 1);
  histogram_tester_.ExpectTotalCount(kTextFormattingRangesTotalCountMetric, 1);
  histogram_tester_.ExpectBucketCount(kTextFormattingRangesTotalCountMetric,
                                      ranges_count, 1);
}

TEST_F(TextFormattingMetricsAndroidTest,
       RecordTextFormattingDurationForRangeCountHistogram) {
  const int ranges_count = 16;
  const base::TimeDelta delta = base::Microseconds(60);
  RecordTextFormattingDurationForRangeCountHistogram(ranges_count, delta);
  histogram_tester_.ExpectTotalCount(
      kTextFormattingDurationForRangeCount11To20Metric, 1);
  histogram_tester_.ExpectBucketCount(
      kTextFormattingDurationForRangeCount11To20Metric, delta.InMicroseconds(),
      1);
}

}  // namespace content