telegraf/testutil/accumulator.go

124 lines
2.3 KiB
Go
Raw Normal View History

package testutil
import (
"fmt"
"time"
)
2015-04-06 21:53:43 +00:00
type Point struct {
2015-05-29 20:25:48 +00:00
Measurement string
Value interface{}
Tags map[string]string
Values map[string]interface{}
Time time.Time
}
type Accumulator struct {
Points []*Point
}
2015-05-29 20:25:48 +00:00
func (a *Accumulator) Add(measurement string, value interface{}, tags map[string]string) {
a.Points = append(
a.Points,
&Point{
2015-06-18 04:43:45 +00:00
Measurement: measurement,
2015-05-29 20:25:48 +00:00
Value: value,
Tags: tags,
},
)
}
func (a *Accumulator) AddValuesWithTime(
2015-05-29 20:25:48 +00:00
measurement string,
values map[string]interface{},
tags map[string]string,
timestamp time.Time,
) {
a.Points = append(
a.Points,
&Point{
2015-05-29 20:25:48 +00:00
Measurement: measurement,
Values: values,
Tags: tags,
Time: timestamp,
},
)
}
2015-05-29 20:25:48 +00:00
func (a *Accumulator) Get(measurement string) (*Point, bool) {
2015-05-18 17:46:44 +00:00
for _, p := range a.Points {
2015-05-29 20:25:48 +00:00
if p.Measurement == measurement {
2015-05-18 17:46:44 +00:00
return p, true
}
}
return nil, false
}
2015-05-29 20:25:48 +00:00
func (a *Accumulator) CheckValue(measurement string, val interface{}) bool {
for _, p := range a.Points {
2015-05-29 20:25:48 +00:00
if p.Measurement == measurement {
return p.Value == val
}
}
return false
}
2015-04-06 17:34:55 +00:00
2015-05-29 20:25:48 +00:00
func (a *Accumulator) CheckTaggedValue(measurement string, val interface{}, tags map[string]string) bool {
return a.ValidateTaggedValue(measurement, val, tags) == nil
2015-04-06 21:53:43 +00:00
}
2015-05-29 20:25:48 +00:00
func (a *Accumulator) ValidateTaggedValue(measurement string, val interface{}, tags map[string]string) error {
2015-04-06 17:34:55 +00:00
for _, p := range a.Points {
2015-04-06 21:53:43 +00:00
var found bool
if p.Tags == nil && tags == nil {
found = true
} else {
for k, v := range p.Tags {
if tags[k] == v {
found = true
break
}
2015-04-06 17:34:55 +00:00
}
}
2015-05-29 20:25:48 +00:00
if found && p.Measurement == measurement {
2015-04-06 21:53:43 +00:00
if p.Value != val {
return fmt.Errorf("%v (%T) != %v (%T)", p.Value, p.Value, val, val)
}
return nil
2015-04-06 17:34:55 +00:00
}
}
2015-05-29 20:25:48 +00:00
return fmt.Errorf("unknown value %s with tags %v", measurement, tags)
2015-04-06 17:34:55 +00:00
}
2015-04-07 18:54:21 +00:00
2015-05-29 20:25:48 +00:00
func (a *Accumulator) ValidateValue(measurement string, val interface{}) error {
return a.ValidateTaggedValue(measurement, val, nil)
2015-04-07 18:54:21 +00:00
}
2015-05-18 17:46:44 +00:00
2015-05-29 20:25:48 +00:00
func (a *Accumulator) HasIntValue(measurement string) bool {
2015-05-18 17:46:44 +00:00
for _, p := range a.Points {
2015-05-29 20:25:48 +00:00
if p.Measurement == measurement {
2015-05-18 17:46:44 +00:00
_, ok := p.Value.(int64)
return ok
}
}
return false
}
2015-05-29 20:25:48 +00:00
func (a *Accumulator) HasFloatValue(measurement string) bool {
2015-05-18 17:46:44 +00:00
for _, p := range a.Points {
2015-05-29 20:25:48 +00:00
if p.Measurement == measurement {
2015-05-18 17:46:44 +00:00
_, ok := p.Value.(float64)
return ok
}
}
return false
}