| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- package es
- import (
- "fmt"
- "testing"
- "time"
- "github.com/grafana/grafana/pkg/tsdb"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestIndexPattern(t *testing.T) {
- Convey("Static index patterns", t, func() {
- indexPatternScenario(noInterval, "data-*", nil, func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "data-*")
- })
- indexPatternScenario(noInterval, "es-index-name", nil, func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "es-index-name")
- })
- })
- Convey("Dynamic index patterns", t, func() {
- from := fmt.Sprintf("%d", time.Date(2018, 5, 15, 17, 50, 0, 0, time.UTC).UnixNano()/int64(time.Millisecond))
- to := fmt.Sprintf("%d", time.Date(2018, 5, 15, 17, 55, 0, 0, time.UTC).UnixNano()/int64(time.Millisecond))
- indexPatternScenario(intervalHourly, "[data-]YYYY.MM.DD.HH", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "data-2018.05.15.17")
- })
- indexPatternScenario(intervalHourly, "YYYY.MM.DD.HH[-data]", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "2018.05.15.17-data")
- })
- indexPatternScenario(intervalDaily, "[data-]YYYY.MM.DD", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "data-2018.05.15")
- })
- indexPatternScenario(intervalDaily, "YYYY.MM.DD[-data]", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "2018.05.15-data")
- })
- indexPatternScenario(intervalWeekly, "[data-]GGGG.WW", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "data-2018.20")
- })
- indexPatternScenario(intervalWeekly, "GGGG.WW[-data]", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "2018.20-data")
- })
- indexPatternScenario(intervalMonthly, "[data-]YYYY.MM", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "data-2018.05")
- })
- indexPatternScenario(intervalMonthly, "YYYY.MM[-data]", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "2018.05-data")
- })
- indexPatternScenario(intervalYearly, "[data-]YYYY", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "data-2018")
- })
- indexPatternScenario(intervalYearly, "YYYY[-data]", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "2018-data")
- })
- Convey("Should return 01 week", func() {
- from = fmt.Sprintf("%d", time.Date(2018, 1, 15, 17, 50, 0, 0, time.UTC).UnixNano()/int64(time.Millisecond))
- to = fmt.Sprintf("%d", time.Date(2018, 1, 15, 17, 55, 0, 0, time.UTC).UnixNano()/int64(time.Millisecond))
- indexPatternScenario(intervalWeekly, "[data-]GGGG.WW", tsdb.NewTimeRange(from, to), func(indices []string) {
- So(indices, ShouldHaveLength, 1)
- So(indices[0], ShouldEqual, "data-2018.03")
- })
- })
- })
- Convey("Hourly interval", t, func() {
- Convey("Should return 1 interval", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 1, 1, 23, 6, 0, 0, time.UTC)
- intervals := (&hourlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 1)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 23, 0, 0, 0, time.UTC))
- })
- Convey("Should return 2 intervals", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 1, 2, 0, 6, 0, 0, time.UTC)
- intervals := (&hourlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 2)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 23, 0, 0, 0, time.UTC))
- So(intervals[1], ShouldEqual, time.Date(2018, 1, 2, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 10 intervals", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 1, 2, 8, 6, 0, 0, time.UTC)
- intervals := (&hourlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 10)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 23, 0, 0, 0, time.UTC))
- So(intervals[4], ShouldEqual, time.Date(2018, 1, 2, 3, 0, 0, 0, time.UTC))
- So(intervals[9], ShouldEqual, time.Date(2018, 1, 2, 8, 0, 0, 0, time.UTC))
- })
- })
- Convey("Daily interval", t, func() {
- Convey("Should return 1 day", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 1, 1, 23, 6, 0, 0, time.UTC)
- intervals := (&dailyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 1)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 2 days", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 1, 2, 0, 6, 0, 0, time.UTC)
- intervals := (&dailyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 2)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- So(intervals[1], ShouldEqual, time.Date(2018, 1, 2, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 32 days", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 2, 1, 8, 6, 0, 0, time.UTC)
- intervals := (&dailyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 32)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- So(intervals[30], ShouldEqual, time.Date(2018, 1, 31, 0, 0, 0, 0, time.UTC))
- So(intervals[31], ShouldEqual, time.Date(2018, 2, 1, 0, 0, 0, 0, time.UTC))
- })
- })
- Convey("Weekly interval", t, func() {
- Convey("Should return 1 week (1)", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 1, 1, 23, 6, 0, 0, time.UTC)
- intervals := (&weeklyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 1)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 1 week (2)", func() {
- from := time.Date(2017, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2017, 1, 1, 23, 6, 0, 0, time.UTC)
- intervals := (&weeklyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 1)
- So(intervals[0], ShouldEqual, time.Date(2016, 12, 26, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 2 weeks (1)", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 1, 10, 23, 6, 0, 0, time.UTC)
- intervals := (&weeklyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 2)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- So(intervals[1], ShouldEqual, time.Date(2018, 1, 8, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 2 weeks (2)", func() {
- from := time.Date(2017, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2017, 1, 8, 23, 6, 0, 0, time.UTC)
- intervals := (&weeklyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 2)
- So(intervals[0], ShouldEqual, time.Date(2016, 12, 26, 0, 0, 0, 0, time.UTC))
- So(intervals[1], ShouldEqual, time.Date(2017, 1, 2, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 3 weeks (1)", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 1, 21, 23, 6, 0, 0, time.UTC)
- intervals := (&weeklyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 3)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- So(intervals[1], ShouldEqual, time.Date(2018, 1, 8, 0, 0, 0, 0, time.UTC))
- So(intervals[2], ShouldEqual, time.Date(2018, 1, 15, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 3 weeks (2)", func() {
- from := time.Date(2017, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2017, 1, 9, 23, 6, 0, 0, time.UTC)
- intervals := (&weeklyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 3)
- So(intervals[0], ShouldEqual, time.Date(2016, 12, 26, 0, 0, 0, 0, time.UTC))
- So(intervals[1], ShouldEqual, time.Date(2017, 1, 2, 0, 0, 0, 0, time.UTC))
- So(intervals[2], ShouldEqual, time.Date(2017, 1, 9, 0, 0, 0, 0, time.UTC))
- })
- })
- Convey("Monthly interval", t, func() {
- Convey("Should return 1 month", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 1, 1, 23, 6, 0, 0, time.UTC)
- intervals := (&monthlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 1)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 2 months", func() {
- from := time.Date(2018, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 2, 2, 0, 6, 0, 0, time.UTC)
- intervals := (&monthlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 2)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- So(intervals[1], ShouldEqual, time.Date(2018, 2, 1, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 14 months", func() {
- from := time.Date(2017, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 2, 1, 8, 6, 0, 0, time.UTC)
- intervals := (&monthlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 14)
- So(intervals[0], ShouldEqual, time.Date(2017, 1, 1, 0, 0, 0, 0, time.UTC))
- So(intervals[13], ShouldEqual, time.Date(2018, 2, 1, 0, 0, 0, 0, time.UTC))
- })
- })
- Convey("Yearly interval", t, func() {
- Convey("Should return 1 year (hour diff)", func() {
- from := time.Date(2018, 2, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 2, 1, 23, 6, 0, 0, time.UTC)
- intervals := (&yearlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 1)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 1 year (month diff)", func() {
- from := time.Date(2018, 2, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 12, 31, 23, 59, 59, 0, time.UTC)
- intervals := (&yearlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 1)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 2 years", func() {
- from := time.Date(2018, 2, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2019, 1, 1, 23, 59, 59, 0, time.UTC)
- intervals := (&yearlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 2)
- So(intervals[0], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- So(intervals[1], ShouldEqual, time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC))
- })
- Convey("Should return 5 years", func() {
- from := time.Date(2014, 1, 1, 23, 1, 1, 0, time.UTC)
- to := time.Date(2018, 11, 1, 23, 59, 59, 0, time.UTC)
- intervals := (&yearlyInterval{}).Generate(from, to)
- So(intervals, ShouldHaveLength, 5)
- So(intervals[0], ShouldEqual, time.Date(2014, 1, 1, 0, 0, 0, 0, time.UTC))
- So(intervals[4], ShouldEqual, time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC))
- })
- })
- }
- func indexPatternScenario(interval string, pattern string, timeRange *tsdb.TimeRange, fn func(indices []string)) {
- Convey(fmt.Sprintf("Index pattern (interval=%s, index=%s", interval, pattern), func() {
- ip, err := newIndexPattern(interval, pattern)
- So(err, ShouldBeNil)
- So(ip, ShouldNotBeNil)
- indices, err := ip.GetIndices(timeRange)
- So(err, ShouldBeNil)
- fn(indices)
- })
- }
|