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

Side by Side Diff: base/histogram_unittest.cc

Issue 1737017: Extend Histogram class to support custom range definitions... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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
« no previous file with comments | « base/histogram.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // Test of Histogram class 5 // Test of Histogram class
6 6
7 #include "base/histogram.h" 7 #include "base/histogram.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 11 matching lines...) Expand all
22 scoped_refptr<Histogram> histogram = Histogram::FactoryGet( 22 scoped_refptr<Histogram> histogram = Histogram::FactoryGet(
23 "TestHistogram", 1, 1000, 10, Histogram::kNoFlags); 23 "TestHistogram", 1, 1000, 10, Histogram::kNoFlags);
24 scoped_refptr<Histogram> histogram1 = Histogram::FactoryGet( 24 scoped_refptr<Histogram> histogram1 = Histogram::FactoryGet(
25 "Test1Histogram", 1, 1000, 10, Histogram::kNoFlags); 25 "Test1Histogram", 1, 1000, 10, Histogram::kNoFlags);
26 26
27 scoped_refptr<Histogram> linear_histogram = LinearHistogram::FactoryGet( 27 scoped_refptr<Histogram> linear_histogram = LinearHistogram::FactoryGet(
28 "TestLinearHistogram", 1, 1000, 10, Histogram::kNoFlags); 28 "TestLinearHistogram", 1, 1000, 10, Histogram::kNoFlags);
29 scoped_refptr<Histogram> linear_histogram1 = LinearHistogram::FactoryGet( 29 scoped_refptr<Histogram> linear_histogram1 = LinearHistogram::FactoryGet(
30 "Test1LinearHistogram", 1, 1000, 10, Histogram::kNoFlags); 30 "Test1LinearHistogram", 1, 1000, 10, Histogram::kNoFlags);
31 31
32 std::vector<int> custom_ranges;
33 custom_ranges.push_back(1);
34 custom_ranges.push_back(5);
35 custom_ranges.push_back(10);
36 custom_ranges.push_back(20);
37 custom_ranges.push_back(30);
38 scoped_refptr<Histogram> custom_histogram = CustomHistogram::FactoryGet(
39 "TestCustomHistogram", custom_ranges, Histogram::kNoFlags);
40 scoped_refptr<Histogram> custom_histogram1 = CustomHistogram::FactoryGet(
41 "Test1CustomHistogram", custom_ranges, Histogram::kNoFlags);
42
32 // Use standard macros (but with fixed samples) 43 // Use standard macros (but with fixed samples)
33 HISTOGRAM_TIMES("Test2Histogram", TimeDelta::FromDays(1)); 44 HISTOGRAM_TIMES("Test2Histogram", TimeDelta::FromDays(1));
34 HISTOGRAM_COUNTS("Test3Histogram", 30); 45 HISTOGRAM_COUNTS("Test3Histogram", 30);
35 46
36 DHISTOGRAM_TIMES("Test4Histogram", TimeDelta::FromDays(1)); 47 DHISTOGRAM_TIMES("Test4Histogram", TimeDelta::FromDays(1));
37 DHISTOGRAM_COUNTS("Test5Histogram", 30); 48 DHISTOGRAM_COUNTS("Test5Histogram", 30);
38 49
39 HISTOGRAM_ENUMERATION("Test6Histogram", 129, 130); 50 HISTOGRAM_ENUMERATION("Test6Histogram", 129, 130);
40 51
41 // Try to construct samples. 52 // Try to construct samples.
(...skipping 25 matching lines...) Expand all
67 StatisticsRecorder::GetHistograms(&histograms); // Load up lists 78 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
68 EXPECT_EQ(1U, histograms.size()); 79 EXPECT_EQ(1U, histograms.size());
69 scoped_refptr<Histogram> histogram1 = Histogram::FactoryGet( 80 scoped_refptr<Histogram> histogram1 = Histogram::FactoryGet(
70 "Test1Histogram", 1, 1000, 10, Histogram::kNoFlags); 81 "Test1Histogram", 1, 1000, 10, Histogram::kNoFlags);
71 histograms.clear(); 82 histograms.clear();
72 StatisticsRecorder::GetHistograms(&histograms); // Load up lists 83 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
73 EXPECT_EQ(2U, histograms.size()); 84 EXPECT_EQ(2U, histograms.size());
74 85
75 scoped_refptr<Histogram> linear_histogram = LinearHistogram::FactoryGet( 86 scoped_refptr<Histogram> linear_histogram = LinearHistogram::FactoryGet(
76 "TestLinearHistogram", 1, 1000, 10, Histogram::kNoFlags); 87 "TestLinearHistogram", 1, 1000, 10, Histogram::kNoFlags);
88 histograms.clear();
89 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
90 EXPECT_EQ(3U, histograms.size());
91
77 scoped_refptr<Histogram> linear_histogram1 = LinearHistogram::FactoryGet( 92 scoped_refptr<Histogram> linear_histogram1 = LinearHistogram::FactoryGet(
78 "Test1LinearHistogram", 1, 1000, 10, Histogram::kNoFlags); 93 "Test1LinearHistogram", 1, 1000, 10, Histogram::kNoFlags);
79 histograms.clear(); 94 histograms.clear();
80 StatisticsRecorder::GetHistograms(&histograms); // Load up lists 95 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
81 EXPECT_EQ(4U, histograms.size()); 96 EXPECT_EQ(4U, histograms.size());
82 97
98 std::vector<int> custom_ranges;
99 custom_ranges.push_back(1);
100 custom_ranges.push_back(5);
101 custom_ranges.push_back(10);
102 custom_ranges.push_back(20);
103 custom_ranges.push_back(30);
104 scoped_refptr<Histogram> custom_histogram = CustomHistogram::FactoryGet(
105 "TestCustomHistogram", custom_ranges, Histogram::kNoFlags);
106 scoped_refptr<Histogram> custom_histogram1 = CustomHistogram::FactoryGet(
107 "TestCustomHistogram", custom_ranges, Histogram::kNoFlags);
108
109 histograms.clear();
110 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
111 EXPECT_EQ(5U, histograms.size());
112
83 // Use standard macros (but with fixed samples) 113 // Use standard macros (but with fixed samples)
84 HISTOGRAM_TIMES("Test2Histogram", TimeDelta::FromDays(1)); 114 HISTOGRAM_TIMES("Test2Histogram", TimeDelta::FromDays(1));
85 HISTOGRAM_COUNTS("Test3Histogram", 30); 115 HISTOGRAM_COUNTS("Test3Histogram", 30);
86 histograms.clear(); 116 histograms.clear();
87 StatisticsRecorder::GetHistograms(&histograms); // Load up lists 117 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
88 EXPECT_EQ(6U, histograms.size()); 118 EXPECT_EQ(7U, histograms.size());
89 119
90 HISTOGRAM_ENUMERATION("TestEnumerationHistogram", 20, 200); 120 HISTOGRAM_ENUMERATION("TestEnumerationHistogram", 20, 200);
91 histograms.clear(); 121 histograms.clear();
92 StatisticsRecorder::GetHistograms(&histograms); // Load up lists 122 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
93 EXPECT_EQ(7U, histograms.size()); 123 EXPECT_EQ(8U, histograms.size());
94 124
95 DHISTOGRAM_TIMES("Test4Histogram", TimeDelta::FromDays(1)); 125 DHISTOGRAM_TIMES("Test4Histogram", TimeDelta::FromDays(1));
96 DHISTOGRAM_COUNTS("Test5Histogram", 30); 126 DHISTOGRAM_COUNTS("Test5Histogram", 30);
97 histograms.clear(); 127 histograms.clear();
98 StatisticsRecorder::GetHistograms(&histograms); // Load up lists 128 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
99 #ifndef NDEBUG 129 #ifndef NDEBUG
100 EXPECT_EQ(9U, histograms.size()); 130 EXPECT_EQ(10U, histograms.size());
101 #else 131 #else
102 EXPECT_EQ(7U, histograms.size()); 132 EXPECT_EQ(8U, histograms.size());
103 #endif 133 #endif
104 } 134 }
105 135
106 TEST(HistogramTest, RangeTest) { 136 TEST(HistogramTest, RangeTest) {
107 StatisticsRecorder recorder; 137 StatisticsRecorder recorder;
108 StatisticsRecorder::Histograms histograms; 138 StatisticsRecorder::Histograms histograms;
109 139
110 recorder.GetHistograms(&histograms); 140 recorder.GetHistograms(&histograms);
111 EXPECT_EQ(0U, histograms.size()); 141 EXPECT_EQ(0U, histograms.size());
112 142
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 EXPECT_EQ(7, transitioning_histogram->ranges(7)); 187 EXPECT_EQ(7, transitioning_histogram->ranges(7));
158 EXPECT_EQ(9, transitioning_histogram->ranges(8)); 188 EXPECT_EQ(9, transitioning_histogram->ranges(8));
159 EXPECT_EQ(11, transitioning_histogram->ranges(9)); 189 EXPECT_EQ(11, transitioning_histogram->ranges(9));
160 EXPECT_EQ(14, transitioning_histogram->ranges(10)); 190 EXPECT_EQ(14, transitioning_histogram->ranges(10));
161 EXPECT_EQ(17, transitioning_histogram->ranges(11)); 191 EXPECT_EQ(17, transitioning_histogram->ranges(11));
162 EXPECT_EQ(21, transitioning_histogram->ranges(12)); 192 EXPECT_EQ(21, transitioning_histogram->ranges(12));
163 EXPECT_EQ(26, transitioning_histogram->ranges(13)); 193 EXPECT_EQ(26, transitioning_histogram->ranges(13));
164 EXPECT_EQ(32, transitioning_histogram->ranges(14)); 194 EXPECT_EQ(32, transitioning_histogram->ranges(14));
165 EXPECT_EQ(INT_MAX, transitioning_histogram->ranges(15)); 195 EXPECT_EQ(INT_MAX, transitioning_histogram->ranges(15));
166 196
197 std::vector<int> custom_ranges;
198 custom_ranges.push_back(0);
199 custom_ranges.push_back(9);
200 custom_ranges.push_back(10);
201 custom_ranges.push_back(11);
202 custom_ranges.push_back(300);
203 scoped_refptr<Histogram> test_custom_histogram = CustomHistogram::FactoryGet(
204 "TestCustomRangeHistogram", custom_ranges, Histogram::kNoFlags);
205
206 EXPECT_EQ(custom_ranges[0], test_custom_histogram->ranges(0));
207 EXPECT_EQ(custom_ranges[1], test_custom_histogram->ranges(1));
208 EXPECT_EQ(custom_ranges[2], test_custom_histogram->ranges(2));
209 EXPECT_EQ(custom_ranges[3], test_custom_histogram->ranges(3));
210 EXPECT_EQ(custom_ranges[4], test_custom_histogram->ranges(4));
211
167 recorder.GetHistograms(&histograms); 212 recorder.GetHistograms(&histograms);
168 EXPECT_EQ(5U, histograms.size()); 213 EXPECT_EQ(6U, histograms.size());
169 } 214 }
170 215
216 TEST(HistogramTest, CustomRangeTest) {
217 StatisticsRecorder recorder;
218 StatisticsRecorder::Histograms histograms;
219
220 // Check that missing leading zero is handled by an auto-insertion.
221 std::vector<int> custom_ranges;
222 // Don't include a zero.
223 custom_ranges.push_back(9);
224 custom_ranges.push_back(10);
225 custom_ranges.push_back(11);
226 scoped_refptr<Histogram> test_custom_histogram = CustomHistogram::FactoryGet(
227 "TestCustomRangeHistogram", custom_ranges, Histogram::kNoFlags);
228
229 EXPECT_EQ(0, test_custom_histogram->ranges(0)); // Auto added
230 EXPECT_EQ(custom_ranges[0], test_custom_histogram->ranges(1));
231 EXPECT_EQ(custom_ranges[1], test_custom_histogram->ranges(2));
232 EXPECT_EQ(custom_ranges[2], test_custom_histogram->ranges(3));
233
234 // Check that unsorted data with dups is handled gracefully.
235 const int kSmall = 7;
236 const int kMid = 8;
237 const int kBig = 9;
238 custom_ranges.clear();
239 custom_ranges.push_back(kBig);
240 custom_ranges.push_back(kMid);
241 custom_ranges.push_back(kSmall);
242 custom_ranges.push_back(kSmall);
243 custom_ranges.push_back(kMid);
244 custom_ranges.push_back(0); // Push an explicit zero.
245 custom_ranges.push_back(kBig);
246
247 scoped_refptr<Histogram> unsorted_histogram = CustomHistogram::FactoryGet(
248 "TestCustomUnsortedDupedHistogram", custom_ranges, Histogram::kNoFlags);
249 EXPECT_EQ(0, unsorted_histogram->ranges(0));
250 EXPECT_EQ(kSmall, unsorted_histogram->ranges(1));
251 EXPECT_EQ(kMid, unsorted_histogram->ranges(2));
252 EXPECT_EQ(kBig, unsorted_histogram->ranges(3));
253 }
254
255
171 // Make sure histogram handles out-of-bounds data gracefully. 256 // Make sure histogram handles out-of-bounds data gracefully.
172 TEST(HistogramTest, BoundsTest) { 257 TEST(HistogramTest, BoundsTest) {
173 const size_t kBucketCount = 50; 258 const size_t kBucketCount = 50;
174 scoped_refptr<Histogram> histogram = Histogram::FactoryGet( 259 scoped_refptr<Histogram> histogram = Histogram::FactoryGet(
175 "Bounded", 10, 100, kBucketCount, Histogram::kNoFlags); 260 "Bounded", 10, 100, kBucketCount, Histogram::kNoFlags);
176 261
177 // Put two samples "out of bounds" above and below. 262 // Put two samples "out of bounds" above and below.
178 histogram->Add(5); 263 histogram->Add(5);
179 histogram->Add(-50); 264 histogram->Add(-50);
180 265
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 // Check to see that the bucket counts reflect our additions. 304 // Check to see that the bucket counts reflect our additions.
220 Histogram::SampleSet sample; 305 Histogram::SampleSet sample;
221 histogram->SnapshotSample(&sample); 306 histogram->SnapshotSample(&sample);
222 EXPECT_EQ(INT_MAX, histogram->ranges(8)); 307 EXPECT_EQ(INT_MAX, histogram->ranges(8));
223 for (int i = 0; i < 8; i++) 308 for (int i = 0; i < 8; i++)
224 EXPECT_EQ(i + 1, sample.counts(i)); 309 EXPECT_EQ(i + 1, sample.counts(i));
225 } 310 }
226 311
227 312
228 } // namespace 313 } // namespace
OLDNEW
« no previous file with comments | « base/histogram.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698