File: stability_metrics_helper_unittest.cc

package info (click to toggle)
chromium 138.0.7204.157-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,864 kB
  • sloc: cpp: 34,936,859; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,967; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (257 lines) | stat: -rw-r--r-- 10,328 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/metrics/stability_metrics_helper.h"

#include <memory>

#include "base/process/kill.h"
#include "base/test/metrics/histogram_tester.h"
#include "build/build_config.h"
#include "components/prefs/pref_service.h"
#include "components/prefs/scoped_user_pref_update.h"
#include "components/prefs/testing_pref_service.h"
#include "extensions/buildflags/buildflags.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/metrics_proto/system_profile.pb.h"

namespace metrics {

namespace {

enum RendererType {
  RENDERER_TYPE_RENDERER = 1,
  RENDERER_TYPE_EXTENSION,
  // NOTE: Add new action types only immediately above this line. Also,
  // make sure the enum list in tools/metrics/histograms/histograms.xml is
  // updated with any change in here.
  RENDERER_TYPE_COUNT
};

class StabilityMetricsHelperTest : public testing::Test {
 public:
  StabilityMetricsHelperTest(const StabilityMetricsHelperTest&) = delete;
  StabilityMetricsHelperTest& operator=(const StabilityMetricsHelperTest&) =
      delete;

 protected:
  StabilityMetricsHelperTest() : prefs_(new TestingPrefServiceSimple) {
    StabilityMetricsHelper::RegisterPrefs(prefs()->registry());
  }

  TestingPrefServiceSimple* prefs() { return prefs_.get(); }

 private:
  std::unique_ptr<TestingPrefServiceSimple> prefs_;
};

}  // namespace

#if BUILDFLAG(IS_IOS)
TEST_F(StabilityMetricsHelperTest, LogRendererCrash) {
  StabilityMetricsHelper helper(prefs());
  base::HistogramTester histogram_tester;

  helper.LogRendererCrash();

  constexpr int kDummyExitCode = 105;
  histogram_tester.ExpectUniqueSample("CrashExitCodes.Renderer", kDummyExitCode,
                                      1);
  histogram_tester.ExpectBucketCount("BrowserRenderProcessHost.ChildCrashes",
                                     RENDERER_TYPE_RENDERER, 1);
  histogram_tester.ExpectBucketCount("Stability.Counts2",
                                     StabilityEventType::kRendererCrash, 1);
  histogram_tester.ExpectBucketCount("Stability.Counts2",
                                     StabilityEventType::kExtensionCrash, 0);
}
#elif !BUILDFLAG(IS_ANDROID)
TEST_F(StabilityMetricsHelperTest, LogRendererCrash) {
  StabilityMetricsHelper helper(prefs());
  base::HistogramTester histogram_tester;

  // Crash and abnormal termination should increment renderer crash count.
  helper.LogRendererCrash(RendererHostedContentType::kForegroundMainFrame,
                          base::TERMINATION_STATUS_PROCESS_CRASHED, 1);

  helper.LogRendererCrash(RendererHostedContentType::kForegroundMainFrame,
                          base::TERMINATION_STATUS_ABNORMAL_TERMINATION, 1);

  // OOM should increment renderer crash count.
  helper.LogRendererCrash(RendererHostedContentType::kForegroundMainFrame,
                          base::TERMINATION_STATUS_OOM, 1);

  // Kill does not increment renderer crash count.
  helper.LogRendererCrash(RendererHostedContentType::kForegroundMainFrame,
                          base::TERMINATION_STATUS_PROCESS_WAS_KILLED, 1);

  // Failed launch increments failed launch count.
  helper.LogRendererCrash(RendererHostedContentType::kForegroundMainFrame,
                          base::TERMINATION_STATUS_LAUNCH_FAILED, 1);

  histogram_tester.ExpectUniqueSample("CrashExitCodes.Renderer", 1, 3);
  histogram_tester.ExpectBucketCount("BrowserRenderProcessHost.ChildCrashes",
                                     RENDERER_TYPE_RENDERER, 3);
  histogram_tester.ExpectBucketCount("Stability.Counts2",
                                     StabilityEventType::kRendererCrash, 3);
  histogram_tester.ExpectBucketCount(
      "Stability.Counts2", StabilityEventType::kRendererFailedLaunch, 1);
  histogram_tester.ExpectBucketCount("Stability.Counts2",
                                     StabilityEventType::kExtensionCrash, 0);

  // One launch failure each.
  histogram_tester.ExpectBucketCount(
      "BrowserRenderProcessHost.ChildLaunchFailures", RENDERER_TYPE_RENDERER,
      1);

  // TERMINATION_STATUS_PROCESS_WAS_KILLED for a renderer.
  histogram_tester.ExpectBucketCount("BrowserRenderProcessHost.ChildKills",
                                     RENDERER_TYPE_RENDERER, 1);
  histogram_tester.ExpectBucketCount("BrowserRenderProcessHost.ChildKills",
                                     RENDERER_TYPE_EXTENSION, 0);
  histogram_tester.ExpectBucketCount(
      "BrowserRenderProcessHost.ChildLaunchFailureCodes", 1, 1);
}
#endif

// Note: ENABLE_EXTENSIONS is set to false in Android
#if BUILDFLAG(ENABLE_EXTENSIONS)
TEST_F(StabilityMetricsHelperTest, LogRendererCrashEnableExtensions) {
  StabilityMetricsHelper helper(prefs());
  base::HistogramTester histogram_tester;

  // Crash and abnormal termination should increment extension crash count.
  helper.LogRendererCrash(RendererHostedContentType::kExtension,
                          base::TERMINATION_STATUS_PROCESS_CRASHED, 1);

  // OOM should increment extension renderer crash count.
  helper.LogRendererCrash(RendererHostedContentType::kExtension,
                          base::TERMINATION_STATUS_OOM, 1);

  // Failed launch increments extension failed launch count.
  helper.LogRendererCrash(RendererHostedContentType::kExtension,
                          base::TERMINATION_STATUS_LAUNCH_FAILED, 1);

  histogram_tester.ExpectBucketCount("Stability.Counts2",
                                     StabilityEventType::kRendererCrash, 0);
  histogram_tester.ExpectBucketCount(
      "Stability.Counts2", StabilityEventType::kExtensionRendererFailedLaunch,
      1);
  histogram_tester.ExpectBucketCount("Stability.Counts2",
                                     StabilityEventType::kExtensionCrash, 2);

  histogram_tester.ExpectBucketCount(
      "BrowserRenderProcessHost.ChildLaunchFailureCodes", 1, 1);
  histogram_tester.ExpectUniqueSample("CrashExitCodes.Extension", 1, 2);
  histogram_tester.ExpectBucketCount("BrowserRenderProcessHost.ChildCrashes",
                                     RENDERER_TYPE_EXTENSION, 2);
  histogram_tester.ExpectBucketCount(
      "BrowserRenderProcessHost.ChildLaunchFailures", RENDERER_TYPE_EXTENSION,
      1);
}
#endif  // BUILDFLAG(ENABLE_EXTENSIONS)

#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
// Verifies that "Stability.RendererAbnormalTermination2.*" histograms are
// correctly recorded by `LogRendererCrash`.
TEST_F(StabilityMetricsHelperTest, RendererAbnormalTerminationCount) {
  StabilityMetricsHelper helper(prefs());

  {
    // Normal termination does not record anything.
    base::HistogramTester tester;
    helper.LogRendererCrash(
        RendererHostedContentType::kForegroundMainFrame,
        base::TerminationStatus::TERMINATION_STATUS_NORMAL_TERMINATION, 0);
    EXPECT_EQ("", tester.GetAllHistogramsRecorded());
  }

  // Test all abnormal termination status / hosted content type combinations.
  for (auto status : {
           base::TERMINATION_STATUS_ABNORMAL_TERMINATION,
           base::TERMINATION_STATUS_PROCESS_WAS_KILLED,
           base::TERMINATION_STATUS_PROCESS_CRASHED,
           base::TERMINATION_STATUS_STILL_RUNNING,
#if BUILDFLAG(IS_CHROMEOS)
           base::TERMINATION_STATUS_PROCESS_WAS_KILLED_BY_OOM,
#endif
           base::TERMINATION_STATUS_LAUNCH_FAILED,
           base::TERMINATION_STATUS_OOM,
#if BUILDFLAG(IS_WIN)
           base::TERMINATION_STATUS_INTEGRITY_FAILURE,
#endif
       }) {
#if BUILDFLAG(ENABLE_EXTENSIONS)
    {
      base::HistogramTester tester;
      helper.LogRendererCrash(RendererHostedContentType::kExtension, status, 0);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.HostedContentType",
          RendererHostedContentType::kExtension, 1);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.Extension", status, 1);
    }
#endif  // BUILDFLAG(ENABLE_EXTENSIONS)

    {
      base::HistogramTester tester;
      helper.LogRendererCrash(RendererHostedContentType::kForegroundMainFrame,
                              status, 0);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.HostedContentType",
          RendererHostedContentType::kForegroundMainFrame, 1);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.ForegroundMainFrame", status,
          1);
    }

    {
      base::HistogramTester tester;
      helper.LogRendererCrash(RendererHostedContentType::kForegroundSubframe,
                              status, 0);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.HostedContentType",
          RendererHostedContentType::kForegroundSubframe, 1);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.ForegroundSubframe", status,
          1);
    }

    {
      base::HistogramTester tester;
      helper.LogRendererCrash(RendererHostedContentType::kBackgroundFrame,
                              status, 0);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.HostedContentType",
          RendererHostedContentType::kBackgroundFrame, 1);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.BackgroundFrame", status, 1);
    }

    {
      base::HistogramTester tester;
      helper.LogRendererCrash(RendererHostedContentType::kInactiveFrame, status,
                              0);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.HostedContentType",
          RendererHostedContentType::kInactiveFrame, 1);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.InactiveFrame", status, 1);
    }

    {
      base::HistogramTester tester;
      helper.LogRendererCrash(RendererHostedContentType::kNoFrameOrExtension,
                              status, 0);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.HostedContentType",
          RendererHostedContentType::kNoFrameOrExtension, 1);
      tester.ExpectUniqueSample(
          "Stability.RendererAbnormalTermination2.NoFrameOrExtension", status,
          1);
    }
  }
}
#endif  // !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)

}  // namespace metrics