2013-10-16 23:59:46 +02:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2013-01-29 21:23:31 +01:00
|
|
|
#include "util/histogram.h"
|
|
|
|
|
|
|
|
#include "util/testharness.h"
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2013-01-29 21:23:31 +01:00
|
|
|
|
|
|
|
class HistogramTest { };
|
|
|
|
|
|
|
|
TEST(HistogramTest, BasicOperation) {
|
|
|
|
|
2013-02-15 20:53:17 +01:00
|
|
|
HistogramImpl histogram;
|
2013-01-29 21:23:31 +01:00
|
|
|
for (uint64_t i = 1; i <= 100; i++) {
|
|
|
|
histogram.Add(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
double median = histogram.Median();
|
|
|
|
// ASSERT_LE(median, 50);
|
|
|
|
ASSERT_GT(median, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
double percentile100 = histogram.Percentile(100.0);
|
|
|
|
ASSERT_LE(percentile100, 100.0);
|
|
|
|
ASSERT_GT(percentile100, 0.0);
|
|
|
|
double percentile99 = histogram.Percentile(99.0);
|
|
|
|
double percentile85 = histogram.Percentile(85.0);
|
|
|
|
ASSERT_LE(percentile99, 99.0);
|
|
|
|
ASSERT_TRUE(percentile99 >= percentile85);
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT_EQ(histogram.Average(), 50.5); // avg is acurately caluclated.
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(HistogramTest, EmptyHistogram) {
|
2013-02-15 20:53:17 +01:00
|
|
|
HistogramImpl histogram;
|
2013-01-29 21:23:31 +01:00
|
|
|
ASSERT_EQ(histogram.Median(), 0.0);
|
|
|
|
ASSERT_EQ(histogram.Percentile(85.0), 0.0);
|
|
|
|
ASSERT_EQ(histogram.Average(), 0.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(HistogramTest, ClearHistogram) {
|
2013-02-15 20:53:17 +01:00
|
|
|
HistogramImpl histogram;
|
2013-01-29 21:23:31 +01:00
|
|
|
for (uint64_t i = 1; i <= 100; i++) {
|
|
|
|
histogram.Add(i);
|
|
|
|
}
|
|
|
|
histogram.Clear();
|
|
|
|
ASSERT_EQ(histogram.Median(), 0);
|
|
|
|
ASSERT_EQ(histogram.Percentile(85.0), 0);
|
|
|
|
ASSERT_EQ(histogram.Average(), 0);
|
|
|
|
}
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|
2013-01-29 21:23:31 +01:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2013-10-04 06:49:15 +02:00
|
|
|
return rocksdb::test::RunAllTests();
|
2013-01-29 21:23:31 +01:00
|
|
|
}
|