mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

for i in github.com/BurntSushi/toml github.com/coreos/go-etcd/etcd github.com/coreos/go-log/log github.com/gorilla/context github.com/rcrowley/go-metrics bitbucket.org/kardianos/osext github.com/coreos/go-systemd/journal github.com/coreos/raft code.google.com/p/goprotobuf/proto ; do goven -copy -rewrite $i; done
61 lines
1.0 KiB
Go
61 lines
1.0 KiB
Go
package metrics
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func BenchmarkMeter(b *testing.B) {
|
|
m := NewMeter()
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
m.Mark(1)
|
|
}
|
|
}
|
|
|
|
func TestGetOrRegisterMeter(t *testing.T) {
|
|
r := NewRegistry()
|
|
NewRegisteredMeter("foo", r).Mark(47)
|
|
if m := GetOrRegisterMeter("foo", r); 47 != m.Count() {
|
|
t.Fatal(m)
|
|
}
|
|
}
|
|
|
|
func TestMeterDecay(t *testing.T) {
|
|
m := &StandardMeter{
|
|
make(chan int64),
|
|
make(chan *MeterSnapshot),
|
|
time.NewTicker(1),
|
|
}
|
|
go m.arbiter()
|
|
m.Mark(1)
|
|
rateMean := m.RateMean()
|
|
time.Sleep(1)
|
|
if m.RateMean() >= rateMean {
|
|
t.Error("m.RateMean() didn't decrease")
|
|
}
|
|
}
|
|
|
|
func TestMeterNonzero(t *testing.T) {
|
|
m := NewMeter()
|
|
m.Mark(3)
|
|
if count := m.Count(); 3 != count {
|
|
t.Errorf("m.Count(): 3 != %v\n", count)
|
|
}
|
|
}
|
|
|
|
func TestMeterSnapshot(t *testing.T) {
|
|
m := NewMeter()
|
|
m.Mark(1)
|
|
if snapshot := m.Snapshot(); m.RateMean() != snapshot.RateMean() {
|
|
t.Fatal(snapshot)
|
|
}
|
|
}
|
|
|
|
func TestMeterZero(t *testing.T) {
|
|
m := NewMeter()
|
|
if count := m.Count(); 0 != count {
|
|
t.Errorf("m.Count(): 0 != %v\n", count)
|
|
}
|
|
}
|