Commit 3c6c4565 by Erik Sundell

stackdriver: use more appropriate test data

parent 284d0b7e
...@@ -68,7 +68,7 @@ func TestStackdriver(t *testing.T) { ...@@ -68,7 +68,7 @@ func TestStackdriver(t *testing.T) {
}) })
Convey("and alignmentPeriod is set to grafana-auto", func() { Convey("and alignmentPeriod is set to grafana-auto", func() {
Convey("and IntervalMs is larger than 60", func() { Convey("and IntervalMs is larger than 60000", func() {
tsdbQuery.Queries[0].IntervalMs = 1000000 tsdbQuery.Queries[0].IntervalMs = 1000000
tsdbQuery.Queries[0].Model = simplejson.NewFromAny(map[string]interface{}{ tsdbQuery.Queries[0].Model = simplejson.NewFromAny(map[string]interface{}{
"target": "target", "target": "target",
...@@ -80,8 +80,8 @@ func TestStackdriver(t *testing.T) { ...@@ -80,8 +80,8 @@ func TestStackdriver(t *testing.T) {
So(err, ShouldBeNil) So(err, ShouldBeNil)
So(queries[0].Params["aggregation.alignmentPeriod"][0], ShouldEqual, `+1000s`) So(queries[0].Params["aggregation.alignmentPeriod"][0], ShouldEqual, `+1000s`)
}) })
Convey("and IntervalMs is less than 60", func() { Convey("and IntervalMs is less than 60000", func() {
tsdbQuery.Queries[0].IntervalMs = 30 tsdbQuery.Queries[0].IntervalMs = 30000
tsdbQuery.Queries[0].Model = simplejson.NewFromAny(map[string]interface{}{ tsdbQuery.Queries[0].Model = simplejson.NewFromAny(map[string]interface{}{
"target": "target", "target": "target",
"alignmentPeriod": "grafana-auto", "alignmentPeriod": "grafana-auto",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment