telegraf/testutil/accumulator.go

42 lines
734 B
Go
Raw Normal View History

package testutil
type Point struct {
Name string
Value interface{}
Tags map[string]string
}
type Accumulator struct {
Points []*Point
}
func (a *Accumulator) Add(name string, value interface{}, tags map[string]string) {
a.Points = append(a.Points, &Point{name, value, tags})
}
func (a *Accumulator) CheckValue(name string, val interface{}) bool {
for _, p := range a.Points {
if p.Name == name {
return p.Value == val
}
}
return false
}
2015-04-06 17:34:55 +00:00
func (a *Accumulator) CheckTaggedValue(name string, val interface{}, tags map[string]string) bool {
for _, p := range a.Points {
for k, v := range p.Tags {
if tags[k] != v {
continue
}
}
if p.Name == name {
return p.Value == val
}
}
return false
}