blob: 1362203de29172ed750d155f0eab94672162776e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
// Unit-test the simple statistics implementation.
#include "pagespeed/kernel/util/simple_stats.h"
#include "pagespeed/kernel/base/basictypes.h"
#include "pagespeed/kernel/base/gtest.h"
#include "pagespeed/kernel/base/scoped_ptr.h"
#include "pagespeed/kernel/base/statistics.h"
#include "pagespeed/kernel/base/thread_system.h"
#include "pagespeed/kernel/util/platform.h"
namespace {
const int64 kOneMilion = 1000LL * 1000LL;
const int64 kTenBillion = 10000LL * kOneMilion;
} // namespace
namespace net_instaweb {
class SimpleStatsTest : public testing::Test {
public:
SimpleStatsTest()
: thread_system_(Platform::CreateThreadSystem()),
stats_(thread_system_.get()) {
}
protected:
scoped_ptr<ThreadSystem> thread_system_;
SimpleStats stats_;
private:
DISALLOW_COPY_AND_ASSIGN(SimpleStatsTest);
};
TEST_F(SimpleStatsTest, TestSimpleUpDownCounters) {
UpDownCounter* c0 = stats_.AddUpDownCounter("c0");
UpDownCounter* c1 = stats_.AddUpDownCounter("c1");
UpDownCounter* c2 = stats_.AddUpDownCounter("c2");
EXPECT_EQ(c0, stats_.FindUpDownCounter("c0"));
EXPECT_EQ(c1, stats_.AddUpDownCounter("c1"));
EXPECT_TRUE(stats_.FindUpDownCounter("not_defined") == NULL);
c0->Set(0);
c1->Set(1);
c2->Set(2);
EXPECT_EQ(0, c0->Get());
EXPECT_EQ(1, c1->Get());
EXPECT_EQ(2, c2->Get());
}
TEST_F(SimpleStatsTest, TestSimpleVariables) {
Variable* c0 = stats_.AddVariable("c0");
Variable* c1 = stats_.AddVariable("c1");
Variable* c2 = stats_.AddVariable("c2");
EXPECT_EQ(c0, stats_.FindVariable("c0"));
EXPECT_EQ(c1, stats_.AddVariable("c1"));
EXPECT_TRUE(stats_.FindVariable("not_defined") == NULL);
c0->Add(0);
c1->Add(1);
c2->Add(2);
EXPECT_EQ(0, c0->Get());
EXPECT_EQ(1, c1->Get());
EXPECT_EQ(2, c2->Get());
}
TEST_F(SimpleStatsTest, TestTimedVariable) {
TimedVariable* tv = stats_.AddTimedVariable("name", "group");
tv->IncBy(1);
EXPECT_EQ(1, tv->Get(TimedVariable::START));
}
TEST_F(SimpleStatsTest, TestSetReturningPrevious) {
UpDownCounter* var = stats_.AddUpDownCounter("c0");
EXPECT_EQ(0, var->SetReturningPreviousValue(5));
EXPECT_EQ(5, var->SetReturningPreviousValue(-3));
EXPECT_EQ(-3, var->SetReturningPreviousValue(10));
EXPECT_EQ(10, var->Get());
}
TEST_F(SimpleStatsTest, CounterHugeValues) {
UpDownCounter* var = stats_.AddUpDownCounter("c0");
EXPECT_EQ(kTenBillion, var->Add(kTenBillion));
EXPECT_EQ(2*kTenBillion, var->Add(kTenBillion));
EXPECT_EQ(kTenBillion, var->Add(-kTenBillion));
EXPECT_EQ(0, var->Add(-kTenBillion));
EXPECT_EQ(-kTenBillion, var->Add(-kTenBillion));
}
TEST_F(SimpleStatsTest, VariableHugeValues) {
Variable* var = stats_.AddVariable("v0");
EXPECT_EQ(kTenBillion, var->Add(kTenBillion));
EXPECT_EQ(2*kTenBillion, var->Add(kTenBillion));
}
} // namespace net_instaweb