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

Side by Side Diff: base/test/histogram_tester.cc

Issue 379283002: Rework UMAHistogramHelper and StatisticsDeltaReader into [Chrome]HistogramTester. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ilya's initial comments Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "base/test/histogram_tester.h"
6 6
7 #include "base/bind.h" 7 #include "base/metrics/histogram.h"
8 #include "base/metrics/histogram_samples.h"
8 #include "base/metrics/statistics_recorder.h" 9 #include "base/metrics/statistics_recorder.h"
9 #include "base/test/test_timeouts.h" 10 #include "base/stl_util.h"
10 #include "chrome/test/base/ui_test_utils.h" 11 #include "testing/gtest/include/gtest/gtest.h"
11 #include "content/public/browser/histogram_fetcher.h"
12 12
13 UMAHistogramHelper::UMAHistogramHelper() { 13 namespace base {
14 base::StatisticsRecorder::Initialize();
15 }
16 14
17 UMAHistogramHelper::~UMAHistogramHelper() { 15 HistogramTester::HistogramTester() {
18 } 16 StatisticsRecorder::Initialize(); // Safe to call multiple times.
19 17
20 void UMAHistogramHelper::PrepareSnapshot(const char* const histogram_names[], 18 // Record any histogram data that exists when the object is created so it can
21 size_t num_histograms) { 19 // be subtracted later.
22 for (size_t i = 0; i < num_histograms; ++i) { 20 StatisticsRecorder::Histograms histograms;
23 std::string histogram_name = histogram_names[i]; 21 StatisticsRecorder::GetSnapshot(std::string(), &histograms);
24 22 for (size_t i = 0; i < histograms.size(); ++i) {
25 base::HistogramBase* histogram = 23 histograms_snapshot_[histograms[i]->histogram_name()] =
26 base::StatisticsRecorder::FindHistogram(histogram_name); 24 histograms[i]->SnapshotSamples().release();
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] =
32 make_linked_ptr(histogram->SnapshotSamples().release());
33 }
34 } 25 }
35 } 26 }
36 27
37 void UMAHistogramHelper::Fetch() { 28 HistogramTester::~HistogramTester() {
38 base::Closure callback = base::Bind(&UMAHistogramHelper::FetchCallback, 29 STLDeleteValues(&histograms_snapshot_);
39 base::Unretained(this));
40
41 content::FetchHistogramsAsynchronously(
42 base::MessageLoop::current(),
43 callback,
44 // If this call times out, it means that a child process is not
45 // responding, which is something we should not ignore. The timeout is
46 // set to be longer than the normal browser test timeout so that it will
47 // be prempted by the normal timeout.
48 TestTimeouts::action_max_timeout() * 2);
49 content::RunMessageLoop();
50 } 30 }
51 31
52 void UMAHistogramHelper::ExpectUniqueSample( 32 const void HistogramTester::ExpectUniqueSample(
53 const std::string& name, 33 const std::string& name,
54 base::HistogramBase::Sample sample, 34 base::HistogramBase::Sample sample,
55 base::HistogramBase::Count expected_count) { 35 base::HistogramBase::Count expected_count) {
56 base::HistogramBase* histogram = 36 base::HistogramBase* histogram =
57 base::StatisticsRecorder::FindHistogram(name); 37 base::StatisticsRecorder::FindHistogram(name);
58 EXPECT_NE(static_cast<base::HistogramBase*>(NULL), histogram) 38 EXPECT_NE(static_cast<base::HistogramBase*>(NULL), histogram)
59 << "Histogram \"" << name << "\" does not exist."; 39 << "Histogram \"" << name << "\" does not exist.";
60 40
61 if (histogram) { 41 if (histogram) {
62 scoped_ptr<base::HistogramSamples> samples(histogram->SnapshotSamples()); 42 scoped_ptr<base::HistogramSamples> samples(histogram->SnapshotSamples());
63 CheckBucketCount(name, sample, expected_count, *samples); 43 CheckBucketCount(name, sample, expected_count, *samples);
64 CheckTotalCount(name, expected_count, *samples); 44 CheckTotalCount(name, expected_count, *samples);
65 } 45 }
66 } 46 }
67 47
68 void UMAHistogramHelper::ExpectBucketCount( 48 const void HistogramTester::ExpectBucketCount(
69 const std::string& name, 49 const std::string& name,
70 base::HistogramBase::Sample sample, 50 base::HistogramBase::Sample sample,
71 base::HistogramBase::Count expected_count) { 51 base::HistogramBase::Count expected_count) {
72 base::HistogramBase* histogram = 52 base::HistogramBase* histogram =
73 base::StatisticsRecorder::FindHistogram(name); 53 base::StatisticsRecorder::FindHistogram(name);
74 EXPECT_NE(static_cast<base::HistogramBase*>(NULL), histogram) 54 EXPECT_NE(static_cast<base::HistogramBase*>(NULL), histogram)
75 << "Histogram \"" << name << "\" does not exist."; 55 << "Histogram \"" << name << "\" does not exist.";
76 56
77 if (histogram) { 57 if (histogram) {
78 scoped_ptr<base::HistogramSamples> samples(histogram->SnapshotSamples()); 58 scoped_ptr<base::HistogramSamples> samples(histogram->SnapshotSamples());
79 CheckBucketCount(name, sample, expected_count, *samples); 59 CheckBucketCount(name, sample, expected_count, *samples);
80 } 60 }
81 } 61 }
82 62
83 void UMAHistogramHelper::ExpectTotalCount( 63 const void HistogramTester::ExpectTotalCount(
84 const std::string& name, 64 const std::string& name,
85 base::HistogramBase::Count count) { 65 base::HistogramBase::Count count) {
86 base::HistogramBase* histogram = 66 base::HistogramBase* histogram =
87 base::StatisticsRecorder::FindHistogram(name); 67 base::StatisticsRecorder::FindHistogram(name);
88 if (histogram) { 68 if (histogram) {
89 scoped_ptr<base::HistogramSamples> samples(histogram->SnapshotSamples()); 69 scoped_ptr<base::HistogramSamples> samples(histogram->SnapshotSamples());
90 CheckTotalCount(name, count, *samples); 70 CheckTotalCount(name, count, *samples);
91 } else { 71 } else {
92 // No histogram means there were zero samples. 72 // No histogram means there were zero samples.
93 EXPECT_EQ(count, 0) << "Histogram \"" << name << "\" does not exist."; 73 EXPECT_EQ(count, 0) << "Histogram \"" << name << "\" does not exist.";
94 } 74 }
95 } 75 }
96 76
97 void UMAHistogramHelper::FetchCallback() { 77 scoped_ptr<HistogramSamples> HistogramTester::GetHistogramSamplesSinceCreation(
98 base::MessageLoopForUI::current()->Quit(); 78 const std::string& histogram_name) {
79 HistogramBase* histogram = StatisticsRecorder::FindHistogram(histogram_name);
80 if (!histogram)
81 return scoped_ptr<HistogramSamples>();
82 scoped_ptr<HistogramSamples> named_samples(histogram->SnapshotSamples());
83 HistogramSamples* named_original_samples =
84 histograms_snapshot_[histogram_name];
85 if (named_original_samples)
86 named_samples->Subtract(*named_original_samples);
87 return named_samples.Pass();
99 } 88 }
100 89
101 void UMAHistogramHelper::CheckBucketCount( 90 const void HistogramTester::CheckBucketCount(
102 const std::string& name, 91 const std::string& name,
103 base::HistogramBase::Sample sample, 92 base::HistogramBase::Sample sample,
104 base::HistogramBase::Count expected_count, 93 base::HistogramBase::Count expected_count,
105 base::HistogramSamples& samples) { 94 base::HistogramSamples& samples) {
106 int actual_count = samples.GetCount(sample); 95 int actual_count = samples.GetCount(sample);
107 if (histogram_snapshots.count(name)) 96 if (histograms_snapshot_.count(name))
108 actual_count -= histogram_snapshots[name]->GetCount(sample); 97 actual_count -= histograms_snapshot_[name]->GetCount(sample);
109 EXPECT_EQ(expected_count, actual_count) 98 EXPECT_EQ(expected_count, actual_count)
110 << "Histogram \"" << name 99 << "Histogram \"" << name
111 << "\" does not have the right number of samples (" << expected_count 100 << "\" does not have the right number of samples (" << expected_count
112 << ") in the expected bucket (" << sample << "). It has (" << actual_count 101 << ") in the expected bucket (" << sample << "). It has (" << actual_count
113 << ")."; 102 << ").";
114 } 103 }
115 104
116 void UMAHistogramHelper::CheckTotalCount( 105 const void HistogramTester::CheckTotalCount(
117 const std::string& name, 106 const std::string& name,
118 base::HistogramBase::Count expected_count, 107 base::HistogramBase::Count expected_count,
119 base::HistogramSamples& samples) { 108 base::HistogramSamples& samples) {
120 int actual_count = samples.TotalCount(); 109 int actual_count = samples.TotalCount();
121 if (histogram_snapshots.count(name)) 110 if (histograms_snapshot_.count(name))
122 actual_count -= histogram_snapshots[name]->TotalCount(); 111 actual_count -= histograms_snapshot_[name]->TotalCount();
123 EXPECT_EQ(expected_count, actual_count) 112 EXPECT_EQ(expected_count, actual_count)
124 << "Histogram \"" << name 113 << "Histogram \"" << name
125 << "\" does not have the right total number of samples (" 114 << "\" does not have the right total number of samples ("
126 << expected_count << "). It has (" << actual_count << ")."; 115 << expected_count << "). It has (" << actual_count << ").";
127 } 116 }
117
118 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698