2019-03-15 13:07:20 -05:00
|
|
|
package testdata
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
|
|
"github.com/grafana/grafana/pkg/tsdb"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestTestdataScenarios(t *testing.T) {
|
|
|
|
Convey("random walk ", t, func() {
|
2019-03-15 14:36:55 -05:00
|
|
|
scenario, _ := ScenarioRegistry["random_walk"]
|
2019-03-15 14:33:45 -05:00
|
|
|
|
|
|
|
Convey("Should start at the requested value", func() {
|
|
|
|
req := &tsdb.TsdbQuery{
|
|
|
|
TimeRange: tsdb.NewFakeTimeRange("5m", "now", time.Now()),
|
|
|
|
Queries: []*tsdb.Query{
|
|
|
|
{RefId: "A", IntervalMs: 100, MaxDataPoints: 100, Model: simplejson.New()},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
query := req.Queries[0]
|
|
|
|
query.Model.Set("startValue", 1.234)
|
|
|
|
|
|
|
|
result := scenario.Handler(req.Queries[0], req)
|
|
|
|
points := result.Series[0].Points
|
|
|
|
|
|
|
|
So(result.Series, ShouldNotBeNil)
|
|
|
|
So(points[0][0].Float64, ShouldEqual, 1.234)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("random walk table", t, func() {
|
2019-03-15 14:36:55 -05:00
|
|
|
scenario, _ := ScenarioRegistry["random_walk_table"]
|
2019-03-15 14:33:45 -05:00
|
|
|
|
|
|
|
Convey("Should return a table that looks like value/min/max", func() {
|
|
|
|
req := &tsdb.TsdbQuery{
|
|
|
|
TimeRange: tsdb.NewFakeTimeRange("5m", "now", time.Now()),
|
|
|
|
Queries: []*tsdb.Query{
|
|
|
|
{RefId: "A", IntervalMs: 100, MaxDataPoints: 100, Model: simplejson.New()},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
result := scenario.Handler(req.Queries[0], req)
|
|
|
|
table := result.Tables[0]
|
2019-03-15 13:07:20 -05:00
|
|
|
|
2019-03-15 14:33:45 -05:00
|
|
|
So(len(table.Rows), ShouldBeGreaterThan, 50)
|
|
|
|
for _, row := range table.Rows {
|
|
|
|
value := row[1]
|
|
|
|
min := row[2]
|
|
|
|
max := row[3]
|
2019-03-15 13:07:20 -05:00
|
|
|
|
2019-03-15 14:33:45 -05:00
|
|
|
So(min, ShouldBeLessThan, value)
|
|
|
|
So(max, ShouldBeGreaterThan, value)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("Should return a table with some nil values", func() {
|
|
|
|
req := &tsdb.TsdbQuery{
|
|
|
|
TimeRange: tsdb.NewFakeTimeRange("5m", "now", time.Now()),
|
|
|
|
Queries: []*tsdb.Query{
|
|
|
|
{RefId: "A", IntervalMs: 100, MaxDataPoints: 100, Model: simplejson.New()},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
query := req.Queries[0]
|
|
|
|
query.Model.Set("withNil", true)
|
|
|
|
|
|
|
|
result := scenario.Handler(req.Queries[0], req)
|
|
|
|
table := result.Tables[0]
|
|
|
|
|
|
|
|
nil1 := false
|
|
|
|
nil2 := false
|
|
|
|
nil3 := false
|
|
|
|
|
|
|
|
So(len(table.Rows), ShouldBeGreaterThan, 50)
|
|
|
|
for _, row := range table.Rows {
|
|
|
|
if row[1] == nil {
|
|
|
|
nil1 = true
|
|
|
|
}
|
|
|
|
if row[2] == nil {
|
|
|
|
nil2 = true
|
|
|
|
}
|
|
|
|
if row[3] == nil {
|
|
|
|
nil3 = true
|
|
|
|
}
|
|
|
|
}
|
2019-03-15 13:07:20 -05:00
|
|
|
|
2019-03-15 14:33:45 -05:00
|
|
|
So(nil1, ShouldBeTrue)
|
|
|
|
So(nil2, ShouldBeTrue)
|
|
|
|
So(nil3, ShouldBeTrue)
|
|
|
|
})
|
2019-03-15 13:07:20 -05:00
|
|
|
})
|
|
|
|
}
|
2019-08-21 09:50:13 -05:00
|
|
|
|
|
|
|
func TestToLabels(t *testing.T) {
|
|
|
|
Convey("read labels", t, func() {
|
|
|
|
tags := make(map[string]string)
|
|
|
|
tags["job"] = "foo"
|
|
|
|
tags["instance"] = "bar"
|
|
|
|
|
|
|
|
So(parseLabels(`{job="foo", instance="bar"}`), ShouldEqual, tags)
|
|
|
|
So(parseLabels(`job="foo", instance="bar"`), ShouldEqual, tags)
|
|
|
|
So(parseLabels(`job=foo, instance=bar`), ShouldEqual, tags)
|
|
|
|
So(parseLabels(`job = foo,instance = bar`), ShouldEqual, tags)
|
|
|
|
})
|
|
|
|
}
|