influxdb/kv/source_test.go

48 lines
1.5 KiB
Go

package kv_test
import (
"context"
"testing"
"github.com/influxdata/influxdb/v2"
"github.com/influxdata/influxdb/v2/kv"
"github.com/influxdata/influxdb/v2/mock"
influxdbtesting "github.com/influxdata/influxdb/v2/testing"
"go.uber.org/zap/zaptest"
)
func TestBoltSourceService(t *testing.T) {
t.Run("CreateSource", func(t *testing.T) { influxdbtesting.CreateSource(initBoltSourceService, t) })
t.Run("FindSourceByID", func(t *testing.T) { influxdbtesting.FindSourceByID(initBoltSourceService, t) })
t.Run("FindSources", func(t *testing.T) { influxdbtesting.FindSources(initBoltSourceService, t) })
t.Run("DeleteSource", func(t *testing.T) { influxdbtesting.DeleteSource(initBoltSourceService, t) })
}
func initBoltSourceService(f influxdbtesting.SourceFields, t *testing.T) (influxdb.SourceService, string, func()) {
s, closeBolt := influxdbtesting.NewTestBoltStore(t)
svc, op, closeSvc := initSourceService(s, f, t)
return svc, op, func() {
closeSvc()
closeBolt()
}
}
func initSourceService(s kv.SchemaStore, f influxdbtesting.SourceFields, t *testing.T) (influxdb.SourceService, string, func()) {
ctx := context.Background()
svc := kv.NewService(zaptest.NewLogger(t), s, &mock.OrganizationService{})
svc.IDGenerator = f.IDGenerator
for _, b := range f.Sources {
if err := svc.PutSource(ctx, b); err != nil {
t.Fatalf("failed to populate sources")
}
}
return svc, kv.OpPrefix, func() {
for _, b := range f.Sources {
if err := svc.DeleteSource(ctx, b.ID); err != nil {
t.Logf("failed to remove source: %v", err)
}
}
}
}