97 lines
2.6 KiB
Go
97 lines
2.6 KiB
Go
package tenant_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/influxdata/influxdb/v2"
|
|
"github.com/influxdata/influxdb/v2/kit/platform"
|
|
"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"
|
|
)
|
|
|
|
func TestBoltUserResourceMappingService(t *testing.T) {
|
|
influxdbtesting.UserResourceMappingService(initBoltUserResourceMappingService, t)
|
|
}
|
|
|
|
func initBoltUserResourceMappingService(f influxdbtesting.UserResourceFields, t *testing.T) (influxdb.UserResourceMappingService, func()) {
|
|
s, closeBolt := influxdbtesting.NewTestBoltStore(t)
|
|
svc, closeSvc := initUserResourceMappingService(s, f, t)
|
|
return svc, func() {
|
|
closeSvc()
|
|
closeBolt()
|
|
}
|
|
}
|
|
|
|
func initUserResourceMappingService(s kv.Store, f influxdbtesting.UserResourceFields, t *testing.T) (influxdb.UserResourceMappingService, func()) {
|
|
var (
|
|
storage = tenant.NewStore(s)
|
|
svc = tenant.NewService(storage)
|
|
)
|
|
|
|
// Create resources before mappings.
|
|
|
|
for _, u := range f.Users {
|
|
if err := svc.CreateUser(context.Background(), u); err != nil {
|
|
t.Fatalf("error populating users: %v", err)
|
|
}
|
|
}
|
|
|
|
withID := func(gen *platform.IDGenerator, id platform.ID, fn func()) {
|
|
idGen := *gen
|
|
defer func() { *gen = idGen }()
|
|
|
|
if id.Valid() {
|
|
*gen = mock.NewStaticIDGenerator(id)
|
|
}
|
|
|
|
fn()
|
|
}
|
|
|
|
for _, o := range f.Organizations {
|
|
withID(&storage.OrgIDGen, o.ID, func() {
|
|
if err := svc.CreateOrganization(context.Background(), o); err != nil {
|
|
t.Fatalf("failed to populate organizations: %s", err)
|
|
}
|
|
})
|
|
}
|
|
|
|
for _, b := range f.Buckets {
|
|
withID(&storage.BucketIDGen, b.ID, func() {
|
|
if err := svc.CreateBucket(context.Background(), b); err != nil {
|
|
t.Fatalf("failed to populate buckets: %s", err)
|
|
}
|
|
})
|
|
}
|
|
|
|
// Now create mappings.
|
|
|
|
for _, m := range f.UserResourceMappings {
|
|
if err := svc.CreateUserResourceMapping(context.Background(), m); err != nil {
|
|
t.Fatalf("failed to populate mappings: %v", err)
|
|
}
|
|
}
|
|
|
|
return svc, func() {
|
|
for _, u := range f.Users {
|
|
if err := svc.DeleteUser(context.Background(), u.ID); err != nil {
|
|
t.Logf("error removing users: %v", err)
|
|
}
|
|
}
|
|
|
|
for _, m := range f.UserResourceMappings {
|
|
if err := svc.DeleteUserResourceMapping(context.Background(), m.ResourceID, m.UserID); err != nil {
|
|
t.Logf("failed to remove user resource mapping: %v", err)
|
|
}
|
|
}
|
|
|
|
for _, o := range f.Organizations {
|
|
if err := svc.DeleteOrganization(context.Background(), o.ID); err != nil {
|
|
t.Logf("failed to remove organization: %v", err)
|
|
}
|
|
}
|
|
}
|
|
}
|