Files
ziti/controller/persistence/testing.go
T
2023-10-23 13:45:49 -04:00

277 lines
6.9 KiB
Go

/*
Copyright NetFoundry Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package persistence
import (
"github.com/michaelquigley/pfxlog"
"github.com/openziti/foundation/v2/versions"
"github.com/openziti/identity"
"github.com/openziti/metrics"
"github.com/openziti/storage/boltz"
"github.com/openziti/storage/boltztest"
"github.com/openziti/ziti/common/eid"
"github.com/openziti/ziti/controller/change"
"github.com/openziti/ziti/controller/command"
"github.com/openziti/ziti/controller/db"
"github.com/openziti/ziti/controller/event"
"github.com/openziti/ziti/controller/network"
"github.com/openziti/ziti/controller/xt"
"github.com/openziti/ziti/controller/xt_smartrouting"
"github.com/pkg/errors"
"go.etcd.io/bbolt"
"testing"
)
func newTestConfig(ctx *TestContext) *testConfig {
options := network.DefaultOptions()
options.MinRouterCost = 0
return &testConfig{
ctx: ctx,
options: options,
metricsRegistry: metrics.NewRegistry("test", nil),
versionProvider: versions.NewDefaultVersionProvider(),
}
}
type testConfig struct {
ctx *TestContext
options *network.Options
metricsRegistry metrics.Registry
versionProvider versions.VersionProvider
}
func (self *testConfig) GetEventDispatcher() event.Dispatcher {
return event.DispatcherMock{}
}
func (self *testConfig) GetId() *identity.TokenId {
return &identity.TokenId{Token: "test"}
}
func (self *testConfig) GetMetricsRegistry() metrics.Registry {
return self.metricsRegistry
}
func (self *testConfig) GetOptions() *network.Options {
return self.options
}
func (self *testConfig) GetCommandDispatcher() command.Dispatcher {
return &command.LocalDispatcher{
Limiter: command.NoOpRateLimiter{},
}
}
func (self *testConfig) GetDb() boltz.Db {
return self.ctx.GetDb()
}
func (self *testConfig) GetVersionProvider() versions.VersionProvider {
return self.versionProvider
}
func (self *testConfig) GetCloseNotify() <-chan struct{} {
return self.ctx.closeNotify
}
type testDbProvider struct {
ctx *TestContext
}
func (p *testDbProvider) GetDb() boltz.Db {
return p.ctx.GetDb()
}
func (p *testDbProvider) GetStores() *db.Stores {
return p.ctx.n.GetStores()
}
func (p *testDbProvider) GetServiceCache() network.Cache {
return p
}
func (p *testDbProvider) NotifyRouterRenamed(_, _ string) {}
func (p *testDbProvider) RemoveFromCache(_ string) {
}
func (p *testDbProvider) GetManagers() *network.Managers {
return p.ctx.n.Managers
}
type TestContext struct {
boltztest.BaseTestContext
n *network.Network
stores *Stores
closeNotify chan struct{}
}
func NewTestContext(t *testing.T) *TestContext {
xt.GlobalRegistry().RegisterFactory(xt_smartrouting.NewFactory())
result := &TestContext{
closeNotify: make(chan struct{}, 1),
}
result.BaseTestContext = *boltztest.NewTestContext(t, result.GetStoreForEntity)
return result
}
func (ctx *TestContext) newViewTestCtx(tx *bbolt.Tx) boltz.MutateContext {
return boltz.NewTxMutateContext(change.New().SetChangeAuthorType("test").GetContext(), tx)
}
func (ctx *TestContext) GetNetwork() *network.Network {
return ctx.n
}
func (ctx *TestContext) Cleanup() {
close(ctx.closeNotify)
ctx.BaseTestContext.Cleanup()
}
func (ctx *TestContext) GetStores() *Stores {
return ctx.stores
}
func (ctx *TestContext) GetDb() boltz.Db {
return ctx.BaseTestContext.GetDb()
}
func (ctx *TestContext) GetStoreForEntity(entity boltz.Entity) boltz.Store {
if _, ok := entity.(*db.Service); ok {
return ctx.n.GetStores().Service
}
return ctx.stores.GetStoreForEntity(entity)
}
func (ctx *TestContext) GetDbProvider() DbProvider {
return &testDbProvider{ctx: ctx}
}
func (ctx *TestContext) Init() {
ctx.BaseTestContext.InitDb(db.Open)
dbProvider := ctx.GetDbProvider()
config := newTestConfig(ctx)
var err error
ctx.n, err = network.NewNetwork(config)
ctx.NoError(err)
// TODO: setup up single node raft cluster or mock?
ctx.stores, err = NewBoltStores(dbProvider)
ctx.NoError(err)
ctx.NoError(RunMigrations(ctx.GetDb(), ctx.stores))
ctx.NoError(ctx.stores.EventualEventer.Start(ctx.closeNotify))
}
func (ctx *TestContext) requireNewServicePolicy(policyType PolicyType, identityRoles []string, serviceRoles []string) *ServicePolicy {
entity := &ServicePolicy{
BaseExtEntity: boltz.BaseExtEntity{Id: eid.New()},
Name: eid.New(),
PolicyType: policyType,
Semantic: SemanticAnyOf,
IdentityRoles: identityRoles,
ServiceRoles: serviceRoles,
}
boltztest.RequireCreate(ctx, entity)
return entity
}
func (ctx *TestContext) RequireNewIdentity(name string, isAdmin bool) *Identity {
identityEntity := &Identity{
BaseExtEntity: *boltz.NewExtEntity(eid.New(), nil),
Name: name,
IsAdmin: isAdmin,
}
boltztest.RequireCreate(ctx, identityEntity)
return identityEntity
}
func (ctx *TestContext) RequireNewService(name string) *EdgeService {
edgeService := &EdgeService{
Service: db.Service{
BaseExtEntity: boltz.BaseExtEntity{Id: eid.New()},
Name: name,
},
}
boltztest.RequireCreate(ctx, edgeService)
return edgeService
}
func (ctx *TestContext) getRelatedIds(entity boltz.Entity, field string) []string {
var result []string
err := ctx.GetDb().View(func(tx *bbolt.Tx) error {
store := ctx.stores.GetStoreForEntity(entity)
if store == nil {
return errors.Errorf("no store for entity of type '%v'", entity.GetEntityType())
}
result = store.GetRelatedEntitiesIdList(tx, entity.GetId(), field)
return nil
})
ctx.NoError(err)
return result
}
func (ctx *TestContext) CleanupAll() {
stores := []boltz.Store{
ctx.stores.Session,
ctx.stores.ApiSession,
ctx.stores.Service,
ctx.stores.EdgeService,
ctx.stores.Identity,
ctx.stores.EdgeRouter,
ctx.stores.Config,
ctx.stores.Identity,
ctx.stores.EdgeRouterPolicy,
ctx.stores.ServicePolicy,
ctx.stores.ServiceEdgeRouterPolicy,
}
_ = ctx.GetDb().Update(change.New().NewMutateContext(), func(mutateCtx boltz.MutateContext) error {
for _, store := range stores {
if err := store.DeleteWhere(mutateCtx, `true limit none`); err != nil {
pfxlog.Logger().WithError(err).Errorf("failure while cleaning up %v", store.GetEntityType())
return err
}
}
return nil
})
}
func (ctx *TestContext) getIdentityTypeId() string {
var result string
err := ctx.GetDb().View(func(tx *bbolt.Tx) error {
ids, _, err := ctx.stores.IdentityType.QueryIds(tx, "true")
if err != nil {
return err
}
result = ids[0]
return nil
})
ctx.NoError(err)
return result
}
func ss(vals ...string) []string {
return vals
}