OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/test/base/uma_histogram_helper.h" | 5 #include "chrome/test/base/uma_histogram_helper.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/metrics/statistics_recorder.h" | 8 #include "base/metrics/statistics_recorder.h" |
9 #include "base/test/test_timeouts.h" | 9 #include "base/test/test_timeouts.h" |
10 #include "chrome/test/base/ui_test_utils.h" | 10 #include "chrome/test/base/ui_test_utils.h" |
11 #include "content/public/browser/histogram_fetcher.h" | 11 #include "content/public/browser/histogram_fetcher.h" |
12 | 12 |
13 UMAHistogramHelper::UMAHistogramHelper() { | 13 UMAHistogramHelper::UMAHistogramHelper() { |
14 base::StatisticsRecorder::Initialize(); | |
15 } | |
16 | |
17 UMAHistogramHelper::~UMAHistogramHelper() { | |
18 } | |
19 | |
20 void UMAHistogramHelper::PrepareSnapshot(const char* histogram_names[], | |
21 int num_histograms) { | |
22 for (int i = 0; i < num_histograms; i++) { | |
Ilya Sherman
2014/06/13 19:58:12
nit: "++i"
Mike Lerman
2014/06/16 14:59:13
Done.
| |
23 std::string histogram_name = histogram_names[i]; | |
24 | |
25 base::HistogramBase* histogram = | |
26 base::StatisticsRecorder::FindHistogram(histogram_name); | |
27 // If there is no histogram present, then don't record a snapshot. The logic | |
28 // in the Expect* methods will act to treat no histogram equivalent to | |
29 // samples with zeros. | |
30 if (histogram) | |
31 histogram_snapshots[histogram_name] = histogram->SnapshotSamples(); | |
32 } | |
14 } | 33 } |
15 | 34 |
16 void UMAHistogramHelper::Fetch() { | 35 void UMAHistogramHelper::Fetch() { |
17 base::Closure callback = base::Bind(&UMAHistogramHelper::FetchCallback, | 36 base::Closure callback = base::Bind(&UMAHistogramHelper::FetchCallback, |
18 base::Unretained(this)); | 37 base::Unretained(this)); |
19 | 38 |
20 content::FetchHistogramsAsynchronously( | 39 content::FetchHistogramsAsynchronously( |
21 base::MessageLoop::current(), | 40 base::MessageLoop::current(), |
22 callback, | 41 callback, |
23 // If this call times out, it means that a child process is not | 42 // If this call times out, it means that a child process is not |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
75 | 94 |
76 void UMAHistogramHelper::FetchCallback() { | 95 void UMAHistogramHelper::FetchCallback() { |
77 base::MessageLoopForUI::current()->Quit(); | 96 base::MessageLoopForUI::current()->Quit(); |
78 } | 97 } |
79 | 98 |
80 void UMAHistogramHelper::CheckBucketCount( | 99 void UMAHistogramHelper::CheckBucketCount( |
81 const std::string& name, | 100 const std::string& name, |
82 base::HistogramBase::Sample sample, | 101 base::HistogramBase::Sample sample, |
83 base::HistogramBase::Count expected_count, | 102 base::HistogramBase::Count expected_count, |
84 base::HistogramSamples& samples) { | 103 base::HistogramSamples& samples) { |
85 EXPECT_EQ(expected_count, samples.GetCount(sample)) | 104 int actual_count = samples.GetCount(sample); |
105 if (histogram_snapshots.count(name)) | |
106 actual_count -= histogram_snapshots[name]->GetCount(sample); | |
107 EXPECT_EQ(expected_count, actual_count) | |
86 << "Histogram \"" << name | 108 << "Histogram \"" << name |
87 << "\" does not have the right number of samples (" << expected_count | 109 << "\" does not have the right number of samples (" << expected_count |
88 << ") in the expected bucket (" << sample << ")."; | 110 << ") in the expected bucket (" << sample << "). It has (" |
111 << actual_count << ")."; | |
89 } | 112 } |
90 | 113 |
91 void UMAHistogramHelper::CheckTotalCount( | 114 void UMAHistogramHelper::CheckTotalCount( |
92 const std::string& name, | 115 const std::string& name, |
93 base::HistogramBase::Count expected_count, | 116 base::HistogramBase::Count expected_count, |
94 base::HistogramSamples& samples) { | 117 base::HistogramSamples& samples) { |
95 EXPECT_EQ(expected_count, samples.TotalCount()) | 118 int actual_count = samples.TotalCount(); |
119 if (histogram_snapshots.count(name)) | |
120 actual_count -= histogram_snapshots[name]->TotalCount(); | |
121 EXPECT_EQ(expected_count, actual_count) | |
96 << "Histogram \"" << name | 122 << "Histogram \"" << name |
97 << "\" does not have the right total number of samples (" | 123 << "\" does not have the right total number of samples (" |
98 << expected_count << ")."; | 124 << expected_count << "). It has (" << actual_count << ")."; |
99 } | 125 } |
OLD | NEW |