diff options
author | twifkak <twifkak@chromium.org> | 2015-06-30 12:13:21 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-30 19:14:04 +0000 |
commit | 5c8510d1c1078e82357005cf56f0af8acde0c168 (patch) | |
tree | 709e424d3c8fa8412d93b824742f23b544bbe095 /base/test/histogram_tester.h | |
parent | b3691f6fd944fb01e11d431f26538203c004b187 (diff) | |
download | chromium_src-5c8510d1c1078e82357005cf56f0af8acde0c168.zip chromium_src-5c8510d1c1078e82357005cf56f0af8acde0c168.tar.gz chromium_src-5c8510d1c1078e82357005cf56f0af8acde0c168.tar.bz2 |
Add HistogramTester::GetAllSamples.
Returns the same value as GetHistogramSamplesSinceCreation, but as a
vector<pair<Sample, Count>> for easier testing.
BUG=
Review URL: https://codereview.chromium.org/1177263004
Cr-Commit-Position: refs/heads/master@{#336842}
Diffstat (limited to 'base/test/histogram_tester.h')
-rw-r--r-- | base/test/histogram_tester.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/base/test/histogram_tester.h b/base/test/histogram_tester.h index 96317f9..7ac7ca6 100644 --- a/base/test/histogram_tester.h +++ b/base/test/histogram_tester.h @@ -6,7 +6,10 @@ #define BASE_TEST_HISTOGRAM_TESTER_H_ #include <map> +#include <ostream> #include <string> +#include <utility> +#include <vector> #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" @@ -15,6 +18,7 @@ namespace base { +struct Bucket; class HistogramSamples; // HistogramTester provides a simple interface for examining histograms, UMA @@ -47,6 +51,24 @@ class HistogramTester { void ExpectTotalCount(const std::string& name, base::HistogramBase::Count count) const; + // Returns a list of all of the buckets recorded since creation of this + // object, as vector<Bucket>, where the Bucket represents the min boundary of + // the bucket and the count of samples recorded to that bucket since creation. + // + // Example usage, using gMock: + // EXPECT_THAT(histogram_tester.GetAllSamples("HistogramName"), + // ElementsAre(Bucket(1, 5), Bucket(2, 10), Bucket(3, 5))); + // + // If you build the expected list programmatically, you can use ContainerEq: + // EXPECT_THAT(histogram_tester.GetAllSamples("HistogramName"), + // ContainerEq(expected_buckets)); + // + // or EXPECT_EQ if you prefer not to depend on gMock, at the expense of a + // slightly less helpful failure message: + // EXPECT_EQ(expected_buckets, + // histogram_tester.GetAllSamples("HistogramName")); + std::vector<Bucket> GetAllSamples(const std::string& name); + // Access a modified HistogramSamples containing only what has been logged // to the histogram since the creation of this object. scoped_ptr<HistogramSamples> GetHistogramSamplesSinceCreation( @@ -76,6 +98,18 @@ class HistogramTester { DISALLOW_COPY_AND_ASSIGN(HistogramTester); }; +struct Bucket { + Bucket(base::HistogramBase::Sample min, base::HistogramBase::Count count) + : min(min), count(count) {} + + bool operator==(const Bucket& other) const; + + base::HistogramBase::Sample min; + base::HistogramBase::Count count; +}; + +void PrintTo(const Bucket& value, std::ostream* os); + } // namespace base #endif // BASE_TEST_HISTOGRAM_TESTER_H_ |