66 lines
1.8 KiB
Go
66 lines
1.8 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"
|
|
"github.com/influxdata/influxdb/v2/tenant"
|
|
influxdbtesting "github.com/influxdata/influxdb/v2/testing"
|
|
"go.uber.org/zap/zaptest"
|
|
)
|
|
|
|
func TestBoltScraperTargetStoreService(t *testing.T) {
|
|
influxdbtesting.ScraperService(initBoltTargetService, t)
|
|
}
|
|
|
|
func initBoltTargetService(f influxdbtesting.TargetFields, t *testing.T) (influxdb.ScraperTargetStoreService, string, func()) {
|
|
s, closeFn := influxdbtesting.NewTestBoltStore(t)
|
|
svc, op, closeSvc := initScraperTargetStoreService(s, f, t)
|
|
return svc, op, func() {
|
|
closeSvc()
|
|
closeFn()
|
|
}
|
|
}
|
|
|
|
func initScraperTargetStoreService(s kv.SchemaStore, f influxdbtesting.TargetFields, t *testing.T) (influxdb.ScraperTargetStoreService, string, func()) {
|
|
ctx := context.Background()
|
|
tenantStore := tenant.NewStore(s)
|
|
tenantSvc := tenant.NewService(tenantStore)
|
|
|
|
svc := kv.NewService(zaptest.NewLogger(t), s, tenantSvc)
|
|
|
|
if f.IDGenerator != nil {
|
|
svc.IDGenerator = f.IDGenerator
|
|
}
|
|
|
|
for _, target := range f.Targets {
|
|
if err := svc.PutTarget(ctx, target); err != nil {
|
|
t.Fatalf("failed to populate targets: %v", err)
|
|
}
|
|
}
|
|
|
|
for _, o := range f.Organizations {
|
|
mock.SetIDForFunc(&tenantStore.OrgIDGen, o.ID, func() {
|
|
if err := tenantSvc.CreateOrganization(ctx, o); err != nil {
|
|
t.Fatalf("failed to populate organization")
|
|
}
|
|
})
|
|
}
|
|
|
|
return svc, kv.OpPrefix, func() {
|
|
for _, target := range f.Targets {
|
|
if err := svc.RemoveTarget(ctx, target.ID); err != nil {
|
|
t.Logf("failed to remove targets: %v", err)
|
|
}
|
|
}
|
|
for _, o := range f.Organizations {
|
|
if err := tenantSvc.DeleteOrganization(ctx, o.ID); err != nil {
|
|
t.Logf("failed to remove orgs: %v", err)
|
|
}
|
|
}
|
|
}
|
|
}
|