1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
//go:build linux && cgo && !agent
package state
import (
"context"
"testing"
clusterConfig "github.com/lxc/incus/v6/internal/server/cluster/config"
"github.com/lxc/incus/v6/internal/server/db"
"github.com/lxc/incus/v6/internal/server/firewall"
"github.com/lxc/incus/v6/internal/server/sys"
)
// NewTestState returns a State object initialized with testable instances of
// the node/cluster databases and of the OS facade.
//
// Return the newly created State object, along with a function that can be
// used for cleaning it up.
func NewTestState(t *testing.T) (*State, func()) {
node, nodeCleanup := db.NewTestNode(t)
cluster, clusterCleanup := db.NewTestCluster(t)
os, osCleanup := sys.NewTestOS(t)
cleanup := func() {
nodeCleanup()
clusterCleanup()
osCleanup()
}
state := &State{
ShutdownCtx: context.TODO(),
DB: &db.DB{Node: node, Cluster: cluster},
OS: os,
Firewall: firewall.New(),
UpdateCertificateCache: func() {},
GlobalConfig: &clusterConfig.Config{},
}
return state, cleanup
}
|