42 lines
734 B
Go
42 lines
734 B
Go
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
|
|
}
|
|
|
|
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
|
|
}
|